RESOLVED FIXED 161124
[iOS DRT] Make iOS DRT use the same window size as WebKitTestRunner for flexible viewport tests
https://bugs.webkit.org/show_bug.cgi?id=161124
Summary [iOS DRT] Make iOS DRT use the same window size as WebKitTestRunner for flexi...
Simon Fraser (smfr)
Reported 2016-08-23 18:55:24 PDT
[iOS DRT] Make iOS DRT use the same window size as WebKitTestRunner for flexible viewport tests
Attachments
Patch (7.02 KB, patch)
2016-08-23 18:57 PDT, Simon Fraser (smfr)
dbates: review+
Simon Fraser (smfr)
Comment 1 2016-08-23 18:57:53 PDT
Daniel Bates
Comment 2 2016-08-24 10:09:40 PDT
Comment on attachment 286821 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=286821&action=review > Tools/DumpRenderTree/mac/DumpRenderTree.mm:181 > -WebFrame *mainFrame = 0; > +WebFrame *mainFrame; Is this correct? Notice that this variable has external linkage. From what I recall, only variables with static storage duration are guaranteed to be zero initialized. > Tools/DumpRenderTree/mac/DumpRenderTree.mm:186 > -WebFrame *topLoadingFrame = nil; // !nil iff a load is in progress > +WebFrame *topLoadingFrame; // !nil iff a load is in progress Ditto. > Tools/DumpRenderTree/mac/DumpRenderTree.mm:189 > +CFMutableSetRef disallowedURLs; Ditto. > Tools/DumpRenderTree/mac/DumpRenderTree.mm:224 > +UIWebBrowserView *gWebBrowserView; > +UIWebScrollView *gWebScrollView; > +DumpRenderTreeWindow *gDrtWindow; Ditto.
Simon Fraser (smfr)
Comment 3 2016-08-24 13:55:33 PDT
Note You need to log in before you can comment on or make changes to this bug.