Title: [107269] branches/subpixellayout/Source/WebCore/rendering/RenderListMarker.cpp
Revision
107269
Author
[email protected]
Date
2012-02-09 11:56:07 -0800 (Thu, 09 Feb 2012)

Log Message

Fixing an overflow rect calculated in RenderListMarker to use pixelSnapped instead of enclosingIntRect.

Modified Paths

Diff

Modified: branches/subpixellayout/Source/WebCore/rendering/RenderListMarker.cpp (107268 => 107269)


--- branches/subpixellayout/Source/WebCore/rendering/RenderListMarker.cpp	2012-02-09 19:44:31 UTC (rev 107268)
+++ branches/subpixellayout/Source/WebCore/rendering/RenderListMarker.cpp	2012-02-09 19:56:07 UTC (rev 107269)
@@ -1111,7 +1111,7 @@
         return;
 
     IntPoint boxOrigin(roundedIntPoint(paintOffset + location()));
-    IntRect overflowRect(enclosingIntRect(visualOverflowRect()));
+    IntRect overflowRect(pixelSnappedIntRect(visualOverflowRect()));
     overflowRect.moveBy(boxOrigin);
     overflowRect.inflate(maximalOutlineSize(paintInfo.phase));
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to