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

Unified Diff: third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.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-unprefixed-02.html
diff --git a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
index 6bfb62fa7eb36251365fa8b6f243bc8ac6ec3f36..47917c51026d747aaa5c52e8d5ad85145e28f182 100644
--- a/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
+++ b/third_party/WebKit/LayoutTests/animations/duplicated-keyframes-name-unprefixed-02.html
@@ -13,10 +13,10 @@
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;
}
@keyframes anim {
from { left: 50px; }
@@ -26,7 +26,7 @@
from { left: 150px; }
to { left: 2500px; }
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 200px; }
to { left: 100px; }
}

Powered by Google App Engine
This is Rietveld 408576698