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

Unified Diff: third_party/WebKit/LayoutTests/animations/delay-start-event.html

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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/display-change-does-not-terminate-animation.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/delay-start-event.html
diff --git a/third_party/WebKit/LayoutTests/animations/delay-start-event.html b/third_party/WebKit/LayoutTests/animations/delay-start-event.html
index 18cef0ff49850680d5eca7ab35712f7d03a5eacf..835f885e6921139ddbc2b401ec9ebf225d653b1b 100644
--- a/third_party/WebKit/LayoutTests/animations/delay-start-event.html
+++ b/third_party/WebKit/LayoutTests/animations/delay-start-event.html
@@ -10,22 +10,22 @@
margin-bottom: 10px;
}
.animated {
- -webkit-animation: test 1s linear;
+ animation: test 1s linear;
animation: test 1s linear;
}
#negative-delay {
- -webkit-animation-delay: -500ms;
+ animation-delay: -500ms;
animation-delay: -500ms;
}
#zero-delay {
- -webkit-animation-delay: 0ms;
+ animation-delay: 0ms;
animation-delay: 0ms;
}
#positive-delay {
- -webkit-animation-delay: 500ms;
+ animation-delay: 500ms;
animation-delay: 500ms;
}
- @-webkit-keyframes test {
+ @keyframes test {
from { left: 100px; }
to { left: 300px; }
}
@@ -45,7 +45,7 @@
requestAnimationFrame(function(t) {
['negative-delay', 'zero-delay', 'positive-delay'].forEach(function(id) {
var target = document.getElementById(id);
- target.addEventListener('webkitAnimationStart', onStartEventFired);
+ target.addEventListener('animationstart', onStartEventFired);
target.classList.add('animated');
});
requestAnimationFrame(function() {
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/display-change-does-not-terminate-animation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698