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

Unified Diff: third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled

Issue 2523543004: CSS Animations: Remove unnecessary webkit prefixes from 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/animations/font-size-using-ems.html-disabled
diff --git a/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled b/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
index 9ef54fe23d0aa7123f944514c3849d2dba02f1ff..8daee271665c909b725f4d0bbe1b3d40160b680b 100644
--- a/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
+++ b/third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled
@@ -18,11 +18,11 @@
height: 250px;
width: 400px;
border: 1px solid black;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { font-size: 1em; }
to { font-size: 2em; }
}
@@ -66,7 +66,7 @@
}, 400);
}
- document.addEventListener('webkitAnimationStart', start, false);
+ document.addEventListener('animationstart', start, false);
</script>
</head>

Powered by Google App Engine
This is Rietveld 408576698