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

Unified Diff: third_party/WebKit/LayoutTests/animations/line-height-animation.html

Issue 2522123002: 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/line-height-animation.html
diff --git a/third_party/WebKit/LayoutTests/animations/line-height-animation.html b/third_party/WebKit/LayoutTests/animations/line-height-animation.html
index 2dbdf9e432f09e27a275b3b7481ad590d10b0c89..e8251a068844f7c16144ec35c5ca2b77a5b216c3 100644
--- a/third_party/WebKit/LayoutTests/animations/line-height-animation.html
+++ b/third_party/WebKit/LayoutTests/animations/line-height-animation.html
@@ -15,11 +15,11 @@
font-family: "arial";
font-size: 10px;
border: 1px solid black;
- -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 { line-height: 1em; }
to { line-height: 2em; }
}

Powered by Google App Engine
This is Rietveld 408576698