Changeset 19696 for trunk/WebCore/rendering/RenderBlock.h
- Timestamp:
- 02/18/07 08:15:07 (23 months ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderBlock.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderBlock.h
r19593 r19696 70 70 virtual void setOverflowWidth(int w) { m_overflowWidth = w; } 71 71 72 void addVisualOverflow(const IntRect&); 73 72 74 virtual bool isSelfCollapsingBlock() const; 73 75 virtual bool isTopMarginQuirk() const { return m_topMarginQuirk; } … … 102 104 virtual void repaintObjectsBeforeLayout(); 103 105 virtual void repaintOverhangingFloats(bool paintAllDescendants); 104 virtual void getAbsoluteRepaintRectIncludingFloats(IntRect& bounds, IntRect& fullBounds);105 106 106 107 virtual void setStyle(RenderStyle*); … … 179 180 inline int leftBottom(); 180 181 inline int rightBottom(); 181 virtualIntRect floatRect() const;182 IntRect floatRect() const; 182 183 183 184 virtual int lineWidth(int y) const; … … 449 450 int m_maxBottomNegMargin; 450 451 451 // How much content overflows out of our block vertically or horizontally (all we support 452 // for now is spillage out of the bottom and the right, which are the common cases). 453 // FIXME: Generalize to work with top and left as well. 452 // How much content overflows out of our block vertically or horizontally. 454 453 int m_overflowHeight; 455 454 int m_overflowWidth; 456 457 // Left and top overflow. Does not affect scrolling dimensions, but we do at least use it458 // when dirty rect checking and hit testing.459 455 int m_overflowLeft; 460 456 int m_overflowTop;