Changeset 100316 in webkit
- Timestamp:
- Nov 15, 2011, 1:54:54 PM (15 years ago)
- Location:
- branches/subpixellayout/Source/WebCore/rendering/svg
- Files:
-
- 2 edited
-
SVGRenderSupport.cpp (modified) (1 diff)
-
SVGRenderTreeAsText.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/subpixellayout/Source/WebCore/rendering/svg/SVGRenderSupport.cpp
r100188 r100316 54 54 // Pass our local paint rect to computeRectForRepaint() which will 55 55 // map to parent coords and recurse up the parent chain. 56 LayoutRect repaintRect = enclosing LayoutRect(object->repaintRectInLocalCoordinates());56 LayoutRect repaintRect = enclosingIntRect(object->repaintRectInLocalCoordinates()); 57 57 object->computeRectForRepaint(repaintContainer, repaintRect); 58 58 return repaintRect; -
branches/subpixellayout/Source/WebCore/rendering/svg/SVGRenderTreeAsText.cpp
r100215 r100316 342 342 static TextStream& writePositionAndStyle(TextStream& ts, const RenderObject& object) 343 343 { 344 ts << " " << const_cast<RenderObject&>(object).absoluteClippedOverflowRect();344 ts << " " << enclosingIntRect(const_cast<RenderObject&>(object).absoluteClippedOverflowRect()); 345 345 writeStyle(ts, object); 346 346 return ts;
Note:
See TracChangeset
for help on using the changeset viewer.