Changeset 277566 in webkit


Ignore:
Timestamp:
May 16, 2021 1:30:49 AM (14 months ago)
Author:
ntim@apple.com
Message:

Make will-change: transform-style create a containing block
https://bugs.webkit.org/show_bug.cgi?id=225441

Reviewed by Simon Fraser.

Marked relevant WPT as pass.

Source/WebCore:

  • rendering/style/WillChangeData.cpp:

(WebCore::WillChangeData::createsContainingBlockForOutOfFlowPositioned const):

LayoutTests:

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r277547 r277566  
     12021-05-16  Tim Nguyen  <ntim@apple.com>
     2
     3        Make will-change: transform-style create a containing block
     4        https://bugs.webkit.org/show_bug.cgi?id=225441
     5
     6        Reviewed by Simon Fraser.
     7
     8        Marked relevant WPT as pass.
     9
     10        * TestExpectations:
     11
    1122021-05-15  Said Abou-Hallawa  <said@apple.com>
    213
  • trunk/LayoutTests/TestExpectations

    r277527 r277566  
    48644864webkit.org/b/225442 imported/w3c/web-platform-tests/css/css-will-change/will-change-fixpos-cb-contain-1.html [ ImageOnlyFailure ]
    48654865webkit.org/b/225443 imported/w3c/web-platform-tests/css/css-will-change/will-change-fixpos-cb-position-1.html [ ImageOnlyFailure ]
    4866 webkit.org/b/225441 imported/w3c/web-platform-tests/css/css-will-change/will-change-fixpos-cb-transform-style-1.html [ ImageOnlyFailure ]
    48674866webkit.org/b/224902 [ Debug ] imported/w3c/web-platform-tests/css/css-will-change/parsing/will-change-invalid.html [ Skip ]
    48684867
  • trunk/Source/WebCore/ChangeLog

    r277564 r277566  
     12021-05-16  Tim Nguyen  <ntim@apple.com>
     2
     3        Make will-change: transform-style create a containing block
     4        https://bugs.webkit.org/show_bug.cgi?id=225441
     5
     6        Reviewed by Simon Fraser.
     7
     8        Marked relevant WPT as pass.
     9
     10        * rendering/style/WillChangeData.cpp:
     11        (WebCore::WillChangeData::createsContainingBlockForOutOfFlowPositioned const):
     12
    1132021-05-15  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/Source/WebCore/rendering/style/WillChangeData.cpp

    r276627 r277566  
    6767        // CSS transforms
    6868        || containsProperty(CSSPropertyTransform)
     69        || containsProperty(CSSPropertyTransformStyle)
    6970        || containsProperty(CSSPropertyTranslate)
    7071        || containsProperty(CSSPropertyRotate)
Note: See TracChangeset for help on using the changeset viewer.