Title: [272233] trunk/Source/WebCore
Revision
272233
Author
[email protected]
Date
2021-02-02 13:50:09 -0800 (Tue, 02 Feb 2021)

Log Message

[LFC][IFC] Disable inline box content with border images
https://bugs.webkit.org/show_bug.cgi?id=221276

Reviewed by Antti Koivisto.

Not supported yet.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (272232 => 272233)


--- trunk/Source/WebCore/ChangeLog	2021-02-02 21:39:41 UTC (rev 272232)
+++ trunk/Source/WebCore/ChangeLog	2021-02-02 21:50:09 UTC (rev 272233)
@@ -1,3 +1,15 @@
+2021-02-02  Zalan Bujtas  <[email protected]>
+
+        [LFC][IFC] Disable inline box content with border images
+        https://bugs.webkit.org/show_bug.cgi?id=221276
+
+        Reviewed by Antti Koivisto.
+
+        Not supported yet.
+
+        * layout/integration/LayoutIntegrationCoverage.cpp:
+        (WebCore::LayoutIntegration::canUseForChild):
+
 2021-02-02  Chris Dumez  <[email protected]>
 
         Assertion failure when calling matchMedia('a'.repeat(2 ** 30)) in JS

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp (272232 => 272233)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-02-02 21:39:41 UTC (rev 272232)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-02-02 21:50:09 UTC (rev 272233)
@@ -657,6 +657,8 @@
             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons)
         if (style.hasBorder())
             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
+        if (style.borderImage().hasImage())
+            SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
         if (style.hasBackground())
             SET_REASON_AND_RETURN_IF_NEEDED(FlowHasNonSupportedChild, reasons, includeReasons);
         if (style.hasOutline())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to