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

Unified Diff: third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name.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/duplicated-keyframes-name.html
diff --git a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name.html b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name.html
index 988164df08aaf87a902a4b02d8c7347def86f814..6e1cadb98caa8a2599bd69cae2a6b1afe70f0467 100644
--- a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name.html
+++ b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name.html
@@ -13,20 +13,20 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
- -webkit-animation-fill-mode: forwards;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-name: anim;
+ animation-fill-mode: forwards;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 50px; }
to { left: 100px; }
}
- @-webkit-keyframes irrelevant {
+ @keyframes irrelevant {
from { left: 150px; }
to { left: 2500px; }
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 200px; }
to { left: 300px; }
}

Powered by Google App Engine
This is Rietveld 408576698