Changeset 141278 in webkit
- Timestamp:
- Jan 30, 2013, 9:39:44 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r141277 r141278 1 2013-01-30 Simon Fraser <simon.fraser@apple.com> 2 3 Temporarily disable assertions related to clip rect computation in RenderLayer 4 https://bugs.webkit.org/show_bug.cgi?id=108265 5 6 Reviewed by Dean Jackson. 7 8 These assertions are killing the test bots, so disable them temporarily 9 until we figure out the underlying bug (tracked by https://bugs.webkit.org/show_bug.cgi?id=103432). 10 11 * rendering/RenderLayer.cpp: 12 (WebCore::RenderLayer::updateLayerPositionsAfterScroll): 13 1 14 2013-01-30 Elliott Sprehn <esprehn@chromium.org> 2 15 -
trunk/Source/WebCore/rendering/RenderLayer.cpp
r141121 r141278 763 763 } else { 764 764 // Check that our cached rects are correct. 765 ASSERT(m_repaintRect == renderer()->clippedOverflowRectForRepaint(renderer()->containerForRepaint())); 766 ASSERT(m_outlineBox == renderer()->outlineBoundsForRepaint(renderer()->containerForRepaint(), geometryMap)); 765 // FIXME: re-enable these assertions when the issue with table cells is resolved: https://bugs.webkit.org/show_bug.cgi?id=103432 766 // ASSERT(m_repaintRect == renderer()->clippedOverflowRectForRepaint(renderer()->containerForRepaint())); 767 // ASSERT(m_outlineBox == renderer()->outlineBoundsForRepaint(renderer()->containerForRepaint(), geometryMap)); 767 768 } 768 769
Note:
See TracChangeset
for help on using the changeset viewer.