Changeset 188823 in webkit


Ignore:
Timestamp:
Aug 22, 2015 10:42:46 AM (9 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, fix build without ENABLE_CSS_GRID_LAYOUT after r188582

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::computeLogicalWidthInRegion):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r188821 r188823  
     12015-08-22  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, fix build without ENABLE_CSS_GRID_LAYOUT after r188582
     4
     5        * rendering/RenderBox.cpp:
     6        (WebCore::RenderBox::computeLogicalWidthInRegion):
     7
    182015-08-22  Zalan Bujtas  <zalan@apple.com>
    29
  • trunk/Source/WebCore/rendering/RenderBox.cpp

    r188582 r188823  
    23392339    // FIXME: Account for block-flow in flexible boxes.
    23402340    // https://bugs.webkit.org/show_bug.cgi?id=46418
    2341     if (hasOverrideLogicalContentWidth() && (isRubyRun() || style().borderFit() == BorderFitLines || (parent()->isFlexibleBoxIncludingDeprecated() || parent()->isRenderGrid()))) {
     2341    if (hasOverrideLogicalContentWidth() && (isRubyRun() || style().borderFit() == BorderFitLines || (parent()->isFlexibleBoxIncludingDeprecated()
     2342#if ENABLE(CSS_GRID_LAYOUT)
     2343        || parent()->isRenderGrid()
     2344#endif
     2345    ))) {
    23422346        computedValues.m_extent = overrideLogicalContentWidth() + borderAndPaddingLogicalWidth();
    23432347        return;
Note: See TracChangeset for help on using the changeset viewer.