Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate iframes into the display list #7950

Merged
merged 1 commit into from Oct 20, 2015

Commits on Oct 20, 2015

  1. Integrate iframes into the display list

    Instead of always promoting iframes to StackingContexts, integrate them
    into the display list. This prevents stacking bugs when
    non-stacking-context elements should be drawn on top of iframes.
    
    To accomplish this, we add another step to ordering layer creation,
    where LayeredItems in the DisplayList are added to layers described by
    the LayerInfo structures collected at the end of the DisplayList.
    Unlayered items that follow these layered items are added to
    synthesized layers.
    
    Another result of this change is that iframe layers can be positioned
    directly at the location of the iframe fragment, eliminating the need
    for the SubpageLayerInfo struct entirely.
    
    Iframes are the first type of content treated this way, but this change
    opens up the possibility to properly order canvas and all other layered
    content that does not create a stacking context.
    
    Fixes #7566.
    Fixes #7796.
    mrobinson committed Oct 20, 2015
You can’t perform that action at this time.