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

Unified Diff: third_party/WebKit/ManualTests/animate-duration.html

Issue 2715113003: CSS manual tests: reduce usage of webkit prefix (Closed)
Patch Set: Created 3 years, 10 months 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/ManualTests/animate-left.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/ManualTests/animate-duration.html
diff --git a/third_party/WebKit/ManualTests/animate-duration.html b/third_party/WebKit/ManualTests/animate-duration.html
index b155c7038f6bbb4dc347f09b4189a3c3a1a4e714..9b3c823b0dc973c5bb55300a8dc61c11c3bf4798 100644
--- a/third_party/WebKit/ManualTests/animate-duration.html
+++ b/third_party/WebKit/ManualTests/animate-duration.html
@@ -22,22 +22,22 @@
margin: 10px;
background-color: blue;
z-index: 0;
- -webkit-animation-name: slide;
- -webkit-animation-duration: 1s;
- -webkit-animation-direction: alternate;
- -webkit-animation-timing-function: ease-in-out;
- -webkit-animation-iteration-count: infinite;
+ animation-name: slide;
+ animation-duration: 1s;
+ animation-direction: alternate;
+ animation-timing-function: ease-in-out;
+ animation-iteration-count: infinite;
}
.one {
- -webkit-animation-duration: 0s;
+ animation-duration: 0s;
}
.two {
- -webkit-animation-duration: 0;
+ animation-duration: 0;
}
- @-webkit-keyframes slide {
+ @keyframes slide {
from { transform: translateX(0); }
to { transform: translateX(280px); }
}
« no previous file with comments | « no previous file | third_party/WebKit/ManualTests/animate-left.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698