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

Unified Diff: third_party/WebKit/LayoutTests/animations/generic-from-to.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
« no previous file with comments | « third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/generic-from-to.html
diff --git a/third_party/WebKit/LayoutTests/animations/generic-from-to.html b/third_party/WebKit/LayoutTests/animations/generic-from-to.html
index 75697a8ce118546ec51561ef28fc53f3544fc689..4fc680ea196e2cc271d7d9cf078b5472105d8c9b 100644
--- a/third_party/WebKit/LayoutTests/animations/generic-from-to.html
+++ b/third_party/WebKit/LayoutTests/animations/generic-from-to.html
@@ -13,11 +13,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 100px; }
to { left: 200px; }
}
« no previous file with comments | « third_party/WebKit/LayoutTests/animations/font-size-using-ems.html-disabled ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698