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

Unified Diff: third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html

Issue 2518273002: Remove unnecessary webkit prefixes from animation layout tests (Closed)
Patch Set: remove trailing space 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/compositing/layer-creation/overlap-animation.html
diff --git a/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html b/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
index 3f3ecdaec2580dff7800dc764123d5649db6e731..333297f3d5654ca70e0892d1bf7e977950486953 100644
--- a/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
+++ b/third_party/WebKit/LayoutTests/compositing/layer-creation/overlap-animation.html
@@ -21,10 +21,10 @@
}
.animating {
- -webkit-animation: spin 2s infinite linear;
+ animation: spin 2s infinite linear;
}
- @-webkit-keyframes spin {
+ @keyframes spin {
from { transform: rotate(90deg); }
to { transform: rotate(360deg); }
}
@@ -38,7 +38,7 @@
function runTest()
{
var box = document.getElementById('to-animate');
- box.addEventListener('webkitAnimationStart', animationStarted, false);
+ box.addEventListener('animationstart', animationStarted, false);
box.className = 'animating box';
}

Powered by Google App Engine
This is Rietveld 408576698