| Index: Source/core/rendering/RenderBlock.h
|
| diff --git a/Source/core/rendering/RenderBlock.h b/Source/core/rendering/RenderBlock.h
|
| index d43cf52149ff127849cc010f4cd8a75e635c85fb..f0e4923bce351b2caec89cb4d9dbc9336467fd10 100644
|
| --- a/Source/core/rendering/RenderBlock.h
|
| +++ b/Source/core/rendering/RenderBlock.h
|
| @@ -329,6 +329,7 @@ protected:
|
|
|
| void setDesiredColumnCountAndWidth(int, LayoutUnit);
|
|
|
| + bool avoidsOrIgnoresFloats() { return isFloatingOrOutOfFlowPositioned() || avoidsFloats(); }
|
| public:
|
| virtual void computeOverflow(LayoutUnit oldClientAfterEdge, bool = false);
|
| protected:
|
| @@ -392,8 +393,6 @@ private:
|
|
|
| bool hasCaret() const;
|
|
|
| - virtual bool avoidsFloats() const OVERRIDE;
|
| -
|
| bool hitTestColumns(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction);
|
| bool hitTestContents(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction);
|
| // FIXME-BLOCKFLOW: Remove virtualizaion when all callers have moved to RenderBlockFlow
|
| @@ -474,8 +473,6 @@ protected:
|
| enum PageBoundaryRule { ExcludePageBoundary, IncludePageBoundary };
|
| LayoutUnit nextPageLogicalTop(LayoutUnit logicalOffset, PageBoundaryRule = ExcludePageBoundary) const;
|
|
|
| - bool createsBlockFormattingContext() const;
|
| -
|
| public:
|
| LayoutUnit pageLogicalTopForOffset(LayoutUnit offset) const;
|
| LayoutUnit pageLogicalHeightForOffset(LayoutUnit offset) const;
|
|
|