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

Unified Diff: third_party/WebKit/LayoutTests/animations/end-exclusive.html

Issue 2523543004: CSS Animations: Remove unnecessary webkit prefixes from layout tests (Closed)
Patch Set: 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/end-exclusive.html
diff --git a/third_party/WebKit/LayoutTests/animations/end-exclusive.html b/third_party/WebKit/LayoutTests/animations/end-exclusive.html
index 5be0fbafe3bb2bf6cab5d8eae98f9f959d04eb6d..5028cade46e142da68031b6c5aacde9cf5328819 100644
--- a/third_party/WebKit/LayoutTests/animations/end-exclusive.html
+++ b/third_party/WebKit/LayoutTests/animations/end-exclusive.html
@@ -5,9 +5,9 @@
left: 0px;
height: 100px;
width: 100px;
- -webkit-animation-name: anim;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
+ animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: linear;
background: blue;
}
#fillanim {
@@ -15,13 +15,13 @@
left: 0px;
height: 100px;
width: 100px;
- -webkit-animation-name: anim;
- -webkit-animation-duration: 1s;
- -webkit-animation-fill-mode: forwards;
- -webkit-animation-timing-function: linear;
+ animation-name: anim;
+ animation-duration: 1s;
+ animation-fill-mode: forwards;
+ animation-timing-function: linear;
background: blue;
}
-@-webkit-keyframes anim {
+@keyframes anim {
from { left: 200px; }
to { left: 300px; }
}

Powered by Google App Engine
This is Rietveld 408576698