Changeset 183394 in webkit
- Timestamp:
- Apr 27, 2015, 4:10:49 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r183393 r183394 1 2015-04-27 Csaba Osztrogonác <ossy@webkit.org> 2 3 Fix the !ENABLE(CSS_GRID_LAYOUT) build after r183370 4 https://bugs.webkit.org/show_bug.cgi?id=144255 5 6 Reviewed by Carlos Garcia Campos. 7 8 * rendering/RenderBox.cpp: 9 (WebCore::RenderBox::computeLogicalHeight): 10 1 11 2015-04-27 Youenn Fablet <youenn.fablet@crf.canon.fr> 2 12 -
trunk/Source/WebCore/rendering/RenderBox.cpp
r183385 r183394 2713 2713 // FIXME: Account for block-flow in flexible boxes. 2714 2714 // https://bugs.webkit.org/show_bug.cgi?id=46418 2715 if (hasOverrideLogicalContentHeight() && (parent()->isFlexibleBoxIncludingDeprecated() || parent()->isRenderGrid())) 2715 if (hasOverrideLogicalContentHeight() && (parent()->isFlexibleBoxIncludingDeprecated() 2716 #if ENABLE(CSS_GRID_LAYOUT) 2717 || parent()->isRenderGrid() 2718 #endif 2719 )) 2716 2720 h = Length(overrideLogicalContentHeight(), Fixed); 2717 2721 else if (treatAsReplaced)
Note:
See TracChangeset
for help on using the changeset viewer.