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

Unified Diff: third_party/WebKit/LayoutTests/animations/negative-delay.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/negative-delay-events.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/negative-delay.html
diff --git a/third_party/WebKit/LayoutTests/animations/negative-delay.html b/third_party/WebKit/LayoutTests/animations/negative-delay.html
index 3a861663cb019bb944a4b1f84889fd7a880876a3..efc41fdb912bfb6e9a30e83f8637b87e1b790ec5 100644
--- a/third_party/WebKit/LayoutTests/animations/negative-delay.html
+++ b/third_party/WebKit/LayoutTests/animations/negative-delay.html
@@ -9,25 +9,25 @@
width: 20px;
height: 20px;
position: absolute;
- -webkit-animation-duration: 2s;
- -webkit-animation-iteration-count: 1;
- -webkit-animation-timing-function: linear;
+ animation-duration: 2s;
+ animation-iteration-count: 1;
+ animation-timing-function: linear;
}
.move {
- -webkit-animation-name: square-move;
+ animation-name: square-move;
}
.translate {
- -webkit-animation-name: square-translate;
+ animation-name: square-translate;
}
- @-webkit-keyframes square-move {
+ @keyframes square-move {
0% { left: 0px; }
100% { left: 600px; }
}
- @-webkit-keyframes square-translate {
+ @keyframes square-translate {
0% { transform: translateX(0); }
100% { transform: translateX(600px); }
}
@@ -35,7 +35,7 @@
#square1 {
top: 20px;
left: 20px;
- -webkit-animation-delay: -1s;
+ animation-delay: -1s;
}
#square2 {
@@ -46,7 +46,7 @@
#square3 {
top: 100px;
left: 20px;
- -webkit-animation-delay: -1s;
+ animation-delay: -1s;
}
#square4 {
@@ -65,10 +65,10 @@
[0, "square2", "left", 0, 15],
[0.5, "square1", "left", 450, 15],
[0.5, "square2", "left", 150, 15],
- [0, "square3", "webkitTransform.4", 300, 20],
- [0, "square4", "webkitTransform.4", 0, 20],
- [0.5, "square3", "webkitTransform.4", 450, 20],
- [0.5, "square4", "webkitTransform.4", 150, 20],
+ [0, "square3", "transform.4", 300, 20],
+ [0, "square4", "transform.4", 0, 20],
+ [0.5, "square3", "transform.4", 450, 20],
+ [0.5, "square4", "transform.4", 150, 20],
];
runAnimationTest(expectedValues);
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/negative-delay-events.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698