Changeset 268818 in webkit
- Timestamp:
- Oct 21, 2020, 12:34:04 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
layout/integration/LayoutIntegrationLineLayout.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r268817 r268818 1 2020-10-21 Antti Koivisto <antti@apple.com> 2 3 [LFC][Integration] Update style of contained layout boxes 4 https://bugs.webkit.org/show_bug.cgi?id=218017 5 <rdar://problem/70531938> 6 7 Reviewed by Zalan Bujtas. 8 9 Followup fix. 10 11 * layout/integration/LayoutIntegrationLineLayout.cpp: 12 (WebCore::LayoutIntegration::LineLayout::containing): 13 1 14 2020-10-21 Zalan Bujtas <zalan@apple.com> 2 15 -
trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp
r268798 r268818 68 68 LineLayout* LineLayout::containing(RenderObject& renderer) 69 69 { 70 if (!is<RenderText>(renderer) && !is<RenderLineBreak>(renderer) && !is<RenderImage>(renderer)) 71 return nullptr; 72 70 73 if (auto* parent = renderer.parent()) { 71 74 if (is<RenderBlockFlow>(*parent))
Note:
See TracChangeset
for help on using the changeset viewer.