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

Unified Diff: third_party/WebKit/LayoutTests/animations/play-state-initially-paused.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.html
diff --git a/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html b/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
index 0db45409b1d5f61dd3f60292a912cc749756b574..3174a24e531ab244f1eb078eec15ea5367187f29 100644
--- a/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
+++ b/third_party/WebKit/LayoutTests/animations/play-state-initially-paused.html
@@ -9,28 +9,28 @@
background-color: red;
left: 0px;
margin-bottom: 10px;
- -webkit-animation: test 0.8s linear forwards;
- -webkit-animation-play-state: paused;
+ animation: test 0.8s linear forwards;
+ animation-play-state: paused;
animation: test 0.8s linear forwards;
animation-play-state: paused;
}
.running {
- -webkit-animation-play-state: running;
+ animation-play-state: running;
animation-play-state: running;
}
#animation1 {
- -webkit-animation-delay: -0.2s;
+ animation-delay: -0.2s;
animation-delay: -0.2s;
}
#animation2 {
- -webkit-animation-delay: 0s;
+ animation-delay: 0s;
animation-delay: 0s;
}
#animation3 {
- -webkit-animation-delay: 0.2s;
+ animation-delay: 0.2s;
animation-delay: 0.2s;
}
- @-webkit-keyframes test {
+ @keyframes test {
from { left: 100px; }
to { left: 300px; }
}

Powered by Google App Engine
This is Rietveld 408576698