| Index: Source/core/layout/LayoutBox.h
|
| diff --git a/Source/core/layout/LayoutBox.h b/Source/core/layout/LayoutBox.h
|
| index 98e21d660ef16a29d779d162c7539cd5f550af09..6e83511d3d3fff7b20d96cecb002bf14e111c9d5 100644
|
| --- a/Source/core/layout/LayoutBox.h
|
| +++ b/Source/core/layout/LayoutBox.h
|
| @@ -537,8 +537,8 @@ public:
|
| LayoutUnit computePercentageLogicalHeight(const Length& height) const;
|
|
|
| // Block flows subclass availableWidth/Height to handle multi column layout (shrinking the width/height available to children when laying out.)
|
| - virtual LayoutUnit availableLogicalWidth() const { return contentLogicalWidth(); }
|
| - virtual LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const;
|
| + LayoutUnit availableLogicalWidth() const { return contentLogicalWidth(); }
|
| + LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const;
|
| LayoutUnit availableLogicalHeightUsing(const Length&, AvailableLogicalHeightType) const;
|
|
|
| // There are a few cases where we need to refer specifically to the available physical width and available physical height.
|
| @@ -633,7 +633,6 @@ public:
|
| return position;
|
| return isHorizontalWritingMode() ? LayoutPoint(position.x(), m_frameRect.height() - position.y()) : LayoutPoint(m_frameRect.width() - position.x(), position.y());
|
| }
|
| - LayoutPoint flipForWritingModeIncludingColumns(const LayoutPoint&) const;
|
| LayoutSize flipForWritingMode(const LayoutSize& offset) const WARN_UNUSED_RETURN
|
| {
|
| if (!UNLIKELY(hasFlippedBlocksWritingMode()))
|
|
|