Changeset 243385 in webkit
- Timestamp:
- Mar 22, 2019, 10:02:13 AM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebKitTestRunner/ios/TestControllerIOS.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r243384 r243385 1 2019-03-22 Chris Dumez <cdumez@apple.com> 2 3 [ iOS Simulator] REGRESSION (r241821) Layout Test platform/ipad/fast/viewport/viewport-unchanged-by-minimum-effective-width-if-not-ignore-meta-viewport.html is a flaky failure on bots 4 https://bugs.webkit.org/show_bug.cgi?id=195348 5 <rdar://problem/48622090> 6 7 Reviewed by Alex Christensen. 8 9 Make sure webView.configuration.preferences._shouldIgnoreMetaViewport gets reset 10 to NO when test.options().shouldIgnoreMetaViewport is false. 11 12 * WebKitTestRunner/ios/TestControllerIOS.mm: 13 (WTR::TestController::platformConfigureViewForTest): 14 1 15 2019-03-22 Chris Dumez <cdumez@apple.com> 2 16 -
trunk/Tools/WebKitTestRunner/ios/TestControllerIOS.mm
r243021 r243385 179 179 TestRunnerWKWebView *webView = mainWebView()->platformView(); 180 180 181 if (test.options().shouldIgnoreMetaViewport) 182 webView.configuration.preferences._shouldIgnoreMetaViewport = YES; 181 webView.configuration.preferences._shouldIgnoreMetaViewport = test.options().shouldIgnoreMetaViewport; 183 182 184 183 CGRect screenBounds = [UIScreen mainScreen].bounds;
Note:
See TracChangeset
for help on using the changeset viewer.