Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation.html

Issue 2529253002: CSS Filters: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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";
}

Powered by Google App Engine
This is Rietveld 408576698