Changeset 285925 in webkit
- Timestamp:
- Nov 17, 2021, 6:19:54 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
rendering/RenderBlockFlow.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r285923 r285925 1 2021-11-17 Alan Bujtas <zalan@apple.com> 2 3 [IFC][Integration] Clear the preferredLogicalWidths dirty bits after calling LineLayout::computeIntrinsicWidthConstraints 4 https://bugs.webkit.org/show_bug.cgi?id=233201 5 6 Reviewed by Antti Koivisto. 7 8 This is in preparation for enabling preferred width computation through IFC. 9 10 * rendering/RenderBlockFlow.cpp: 11 (WebCore::RenderBlockFlow::tryComputePreferredWidthsUsingModernPath): 12 1 13 2021-11-17 Rob Buis <rbuis@igalia.com> 2 14 -
trunk/Source/WebCore/rendering/RenderBlockFlow.cpp
r285615 r285925 4578 4578 4579 4579 std::tie(minLogicalWidth, maxLogicalWidth) = modernLineLayout()->computeIntrinsicWidthConstraints(); 4580 for (auto walker = InlineWalker(*this); !walker.atEnd(); walker.advance()) 4581 walker.current()->setPreferredLogicalWidthsDirty(false); 4582 return true; 4580 4583 return true; 4581 4584 #else
Note:
See TracChangeset
for help on using the changeset viewer.