| Index: LayoutTests/css3/masking/clip-path-animation.html
|
| diff --git a/LayoutTests/css3/masking/clip-path-animation.html b/LayoutTests/css3/masking/clip-path-animation.html
|
| index 77caf23d249c6e05c0ce7799c1d04c5f93f55ae8..97e6e05e858d76b1d515bcc8738097fbcf2efa69 100644
|
| --- a/LayoutTests/css3/masking/clip-path-animation.html
|
| +++ b/LayoutTests/css3/masking/clip-path-animation.html
|
| @@ -11,10 +11,6 @@
|
| display: inline-block;
|
| }
|
|
|
| - #rectangle-box {
|
| - -webkit-animation: rectangle-anim 2s linear
|
| - }
|
| -
|
| #circle-box {
|
| -webkit-animation: circle-anim 2s linear
|
| }
|
| @@ -28,11 +24,6 @@
|
| }
|
|
|
|
|
| - @-webkit-keyframes rectangle-anim {
|
| - from { -webkit-clip-path: rectangle(0%, 0%, 100%, 100%); }
|
| - to { -webkit-clip-path: rectangle(20%, 20%, 60%, 60%); }
|
| - }
|
| -
|
| @-webkit-keyframes circle-anim {
|
| from { -webkit-clip-path: circle(50% at 50% 50%); }
|
| to { -webkit-clip-path: circle(20% at 20% 20%); }
|
| @@ -53,8 +44,9 @@
|
| <script type="text/javascript">
|
| const expectedValues = [
|
| // [time, element-id, property, expected-value, tolerance]
|
| - [1, "rectangle-box", "webkitClipPath", "rectangle(10%, 10%, 80%, 80%, 0px, 0px)", 0.05],
|
| - [1, "circle-box", "webkitClipPath", "circle(35% at 35% 35%)", 0.05],
|
| + // FIXME: BasicShapeInset::blend is not implemented, when it is add an inset test.
|
| + // [1, "inset-box", "webkitClipPath", "inset(10% 10% 10% 10% round 0px 0px 0px 0px / 0px 0px 0px 0px)", 0.05],
|
| + [1, "circle-box", "webkitClipPath", "circle(35% at 35% 35%)", 0.05],
|
| [1, "ellipse-box", "webkitClipPath", "ellipse(35% 30% at 35% 35%)", 0.05],
|
| [1, "polygon-box", "webkitClipPath", "polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%)", 0.05],
|
| ];
|
| @@ -64,7 +56,6 @@
|
| </head>
|
| <body>
|
|
|
| -<div class="box" id="rectangle-box"></div>
|
| <div class="box" id="circle-box"></div>
|
| <div class="box" id="ellipse-box"></div>
|
| <div class="box" id="polygon-box"></div>
|
|
|