Changeset 155582 in webkit
- Timestamp:
- Sep 11, 2013, 5:51:38 PM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r155534 r155582 1 2013-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 1 15 2013-09-11 Mario Sanchez Prada <mario.prada@samsung.com> 2 16 -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r155409 r155582 2139 2139 m_page->setIsInWindow(isInWindow); 2140 2140 2141 if (isInWindow) 2142 layoutIfNeeded(); 2143 2141 2144 if (wantsDidUpdateViewInWindowState) 2142 2145 m_sendDidUpdateInWindowStateTimer.startOneShot(0);
Note:
See TracChangeset
for help on using the changeset viewer.