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

Unified Diff: third_party/WebKit/LayoutTests/animations/3d/state-at-end-event-transform.html

Issue 2527583002: 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/3d/state-at-end-event-transform.html
diff --git a/third_party/WebKit/LayoutTests/animations/3d/state-at-end-event-transform.html b/third_party/WebKit/LayoutTests/animations/3d/state-at-end-event-transform.html
index 4be46f7eac71deb8e696af2774c69fa10852f103..7d769c8c593a78044d88a6c14c0cbeaac8ea30b0 100644
--- a/third_party/WebKit/LayoutTests/animations/3d/state-at-end-event-transform.html
+++ b/third_party/WebKit/LayoutTests/animations/3d/state-at-end-event-transform.html
@@ -26,14 +26,14 @@
}
#container.moved .hardware {
- -webkit-animation: move 300ms linear;
+ animation: move 300ms linear;
}
.hardware {
transform: translate3d(0, 0, 0);
}
- @-webkit-keyframes move {
+ @keyframes move {
from { transform: translate3d(0, 0, 0); }
to { transform: translate3d(300px, 0, 0); }
}
@@ -51,7 +51,7 @@
if (window.testRunner)
testRunner.waitUntilDone();
- document.getElementById('tester').addEventListener('webkitAnimationEnd', testEnded, false);
+ document.getElementById('tester').addEventListener('animationend', testEnded, false);
document.getElementById('container').className = 'moved';
}

Powered by Google App Engine
This is Rietveld 408576698