From: simon.fraser@apple.com Date: Thu, 2 Feb 2017 20:21:58 +0000 (+0000) Subject: Clean up css3/filters/backdrop/dynamic-with-clip-path.html X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=2c37ac35720fe0bdf0bb3813b1ec63c7df16c9a3 Clean up css3/filters/backdrop/dynamic-with-clip-path.html This test used a clip-path that was entirely outside the element, making it confusing. Move the clipping circle to the center. * css3/filters/backdrop/dynamic-with-clip-path-expected.html: * css3/filters/backdrop/dynamic-with-clip-path.html: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@211581 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index 801d7dc..52de7c2 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,13 @@ +2017-02-02 Simon Fraser + + Clean up css3/filters/backdrop/dynamic-with-clip-path.html + + This test used a clip-path that was entirely outside the element, making it confusing. + Move the clipping circle to the center. + + * css3/filters/backdrop/dynamic-with-clip-path-expected.html: + * css3/filters/backdrop/dynamic-with-clip-path.html: + 2017-02-02 Ryan Haddad Marking http/tests/inspector/worker/blob-script-with-cross-domain-imported-scripts.html as flaky. diff --git a/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path-expected.html b/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path-expected.html index 2f1e716..6f5bfc8f7 100644 --- a/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path-expected.html +++ b/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path-expected.html @@ -7,12 +7,12 @@ background-color: green; } #filter { - position: absolute; - width: 200px; - height: 200px; - transform: translatez(0); - -webkit-clip-path: circle(25px at 225px); - -webkit-backdrop-filter: invert(); + position: absolute; + width: 200px; + height: 200px; + transform: translateZ(0); + -webkit-clip-path: circle(80px at 100px); + -webkit-backdrop-filter: invert(); }
diff --git a/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path.html b/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path.html index 65cd0e9..d9b9f9f 100644 --- a/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path.html +++ b/LayoutTests/css3/filters/backdrop/dynamic-with-clip-path.html @@ -10,8 +10,8 @@ position: absolute; width: 200px; height: 200px; - transform: translatez(0); - -webkit-clip-path: circle(25px at 225px); + transform: translateZ(0); + -webkit-clip-path: circle(80px at 100px); } .backdrop { -webkit-backdrop-filter: invert();