RESOLVED FIXED 148093
Simplify how PlatformWebViews are created when view options change
https://bugs.webkit.org/show_bug.cgi?id=148093
Summary Simplify how PlatformWebViews are created when view options change
Anders Carlsson
Reported 2015-08-17 14:17:38 PDT
Simplify how PlatformWebViews are created when view options change
Attachments
Patch (12.12 KB, patch)
2015-08-17 14:31 PDT, Anders Carlsson
no flags
Patch (12.29 KB, patch)
2015-08-17 14:58 PDT, Anders Carlsson
sam: review+
Anders Carlsson
Comment 1 2015-08-17 14:31:04 PDT
Anders Carlsson
Comment 2 2015-08-17 14:58:21 PDT
Anders Carlsson
Comment 3 2015-08-17 15:49:46 PDT
Csaba Osztrogonác
Comment 4 2015-09-07 04:45:50 PDT
Comment on attachment 259193 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259193&action=review > Tools/WebKitTestRunner/TestController.cpp:755 > - if (test.urlContains("device-adapt/") || test.urlContains("device-adapt\\")) > - return true; > + if (test.urlContains("device-adapt/") || test.urlContains("device-adapt\\")) > + return true; bad indentation > Tools/WebKitTestRunner/efl/TestControllerEfl.cpp:144 > +static bool shouldUseFixedLayout(const TestInvocation& test) > +{ > +#if USE(COORDINATED_GRAPHICS) > + if (test.urlContains("sticky/") || test.urlContains("sticky\\")) > + return true; > +#endif > + return false; > +} > + It is obviously wrong, because it returns false for device-adapt tests.
Csaba Osztrogonác
Comment 5 2015-09-07 04:46:29 PDT
(In reply to comment #4) > Comment on attachment 259193 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=259193&action=review > > > Tools/WebKitTestRunner/TestController.cpp:755 > > - if (test.urlContains("device-adapt/") || test.urlContains("device-adapt\\")) > > - return true; > > + if (test.urlContains("device-adapt/") || test.urlContains("device-adapt\\")) > > + return true; > > bad indentation > > > Tools/WebKitTestRunner/efl/TestControllerEfl.cpp:144 > > +static bool shouldUseFixedLayout(const TestInvocation& test) > > +{ > > +#if USE(COORDINATED_GRAPHICS) > > + if (test.urlContains("sticky/") || test.urlContains("sticky\\")) > > + return true; > > +#endif > > + return false; > > +} > > + > > It is obviously wrong, because it returns false for device-adapt tests. Please check bug148927 which tries to fix the regression this patch caused.
Note You need to log in before you can comment on or make changes to this bug.