Changeset 210226 in webkit
- Timestamp:
- Jan 2, 2017, 1:16:09 PM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r210224 r210226 1 2017-01-02 Andreas Kling <akling@apple.com> 2 3 Drop the render tree for documents in the page cache. 4 <https://webkit.org/b/121798> 5 6 Reviewed by Antti Koivisto. 7 8 To save memory and reduce complexity, have documents tear down their render tree 9 when entering the page cache. I've wanted to do this for a long time and it seems 10 like we can actually do it now. 11 12 This patch will enable a number of clean-ups since it's no longer valid for renderers 13 to exist while the document is in page cache. 14 15 * dom/Document.cpp: 16 (WebCore::Document::destroyRenderTree): Remove assertion that we're not in the page cache 17 since we will now be tearing down render trees right as they enter the page cache. 18 19 * dom/PageCache.cpp: 20 (WebCore::destroyRenderTree): 21 (WebCore::PageCache::addIfCacheable): Tear down the render tree right before setting 22 the in-cache flag. The render tree is destroyed in bottom-up order to ensure that the 23 main frame renderers die last. 24 25 * history/CachedFrame.cpp: 26 (WebCore::CachedFrameBase::restore): 27 * page/FrameView.h: 28 * page/FrameView.cpp: 29 (WebCore::FrameView::didRestoreFromPageCache): Update the scollable area set after restoring 30 a frame from the page cache. This dirties the scrolling tree, which was covered by tests. 31 32 * page/animation/AnimationBase.cpp: 33 (WebCore::AnimationBase::setNeedsStyleRecalc): 34 * page/animation/AnimationController.cpp: 35 (WebCore::AnimationController::cancelAnimations): Make these no-ops if called 36 while the render tree is being torn down. This fixes some assertion failures 37 on layout tests and avoids pointless style invalidation. 38 1 39 2017-01-02 Andreas Kling <akling@apple.com> 2 40 -
trunk/Source/WebCore/dom/Document.cpp
r210216 r210226 2203 2203 { 2204 2204 ASSERT(hasLivingRenderTree()); 2205 ASSERT(m_pageCacheState != InPageCache);2206 2205 2207 2206 SetForScope<bool> change(m_renderTreeBeingDestroyed, true); -
trunk/Source/WebCore/history/CachedFrame.cpp
r210212 r210226 131 131 #endif 132 132 133 frame.view()->didRestoreFromPageCache(); 133 134 } 134 135 -
trunk/Source/WebCore/history/PageCache.cpp
r208841 r210226 365 365 } 366 366 367 // When entering page cache, tear down the render tree before setting the in-cache flag. 368 // This maintains the invariant that render trees are never present in the page cache. 369 // Note that destruction happens bottom-up so that the main frame's tree dies last. 370 static void destroyRenderTree(MainFrame& mainFrame) 371 { 372 for (Frame* frame = mainFrame.tree().traversePreviousWithWrap(true); frame; frame = frame->tree().traversePreviousWithWrap(false)) { 373 if (!frame->document()) 374 continue; 375 auto& document = *frame->document(); 376 if (document.hasLivingRenderTree()) 377 document.destroyRenderTree(); 378 } 379 } 380 367 381 static void firePageHideEventRecursively(Frame& frame) 368 382 { … … 408 422 } 409 423 424 destroyRenderTree(page->mainFrame()); 425 410 426 setPageCacheState(*page, Document::InPageCache); 411 427 -
trunk/Source/WebCore/page/FrameView.cpp
r210212 r210226 637 637 } 638 638 639 void FrameView::didRestoreFromPageCache() 640 { 641 // When restoring from page cache, the main frame stays in place while subframes get swapped in. 642 // We update the scrollable area set to ensure that scrolling data structures get invalidated. 643 updateScrollableAreaSet(); 644 } 645 639 646 void FrameView::setContentsSize(const IntSize& size) 640 647 { -
trunk/Source/WebCore/page/FrameView.h
r210212 r210226 588 588 bool shouldPlaceBlockDirectionScrollbarOnLeft() const final; 589 589 590 void didRestoreFromPageCache(); 591 590 592 protected: 591 593 bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) override; -
trunk/Source/WebCore/page/animation/AnimationBase.cpp
r210212 r210226 90 90 void AnimationBase::setNeedsStyleRecalc(Element* element) 91 91 { 92 ASSERT(!element || element->document().pageCacheState() == Document::NotInPageCache); 93 if (element) 94 element->invalidateStyleAndLayerComposition(); 92 if (!element || element->document().renderTreeBeingDestroyed()) 93 return; 94 95 ASSERT(element->document().pageCacheState() == Document::NotInPageCache); 96 element->invalidateStyleAndLayerComposition(); 95 97 } 96 98 -
trunk/Source/WebCore/page/animation/AnimationController.cpp
r209666 r210226 589 589 590 590 Element* element = renderer.element(); 591 ASSERT(!element || element->document().pageCacheState() == Document::NotInPageCache); 592 if (element) 593 element->invalidateStyleAndLayerComposition(); 591 if (!element || element->document().renderTreeBeingDestroyed()) 592 return; 593 ASSERT(element->document().pageCacheState() == Document::NotInPageCache); 594 element->invalidateStyleAndLayerComposition(); 594 595 } 595 596
Note:
See TracChangeset
for help on using the changeset viewer.