Changeset 99792 in webkit
- Timestamp:
- Nov 9, 2011, 5:33:32 PM (15 years ago)
- Location:
- branches/subpixellayout/Source/WebCore/rendering
- Files:
-
- 2 edited
-
RenderView.cpp (modified) (2 diffs)
-
RenderView.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/subpixellayout/Source/WebCore/rendering/RenderView.cpp
r99784 r99792 688 688 689 689 690 LayoutRect RenderView::unscaledDocumentRect() const691 { 692 LayoutRect overflowRect(layoutOverflowRect());690 IntRect RenderView::unscaledDocumentRect() const 691 { 692 IntRect overflowRect(layoutOverflowRect()); 693 693 flipForWritingMode(overflowRect); 694 694 return overflowRect; … … 711 711 IntRect RenderView::documentRect() const 712 712 { 713 LayoutRect overflowRect(unscaledDocumentRect());713 IntRect overflowRect(unscaledDocumentRect()); 714 714 if (hasTransform()) 715 715 overflowRect = layer()->currentTransform().mapRect(overflowRect); 716 return enclosingIntRect(overflowRect);716 return overflowRect; 717 717 } 718 718 -
branches/subpixellayout/Source/WebCore/rendering/RenderView.h
r99784 r99792 167 167 #endif 168 168 169 LayoutRect unscaledDocumentRect() const;169 IntRect unscaledDocumentRect() const; 170 170 LayoutRect backgroundRect(RenderBox* backgroundRenderer) const; 171 171
Note:
See TracChangeset
for help on using the changeset viewer.