WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Antti Koivisto
Comment 1
2011-04-05 14:52:39 PDT
<
rdar://problem/9192489
>
Antti Koivisto
Comment 2
2011-04-05 14:59:28 PDT
Created
attachment 88312
[details]
patch
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
http://trac.webkit.org/changeset/82992
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug