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

Unified Diff: third_party/WebKit/LayoutTests/animations/simultaneous-start-left.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/simultaneous-start-left.html
diff --git a/third_party/WebKit/LayoutTests/animations/simultaneous-start-left.html b/third_party/WebKit/LayoutTests/animations/simultaneous-start-left.html
index b6e856c08ab8c0c50f2d4778539f77991a793b8e..a7ee3959e8af2769b5a0e6ddc9fa46d7ebc34134 100644
--- a/third_party/WebKit/LayoutTests/animations/simultaneous-start-left.html
+++ b/third_party/WebKit/LayoutTests/animations/simultaneous-start-left.html
@@ -12,11 +12,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 10s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 10s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 10px; }
to { left: 810px; }
}

Powered by Google App Engine
This is Rietveld 408576698