Changeset 31446 in webkit
- Timestamp:
- Mar 30, 2008, 2:52:47 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r31445 r31446 1 2008-03-30 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Sam Weinig. 4 5 - repaint test for http://bugs.webkit.org/show_bug.cgi?id=18115 6 REGRESSION (r31250): Incomplete repaint of GoogleReader sidebar while reading unread posts 7 8 * fast/repaint/lines-with-layout-delta.html: Added. 9 * platform/mac/fast/repaint/lines-with-layout-delta-expected.checksum: Added. 10 * platform/mac/fast/repaint/lines-with-layout-delta-expected.png: Added. 11 * platform/mac/fast/repaint/lines-with-layout-delta-expected.txt: Added. 12 1 13 2008-03-30 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/WebCore/ChangeLog
r31445 r31446 1 2008-03-30 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Sam Weinig. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=18115 6 REGRESSION (r31250): Incomplete repaint of GoogleReader sidebar while reading unread posts 7 8 Test: fast/repaint/lines-with-layout-delta.html 9 10 * rendering/RenderObject.cpp: 11 (WebCore::RenderObject::repaintRectangle): Made this method take layout 12 delta into account. 13 1 14 2008-03-30 Dan Bernstein <mitz@apple.com> 2 15 -
trunk/WebCore/rendering/RenderObject.cpp
r31257 r31446 1791 1791 return; // Don't repaint if we're printing. 1792 1792 IntRect absRect(r); 1793 absRect.move(view->layoutDelta()); 1793 1794 computeAbsoluteRepaintRect(absRect); 1794 1795 view->repaintViewRectangle(absRect, immediate);
Note:
See TracChangeset
for help on using the changeset viewer.