Changeset 268850 in webkit
- Timestamp:
- Oct 21, 2020, 6:12:49 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
rendering/RenderBox.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r268849 r268850 1 2020-10-21 Carlos Alberto Lopez Perez <clopez@igalia.com> 2 3 REGRESSION(r268798): Fix build without ENABLE_LAYOUT_FORMATTING_CONTEXT 4 https://bugs.webkit.org/show_bug.cgi?id=218017 5 6 Unreviewed build-fix. 7 8 * rendering/RenderBox.cpp: 9 (WebCore::RenderBox::styleDidChange): Add missing ifdef guards. 10 1 11 2020-10-21 Sam Weinig <weinig@apple.com> 2 12 -
trunk/Source/WebCore/rendering/RenderBox.cpp
r268798 r268850 410 410 clearOverrideContentSize(); 411 411 412 #if ENABLE(LAYOUT_FORMATTING_CONTEXT) 412 413 if (diff == StyleDifference::Layout) { 413 414 if (auto* lineLayout = LayoutIntegration::LineLayout::containing(*this)) 414 415 lineLayout->updateStyle(*this); 415 416 } 417 #endif 416 418 } 417 419
Note:
See TracChangeset
for help on using the changeset viewer.