Index: Source/core/rendering/RenderBlock.h |
diff --git a/Source/core/rendering/RenderBlock.h b/Source/core/rendering/RenderBlock.h |
index f0e4923bce351b2caec89cb4d9dbc9336467fd10..d43cf52149ff127849cc010f4cd8a75e635c85fb 100644 |
--- a/Source/core/rendering/RenderBlock.h |
+++ b/Source/core/rendering/RenderBlock.h |
@@ -329,7 +329,6 @@ |
void setDesiredColumnCountAndWidth(int, LayoutUnit); |
- bool avoidsOrIgnoresFloats() { return isFloatingOrOutOfFlowPositioned() || avoidsFloats(); } |
public: |
virtual void computeOverflow(LayoutUnit oldClientAfterEdge, bool = false); |
protected: |
@@ -392,6 +391,8 @@ |
void paintCarets(PaintInfo&, const LayoutPoint&); |
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); |
@@ -473,6 +474,8 @@ |
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; |