⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 271210 in webkit


Ignore:
Timestamp:
Jan 6, 2021, 12:10:42 PM (6 years ago)
Author:
Alan Bujtas
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r271200 r271210  
     12021-01-06  Zalan Bujtas  <zalan@apple.com>
     2
     3        [LFC][IFC] "display: -webkit-inline-box" generates an inline level box
     4        https://bugs.webkit.org/show_bug.cgi?id=220373.
     5        <rdar://problem/72138270>
     6
     7        Reviewed by David Kilzer.
     8
     9        * layout/layouttree/LayoutBox.cpp:
     10        (WebCore::Layout::Box::isInlineLevelBox const):
     11
    1122021-01-06  Antoine Quint  <graouts@webkit.org>
    213
  • trunk/Source/WebCore/layout/layouttree/LayoutBox.cpp

    r270428 r271210  
    310310    auto display = m_style.display();
    311311    return display == DisplayType::Inline
     312        || display == DisplayType::InlineBox
    312313        || display == DisplayType::InlineFlex
    313314        || display == DisplayType::WebKitInlineFlex
Note: See TracChangeset for help on using the changeset viewer.