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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-border-overflow.html

Issue 2527583002: 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/animation-border-overflow.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-border-overflow.html b/third_party/WebKit/LayoutTests/animations/animation-border-overflow.html
index 719b6f53a700e6e86675799fd86374543fd7ccd8..8e7a1986c1135e8123e90d3aced8b90bb8b28fe0 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-border-overflow.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-border-overflow.html
@@ -7,11 +7,11 @@
width: 100px;
border-top-width: 300px;
border-style: solid;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: ease-in-out;
- -webkit-animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: ease-in-out;
+ animation-name: anim;
}
-@-webkit-keyframes anim {
+@keyframes anim {
from { border-top-width: 200px; }
to { border-top-width: 0px; }
}

Powered by Google App Engine
This is Rietveld 408576698