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

[LayoutNG] Only reset a legacy cached result if OOF-positioned. #16859

Merged
merged 1 commit into from
May 15, 2019

Commits on May 15, 2019

  1. [LayoutNG] Only reset a legacy cached result if OOF-positioned.

    We had an issue with our simplified layout algorithm + relayout boundary
    roots.
    
    For this to trigger we needed a (legacy) layout object to be marked for
    simplified layout which was also a relayout boundary root.
    
    During LocalFrameView::PerformLayout, LayoutBox::UpdateLayout would run
    on the legacy LayoutBox, and during LayoutBox::UpdateAfterLayout, this
    would clear the LayoutBox::cached_layout_result_.
    
    During another relayout boundary layout, we'd trigger simplified layout
    for an NG node. This expects that there is always a cached layout
    result associated with a box.
    However this now wasn't the case, as the child had previously cleared
    it, within LayoutBox::UpdateAfterLayout.
    
    The guard inside LayoutBox::UpdateAfterLayout was designed to protect
    against OOF-positioned nodes changing their layout parent, this
    modifies that check do only clear the layout result of OOF-positioned
    legacy layout objects.
    
    Bug: 	963387, 963433, 963620
    Change-Id: Ice1202bdb939689e26e24a8690a52e7d7e82ecbc
    Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1614082
    Reviewed-by: Aleks Totic <atotic@chromium.org>
    Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#660166}
    bfgeek authored and chromium-wpt-export-bot committed May 15, 2019
    Configuration menu
    Copy the full SHA
    48904a2 View commit details
    Browse the repository at this point in the history