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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html

Issue 2513413007: CSS Animations: 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/fast/css-generated-content/pseudo-animation-display.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
index a44bddd5a7188403adce574fde6d286e208a1f7c..d4f6808020fe22502833f98136c646c5d7c4c3cd 100644
--- a/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
+++ b/third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-animation-display.html
@@ -14,10 +14,10 @@
background-color: blue;
}
#target.animated:after {
- -webkit-animation: anim 1ms forwards;
+ animation: anim 1ms forwards;
animation: anim 1ms forwards;
}
-@-webkit-keyframes anim {
+@keyframes anim {
from {
left: 0px;
display: block;
@@ -47,7 +47,7 @@ if (window.testRunner) {
function go() {
var target = document.getElementById('target');
- target.addEventListener('webkitAnimationEnd', completeTest);
+ target.addEventListener('animationend', completeTest);
target.classList.add('animated');
}

Powered by Google App Engine
This is Rietveld 408576698