Title: [271210] trunk/Source/WebCore
Revision
271210
Author
[email protected]
Date
2021-01-06 12:10:42 -0800 (Wed, 06 Jan 2021)

Log Message

[LFC][IFC] "display: -webkit-inline-box" generates an inline level box
https://bugs.webkit.org/show_bug.cgi?id=220373.
<rdar://problem/72138270>

Reviewed by David Kilzer.

* layout/layouttree/LayoutBox.cpp:
(WebCore::Layout::Box::isInlineLevelBox const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (271209 => 271210)


--- trunk/Source/WebCore/ChangeLog	2021-01-06 20:08:10 UTC (rev 271209)
+++ trunk/Source/WebCore/ChangeLog	2021-01-06 20:10:42 UTC (rev 271210)
@@ -1,3 +1,14 @@
+2021-01-06  Zalan Bujtas  <[email protected]>
+
+        [LFC][IFC] "display: -webkit-inline-box" generates an inline level box
+        https://bugs.webkit.org/show_bug.cgi?id=220373.
+        <rdar://problem/72138270>
+
+        Reviewed by David Kilzer.
+
+        * layout/layouttree/LayoutBox.cpp:
+        (WebCore::Layout::Box::isInlineLevelBox const):
+
 2021-01-06  Antoine Quint  <[email protected]>
 
         Remove the unused RenderStyle::setHasPseudoStyle()

Modified: trunk/Source/WebCore/layout/layouttree/LayoutBox.cpp (271209 => 271210)


--- trunk/Source/WebCore/layout/layouttree/LayoutBox.cpp	2021-01-06 20:08:10 UTC (rev 271209)
+++ trunk/Source/WebCore/layout/layouttree/LayoutBox.cpp	2021-01-06 20:10:42 UTC (rev 271210)
@@ -309,6 +309,7 @@
     // Inline level elements generate inline level boxes.
     auto display = m_style.display();
     return display == DisplayType::Inline
+        || display == DisplayType::InlineBox
         || display == DisplayType::InlineFlex
         || display == DisplayType::WebKitInlineFlex
         || display == DisplayType::InlineGrid
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to