Changeset 155582 in webkit


Ignore:
Timestamp:
Sep 11, 2013, 5:51:38 PM (12 years ago)
Author:
Simon Fraser
Message:

Make sure that layout is up-to-date when moving a WKView into a window, to avoid !needsLayout() assertions in RenderView::paint()
https://bugs.webkit.org/show_bug.cgi?id=121196

Reviewed by Tim Horton.

When a WKView was moved into a window, it was possible for us to paint
without ensuring that layout is up-to-date. Fix this by having
WebPage::setIsInWindow() update layout if we are moving to a window.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::setIsInWindow):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r155534 r155582  
     12013-09-11  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Make sure that layout is up-to-date when moving a WKView into a window, to avoid !needsLayout() assertions in RenderView::paint()
     4        https://bugs.webkit.org/show_bug.cgi?id=121196
     5
     6        Reviewed by Tim Horton.
     7       
     8        When a WKView was moved into a window, it was possible for us to paint
     9        without ensuring that layout is up-to-date. Fix this by having
     10        WebPage::setIsInWindow() update layout if we are moving to a window.
     11
     12        * WebProcess/WebPage/WebPage.cpp:
     13        (WebKit::WebPage::setIsInWindow):
     14
    1152013-09-11  Mario Sanchez Prada  <mario.prada@samsung.com>
    216
  • trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp

    r155409 r155582  
    21392139    m_page->setIsInWindow(isInWindow);
    21402140
     2141    if (isInWindow)
     2142        layoutIfNeeded();
     2143
    21412144    if (wantsDidUpdateViewInWindowState)
    21422145        m_sendDidUpdateInWindowStateTimer.startOneShot(0);
Note: See TracChangeset for help on using the changeset viewer.