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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-default-timing-function.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/keyframe-default-timing-function.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-default-timing-function.html b/third_party/WebKit/LayoutTests/animations/keyframe-default-timing-function.html
index 8a480d9ac2cc0fb51e556c3bcdf52fc228c46ed1..02e954585f60bf8722faeb2255ff730963bc9f9b 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframe-default-timing-function.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframe-default-timing-function.html
@@ -13,10 +13,10 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 2s;
- -webkit-animation-name: anim;
+ animation-duration: 2s;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 10px; top: 10px; }
40% { left: 30px; width: 300px; }
60% { top: 40px; height: 400px; }

Powered by Google App Engine
This is Rietveld 408576698