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

Unified Diff: third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html

Issue 2521163002: CSS Animations: Reduce usage of webkit prefix in 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/multiple-animations-timing-function.html
diff --git a/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html b/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
index ff9adcf798ebf04abba307abecb6d2ca1052b9df..3361bbb6b4b6028faeba50a6529144368feb16d3 100644
--- a/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
+++ b/third_party/WebKit/LayoutTests/animations/multiple-animations-timing-function.html
@@ -7,17 +7,17 @@
width: 100px;
margin: 20px;
background-color: red;
- -webkit-animation:
+ animation:
horizontal 2s ease-in 1 alternate,
vertical 2s ease-out 1 alternate;
}
- @-webkit-keyframes horizontal {
+ @keyframes horizontal {
from { left: 0px; }
to { left: 200px; }
}
- @-webkit-keyframes vertical {
+ @keyframes vertical {
from { top: 0px; }
to { top: 200px; }
}

Powered by Google App Engine
This is Rietveld 408576698