RESOLVED FIXED 57886
Defer repaints during style recalc
https://bugs.webkit.org/show_bug.cgi?id=57886
Summary Defer repaints during style recalc
Antti Koivisto
Reported 2011-04-05 14:52:24 PDT
We can reduce time spent invalidating system painting surface by deferring repaints in Document::recalcStyle(). We already do this for layouts.
Attachments
patch (1.90 KB, patch)
2011-04-05 14:59 PDT, Antti Koivisto
darin: review+
Antti Koivisto
Comment 1 2011-04-05 14:52:39 PDT
Antti Koivisto
Comment 2 2011-04-05 14:59:28 PDT
Darin Adler
Comment 3 2011-04-05 15:02:24 PDT
Comment on attachment 88312 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=88312&action=review > Source/WebCore/dom/Document.cpp:1566 > - if (view()) > - view()->resumeScheduledEvents(); > + if (frameView) { Is there any change that view() could become 0 during the process of style recalculation?
Darin Adler
Comment 4 2011-04-05 15:02:58 PDT
Comment on attachment 88312 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=88312&action=review >> Source/WebCore/dom/Document.cpp:1566 >> + if (frameView) { > > Is there any change that view() could become 0 during the process of style recalculation? chance, not change > Source/WebCore/dom/Document.cpp:1568 > + frameView->endDeferredRepaints(); Is there any chance that repaints were already deferred and we are ending the deferral too soon?
Antti Koivisto
Comment 5 2011-04-05 15:10:59 PDT
(In reply to comment #4) > > Is there any change that view() could become 0 during the process of style recalculation? That would probably indicate bug elsewhere Nevertheless, I switched to a protected pointer: RefPtr<FrameView> frameView = view(); > > Source/WebCore/dom/Document.cpp:1568 > > + frameView->endDeferredRepaints(); > > Is there any chance that repaints were already deferred and we are ending the deferral too soon? begin/endDeferredRepaints are counting.
Antti Koivisto
Comment 6 2011-04-05 15:30:00 PDT
Note You need to log in before you can comment on or make changes to this bug.