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

Unified Diff: third_party/WebKit/LayoutTests/animations/multiple-keyframes.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
« no previous file with comments | « third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-timing-function-expected.txt ('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/multiple-keyframes.html
diff --git a/third_party/WebKit/LayoutTests/animations/multiple-keyframes.html b/third_party/WebKit/LayoutTests/animations/multiple-keyframes.html
index a0f6add1a3c3762b81d7dc672b0e7bb91dc8477f..4120ab5aef888ade0fb7eb794614b20931db0285 100644
--- a/third_party/WebKit/LayoutTests/animations/multiple-keyframes.html
+++ b/third_party/WebKit/LayoutTests/animations/multiple-keyframes.html
@@ -13,11 +13,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 10px; }
40% { left: 30px; }
60% { left: 10px; }
« no previous file with comments | « third_party/WebKit/LayoutTests/animations/missing-keyframe-properties-timing-function-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698