Title: [271582] trunk/Source/WebCore
Revision
271582
Author
[email protected]
Date
2021-01-18 11:41:11 -0800 (Mon, 18 Jan 2021)

Log Message

[LFC][Integration] Disable inline boxes with outline
https://bugs.webkit.org/show_bug.cgi?id=220698

Reviewed by Antti Koivisto.

* layout/integration/LayoutIntegrationCoverage.cpp:
(WebCore::LayoutIntegration::canUseForChild):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (271581 => 271582)


--- trunk/Source/WebCore/ChangeLog	2021-01-18 19:40:34 UTC (rev 271581)
+++ trunk/Source/WebCore/ChangeLog	2021-01-18 19:41:11 UTC (rev 271582)
@@ -1,5 +1,15 @@
 2021-01-18  Zalan Bujtas  <[email protected]>
 
+        [LFC][Integration] Disable inline boxes with outline
+        https://bugs.webkit.org/show_bug.cgi?id=220698
+
+        Reviewed by Antti Koivisto.
+
+        * layout/integration/LayoutIntegrationCoverage.cpp:
+        (WebCore::LayoutIntegration::canUseForChild):
+
+2021-01-18  Zalan Bujtas  <[email protected]>
+
         [LFC][Integration] Disable inflow positioned inline boxes
         https://bugs.webkit.org/show_bug.cgi?id=220696
 

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp (271581 => 271582)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-01-18 19:40:34 UTC (rev 271581)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-01-18 19:41:11 UTC (rev 271582)
@@ -656,6 +656,8 @@
             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
         if (style.hasBackground())
             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
+        if (style.hasOutline())
+            SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
         if (renderInline.marginLeft() < 0 || renderInline.marginRight() < 0 || renderInline.marginTop() < 0 || renderInline.marginBottom() < 0)
             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
         if (renderInline.paddingLeft() < 0 || renderInline.paddingRight() < 0 || renderInline.paddingTop() < 0 || renderInline.paddingBottom() < 0)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to