Changeset 43458 in webkit
- Timestamp:
- May 10, 2009, 9:26:10 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r43451 r43458 1 2009-05-10 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Dave Kilzer. 4 5 - new test and correct results for https://bugs.webkit.org/show_bug.cgi?id=25602 6 REGRESSION: fast/overflow/overflow-focus-ring.html seems double-drawn 7 on ToT 8 9 * fast/layers/self-painting-outline.html: Added. 10 * platform/mac/fast/overflow/overflow-focus-ring-expected.checksum: Updated. 11 * platform/mac/fast/overflow/overflow-focus-ring-expected.png: Updated. 12 * platform/mac/fast/layers/self-painting-outline-expected.checksum: Added. 13 * platform/mac/fast/layers/self-painting-outline-expected.png: Added. 14 * platform/mac/fast/layers/self-painting-outline-expected.txt: Added. 15 1 16 2009-05-09 Dan Bernstein <mitz@apple.com> 2 17 -
trunk/LayoutTests/platform/mac/fast/overflow/overflow-focus-ring-expected.checksum
r43355 r43458 1 3 c232b4f332556ee3dd41efdac1d84251 3e94a655f09a4899cbd3f4ecee6275d1 -
trunk/WebCore/ChangeLog
r43451 r43458 1 2009-05-10 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Dave Kilzer. 4 5 - fix https://bugs.webkit.org/show_bug.cgi?id=25602 6 REGRESSION: fast/overflow/overflow-focus-ring.html seems double-drawn 7 on ToT 8 9 Test: fast/layers/self-painting-outline.html 10 11 * rendering/RenderLayer.cpp: 12 (WebCore::RenderLayer::paintLayer): Paint the layer's own outline only 13 if it is a self-painting layer. 14 1 15 2009-05-09 Dan Bernstein <mitz@apple.com> 2 16 -
trunk/WebCore/rendering/RenderLayer.cpp
r43378 r43458 2085 2085 } 2086 2086 2087 if (!outlineRect.isEmpty() ) {2087 if (!outlineRect.isEmpty() && isSelfPaintingLayer()) { 2088 2088 // Paint our own outline 2089 2089 RenderObject::PaintInfo paintInfo(p, outlineRect, PaintPhaseSelfOutline, false, paintingRootForRenderer, 0);
Note:
See TracChangeset
for help on using the changeset viewer.