Changeset 183394 in webkit


Ignore:
Timestamp:
Apr 27, 2015, 4:10:49 AM (10 years ago)
Author:
Csaba Osztrogonác
Message:

Fix the !ENABLE(CSS_GRID_LAYOUT) build after r183370
https://bugs.webkit.org/show_bug.cgi?id=144255

Reviewed by Carlos Garcia Campos.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::computeLogicalHeight):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r183393 r183394  
     12015-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
    1112015-04-27  Youenn Fablet  <youenn.fablet@crf.canon.fr>
    212
  • trunk/Source/WebCore/rendering/RenderBox.cpp

    r183385 r183394  
    27132713        // FIXME: Account for block-flow in flexible boxes.
    27142714        // 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        ))
    27162720            h = Length(overrideLogicalContentHeight(), Fixed);
    27172721        else if (treatAsReplaced)
Note: See TracChangeset for help on using the changeset viewer.