Bug 144529

Summary: display:none iframes cause repeated compositing flushing
Product: WebKit Reporter: Simon Fraser (smfr) <simon.fraser>
Component: New BugsAssignee: Simon Fraser (smfr) <simon.fraser>
Status: RESOLVED FIXED    
Severity: Normal CC: buildbot, rniwa, sam, simon.fraser, thorton, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
darin: review+, buildbot: commit-queue-
Archive of layout-test-results from ews103 for mac-mavericks none

Description Simon Fraser (smfr) 2015-05-02 13:40:35 PDT
display:none iframes cause repeated compositing flushing
Comment 1 Simon Fraser (smfr) 2015-05-02 13:47:58 PDT
Created attachment 252244 [details]
Patch
Comment 2 Radar WebKit Bug Importer 2015-05-02 13:49:41 PDT
<rdar://problem/20791708>
Comment 3 Build Bot 2015-05-02 14:28:01 PDT
Comment on attachment 252244 [details]
Patch

Attachment 252244 [details] did not pass mac-ews (mac):
Output: http://webkit-queues.appspot.com/results/6614108027748352

New failing tests:
compositing/iframes/display-none-subframe.html
Comment 4 Build Bot 2015-05-02 14:28:04 PDT
Created attachment 252247 [details]
Archive of layout-test-results from ews103 for mac-mavericks

The attached test failures were seen while running run-webkit-tests on the mac-ews.
Bot: ews103  Port: mac-mavericks  Platform: Mac OS X 10.9.5
Comment 5 Darin Adler 2015-05-04 15:49:01 PDT
Comment on attachment 252244 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=252244&action=review

New test is failing on Mac WebKit 1 build bot:
  compositing/iframes/display-none-subframe.html [ Failure ]

r=me but I am worried that the test fails

> Source/WebCore/page/FrameView.cpp:2599
> +    FrameViewList childViews = renderedChildFrameViews();
> +    for (auto& frameView : childViews) {

Will work just as well without a local variable:

    for (auto& frameView : renderedChildFrameViews()) {

> Source/WebCore/page/FrameView.cpp:4034
> +    FrameViewList childViews;

Might want to reserveInitialCapacity.

> Source/WebCore/page/FrameView.cpp:4037
> +            childViews.append(*frame->view());

If so, then could use uncheckedAppend.

> Source/WebCore/page/FrameView.cpp:4064
> +    FrameViewList childViews = renderedChildFrameViews();
> +    for (auto& frameView : childViews)

Will work just as well without a local variable:

    for (auto& frameView : renderedChildFrameViews())
Comment 6 Simon Fraser (smfr) 2015-05-04 16:07:06 PDT
> > Source/WebCore/page/FrameView.cpp:4034
> > +    FrameViewList childViews;
> 
> Might want to reserveInitialCapacity.

But it's a linear walk of child Frames to count them :(
Comment 7 Simon Fraser (smfr) 2015-05-04 16:32:50 PDT
https://trac.webkit.org/r183777