Title: [277323] trunk/Source/WebCore
Revision
277323
Author
za...@apple.com
Date
2021-05-11 06:53:32 -0700 (Tue, 11 May 2021)

Log Message

[LFC][Integration] Disable IFC when inline level box has box shadow
https://bugs.webkit.org/show_bug.cgi?id=225634

Reviewed by Darin Adler.

Needs painting support.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (277322 => 277323)


--- trunk/Source/WebCore/ChangeLog	2021-05-11 13:42:18 UTC (rev 277322)
+++ trunk/Source/WebCore/ChangeLog	2021-05-11 13:53:32 UTC (rev 277323)
@@ -1,3 +1,15 @@
+2021-05-11  Zalan Bujtas  <za...@apple.com>
+
+        [LFC][Integration] Disable IFC when inline level box has box shadow
+        https://bugs.webkit.org/show_bug.cgi?id=225634
+
+        Reviewed by Darin Adler.
+
+        Needs painting support.
+
+        * layout/integration/LayoutIntegrationCoverage.cpp:
+        (WebCore::LayoutIntegration::canUseForChild):
+
 2021-05-11  Jean-Yves Avenard  <j...@apple.com>
 
         Adopt CoreMedia SPI to identify audio-only playback for MSE clients

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp (277322 => 277323)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-05-11 13:42:18 UTC (rev 277322)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp	2021-05-11 13:53:32 UTC (rev 277323)
@@ -635,6 +635,8 @@
             return false;
         if (style.minHeight().isPercent() || style.maxHeight().isPercent())
             return false;
+        if (style.boxShadow())
+            return false;
         return true;
     };
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to