| Index: Source/core/layout/LayoutBox.cpp
|
| diff --git a/Source/core/layout/LayoutBox.cpp b/Source/core/layout/LayoutBox.cpp
|
| index 6a23fcf4517e4c403925ffc44baee5af0140e89e..6adfcae771d8e96465603aaa864edbcdf2304528 100644
|
| --- a/Source/core/layout/LayoutBox.cpp
|
| +++ b/Source/core/layout/LayoutBox.cpp
|
| @@ -1933,7 +1933,7 @@ void LayoutBox::computeLogicalWidth(LogicalExtentComputedValues& computedValues)
|
| // width. Use the width from the style context.
|
| // FIXME: Account for writing-mode in flexible boxes.
|
| // https://bugs.webkit.org/show_bug.cgi?id=46418
|
| - if (hasOverrideLogicalContentWidth() && parent()->isFlexibleBoxIncludingDeprecated()) {
|
| + if (hasOverrideLogicalContentWidth() && (parent()->isFlexibleBoxIncludingDeprecated() || parent()->isLayoutGrid())) {
|
| computedValues.m_extent = overrideLogicalContentWidth() + borderAndPaddingLogicalWidth();
|
| return;
|
| }
|
|
|