Changeset 267622 in webkit
- Timestamp:
- Sep 26, 2020, 7:14:13 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/layoutformattingcontext/run-expansion-extends-line-content-width-expected.html (added)
-
LayoutTests/fast/layoutformattingcontext/run-expansion-extends-line-content-width.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/layout/inlineformatting/InlineLine.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r267617 r267622 1 2020-09-26 Zalan Bujtas <zalan@apple.com> 2 3 [LFC][IFC] Line content logical width expands with run expansions (text-align: justify) 4 https://bugs.webkit.org/show_bug.cgi?id=217011 5 6 Reviewed by Antti Koivisto. 7 8 * fast/layoutformattingcontext/run-expansion-extends-line-content-width-expected.html: Added. 9 * fast/layoutformattingcontext/run-expansion-extends-line-content-width.html: Added. 10 1 11 2020-09-25 Zalan Bujtas <zalan@apple.com> 2 12 -
trunk/Source/WebCore/ChangeLog
r267621 r267622 1 2020-09-26 Zalan Bujtas <zalan@apple.com> 2 3 [LFC][IFC] Line content logical width expands with run expansions (text-align: justify) 4 https://bugs.webkit.org/show_bug.cgi?id=217011 5 6 Reviewed by Antti Koivisto. 7 8 Test: fast/layoutformattingcontext/run-expansion-extends-line-content-width.html 9 10 * layout/inlineformatting/InlineLine.cpp: 11 (WebCore::Layout::Line::applyRunExpansion): 12 1 13 2020-09-26 Carlos Garcia Campos <cgarcia@igalia.com> 2 14 -
trunk/Source/WebCore/layout/inlineformatting/InlineLine.cpp
r267596 r267622 112 112 accumulatedExpansion += computedExpansion; 113 113 } 114 // Content grows as runs expand. 115 m_contentLogicalWidth += accumulatedExpansion; 116 ASSERT(m_contentLogicalWidth == m_horizontalConstraint); 114 117 } 115 118
Note:
See TracChangeset
for help on using the changeset viewer.