| Index: third_party/WebKit/LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html b/third_party/WebKit/LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html
|
| index ad1fc3ce412b6bd80991d1167f0bfabdd455f1f2..542e8b566a3e010f6d2305866a5a99d16e01f376 100644
|
| --- a/third_party/WebKit/LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html
|
| +++ b/third_party/WebKit/LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html
|
| @@ -20,19 +20,19 @@
|
| }
|
| .initial-drop-shadow {
|
| /* Safari paints filters in software when drop-shadow appears before another filter in the chain. */
|
| - -webkit-filter: drop-shadow(10px 10px 0px black) blur(0);
|
| + filter: drop-shadow(10px 10px 0px black) blur(0);
|
| }
|
| .final-drop-shadow {
|
| - -webkit-filter: drop-shadow(10px 10px 0px black) blur(25px);
|
| - -webkit-animation-name: blur-animation;
|
| - -webkit-animation-duration: 0.1s;
|
| + filter: drop-shadow(10px 10px 0px black) blur(25px);
|
| + animation-name: blur-animation;
|
| + animation-duration: 0.1s;
|
| }
|
| - @-webkit-keyframes blur-animation {
|
| + @keyframes blur-animation {
|
| from {
|
| - -webkit-filter: drop-shadow(10px 10px 0px black) blur(0);
|
| + filter: drop-shadow(10px 10px 0px black) blur(0);
|
| }
|
| to {
|
| - -webkit-filter: drop-shadow(10px 10px 0px black) blur(25px);
|
| + filter: drop-shadow(10px 10px 0px black) blur(25px);
|
| }
|
| }
|
| </style>
|
| @@ -44,7 +44,7 @@
|
| {
|
| var targetElement = document.getElementById("composited-layer");
|
| if (window.testRunner)
|
| - targetElement.addEventListener("webkitAnimationEnd", finishTest);
|
| + targetElement.addEventListener("animationend", finishTest);
|
| targetElement.className = "final-drop-shadow";
|
| }
|
|
|
|
|