Changeset 207723 in webkit


Ignore:
Timestamp:
Oct 22, 2016 7:49:41 PM (7 years ago)
Author:
mitz@apple.com
Message:

Dynamically-added backdrop filter to clip-path'd element with 3D transform renders incorrectly (without clip)
https://bugs.webkit.org/show_bug.cgi?id=163497

Reviewed by Simon Fraser.

Source/WebCore:

Test: css3/filters/backdrop/dynamic-with-clip-path.html

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::ensureStructuralLayer): Added MaskLayerChanged to

structuralLayerChangeFlags to ensure that the mask layer is updated.

LayoutTests:

Based on the test case from Tim Horton.

  • css3/filters/backdrop/dynamic-with-clip-path-expected.html: Added.
  • css3/filters/backdrop/dynamic-with-clip-path.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r207722 r207723  
     12016-10-22  Dan Bernstein  <mitz@apple.com>
     2
     3        Dynamically-added backdrop filter to clip-path'd element with 3D transform renders incorrectly (without clip)
     4        https://bugs.webkit.org/show_bug.cgi?id=163497
     5
     6        Reviewed by Simon Fraser.
     7
     8        Based on the test case from Tim Horton.
     9
     10        * css3/filters/backdrop/dynamic-with-clip-path-expected.html: Added.
     11        * css3/filters/backdrop/dynamic-with-clip-path.html: Added.
     12
    1132016-10-22  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/ChangeLog

    r207722 r207723  
     12016-10-22  Dan Bernstein  <mitz@apple.com>
     2
     3        Dynamically-added backdrop filter to clip-path'd element with 3D transform renders incorrectly (without clip)
     4        https://bugs.webkit.org/show_bug.cgi?id=163497
     5
     6        Reviewed by Simon Fraser.
     7
     8        Test: css3/filters/backdrop/dynamic-with-clip-path.html
     9
     10        * platform/graphics/ca/GraphicsLayerCA.cpp:
     11        (WebCore::GraphicsLayerCA::ensureStructuralLayer): Added MaskLayerChanged to
     12          structuralLayerChangeFlags to ensure that the mask layer is updated.
     13
    1142016-10-22  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp

    r207722 r207723  
    20722072        | FiltersChanged
    20732073        | BackdropFiltersChanged
     2074        | MaskLayerChanged
    20742075        | OpacityChanged;
    20752076
Note: See TracChangeset for help on using the changeset viewer.