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

Unified Diff: third_party/WebKit/LayoutTests/animations/play-state-initially-paused-start-event.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/animations/play-state-initially-paused-start-event.html
diff --git a/third_party/WebKit/LayoutTests/animations/play-state-initially-paused-start-event.html b/third_party/WebKit/LayoutTests/animations/play-state-initially-paused-start-event.html
index 6c25988511abbe36607f0cc8d6797055ed1aa26e..34986b2853c52eaa90cff7dab3a7db76fa3125ed 100644
--- a/third_party/WebKit/LayoutTests/animations/play-state-initially-paused-start-event.html
+++ b/third_party/WebKit/LayoutTests/animations/play-state-initially-paused-start-event.html
@@ -10,28 +10,28 @@
margin-bottom: 10px;
}
.animated {
- -webkit-animation: test 10ms linear forwards;
- -webkit-animation-play-state: paused;
+ animation: test 10ms linear forwards;
+ animation-play-state: paused;
animation: test 10ms linear forwards;
animation-play-state: paused;
}
.running {
- -webkit-animation-play-state: running;
+ animation-play-state: running;
animation-play-state: running;
}
#animation1 {
- -webkit-animation-delay: -10ms;
+ animation-delay: -10ms;
animation-delay: -10ms;
}
#animation2 {
- -webkit-animation-delay: 0ms;
+ animation-delay: 0ms;
animation-delay: 0ms;
}
#animation3 {
- -webkit-animation-delay: 10ms;
+ animation-delay: 10ms;
animation-delay: 10ms;
}
- @-webkit-keyframes test {
+ @keyframes test {
from { left: 100px; }
to { left: 300px; }
}
@@ -82,7 +82,7 @@
function start(target, expectImmediateStartEvent) {
isRunning = false;
var startEventHandler = onStartEventFired.bind(null, expectImmediateStartEvent);
- target.addEventListener('webkitAnimationStart', startEventHandler);
+ target.addEventListener('animationstart', startEventHandler);
target.addEventListener('animationstart', startEventHandler);
target.classList.add('animated');
if (!expectImmediateStartEvent) {

Powered by Google App Engine
This is Rietveld 408576698