Changeset 141278 in webkit


Ignore:
Timestamp:
Jan 30, 2013, 9:39:44 AM (13 years ago)
Author:
Simon Fraser
Message:

Temporarily disable assertions related to clip rect computation in RenderLayer
https://bugs.webkit.org/show_bug.cgi?id=108265

Reviewed by Dean Jackson.

These assertions are killing the test bots, so disable them temporarily
until we figure out the underlying bug (tracked by https://bugs.webkit.org/show_bug.cgi?id=103432).

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::updateLayerPositionsAfterScroll):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r141277 r141278  
     12013-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
    1142013-01-30  Elliott Sprehn  <esprehn@chromium.org>
    215
  • trunk/Source/WebCore/rendering/RenderLayer.cpp

    r141121 r141278  
    763763    } else {
    764764        // 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));
    767768    }
    768769   
Note: See TracChangeset for help on using the changeset viewer.