Title: [254932] trunk/Source/WebKitLegacy/mac
Revision
254932
Author
[email protected]
Date
2020-01-22 11:45:23 -0800 (Wed, 22 Jan 2020)

Log Message

REGRESSION (r254923): [mac-wk1] http/tests/inspector/network/har/har-page.html crashing in WebCore::Display::Box::contentBox()
https://bugs.webkit.org/show_bug.cgi?id=206600

Unreviewed.

r254923 missed this one place to turn off LFC integration.

* WebView/WebPreferences.mm:
(+[WebPreferences initialize]):

Modified Paths

Diff

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (254931 => 254932)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2020-01-22 19:31:15 UTC (rev 254931)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2020-01-22 19:45:23 UTC (rev 254932)
@@ -1,3 +1,15 @@
+2020-01-22  Zalan Bujtas  <[email protected]>
+
+        REGRESSION (r254923): [mac-wk1] http/tests/inspector/network/har/har-page.html crashing in WebCore::Display::Box::contentBox()
+        https://bugs.webkit.org/show_bug.cgi?id=206600
+
+        Unreviewed.
+
+        r254923 missed this one place to turn off LFC integration.
+
+        * WebView/WebPreferences.mm:
+        (+[WebPreferences initialize]):
+
 2020-01-21  Said Abou-Hallawa  <[email protected]>
 
         Make RenderingMode and AlphaPremultiplication enum classes and move them to separate headers

Modified: trunk/Source/WebKitLegacy/mac/WebView/WebPreferences.mm (254931 => 254932)


--- trunk/Source/WebKitLegacy/mac/WebView/WebPreferences.mm	2020-01-22 19:31:15 UTC (rev 254931)
+++ trunk/Source/WebKitLegacy/mac/WebView/WebPreferences.mm	2020-01-22 19:45:23 UTC (rev 254932)
@@ -634,7 +634,7 @@
         @NO, WebKitHighlightAPIEnabledPreferenceKey,
         @YES, WebKitModernMediaControlsEnabledPreferenceKey,
         @YES, WebKitWebAnimationsCSSIntegrationEnabledPreferenceKey,
-        @YES, WebKitLayoutFormattingContextIntegrationEnabledPreferenceKey,
+        @NO, WebKitLayoutFormattingContextIntegrationEnabledPreferenceKey,
 
 #if ENABLE(WEBGL2)
         @NO, WebKitWebGL2EnabledPreferenceKey,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to