Changeset 83647 in webkit


Ignore:
Timestamp:
Apr 12, 2011 3:05:34 PM (13 years ago)
Author:
andersca@apple.com
Message:

2011-04-12 Anders Carlsson <andersca@apple.com>

Reviewed by Adam Roben.

Assertion in DrawingAreaImpl::resumePainting() (m_isPaintingSuspended) when clicking a link at twitter.com
https://bugs.webkit.org/show_bug.cgi?id=58377
<rdar://problem/8976531>

Remove the assertion.

  • WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::resumePainting):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r83645 r83647  
     12011-04-12  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        Assertion in DrawingAreaImpl::resumePainting() (m_isPaintingSuspended) when clicking a link at twitter.com
     6        https://bugs.webkit.org/show_bug.cgi?id=58377
     7        <rdar://problem/8976531>
     8
     9        Remove the assertion.
     10
     11        * WebProcess/WebPage/DrawingAreaImpl.cpp:
     12        (WebKit::DrawingAreaImpl::resumePainting):
     13
    1142011-04-11  Stephanie Lewis  <slewis@apple.com>
    215
  • trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp

    r82974 r83647  
    363363void DrawingAreaImpl::resumePainting()
    364364{
    365     ASSERT(m_isPaintingSuspended);
    366 
     365    if (!m_isPaintingSuspended) {
     366        // FIXME: We can get a call to resumePainting when painting is not suspended.
     367        // This happens when sending a synchronous message to create a new page. See <rdar://problem/8976531>.
     368        return;
     369    }
     370       
    367371    m_isPaintingSuspended = false;
    368372
Note: See TracChangeset for help on using the changeset viewer.