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

Unified Diff: third_party/WebKit/LayoutTests/animations/multiple-animations.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.html
diff --git a/third_party/WebKit/LayoutTests/animations/multiple-animations.html b/third_party/WebKit/LayoutTests/animations/multiple-animations.html
index d733cc1dee6ef5bb3cde75c641c3e8b4ae871a20..144b3b0d6eb101b7800bef2551e5c22e88db69e1 100644
--- a/third_party/WebKit/LayoutTests/animations/multiple-animations.html
+++ b/third_party/WebKit/LayoutTests/animations/multiple-animations.html
@@ -13,11 +13,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim1;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-name: anim1;
}
- @-webkit-keyframes anim1 {
+ @keyframes anim1 {
from { left: 10px; }
40% { left: 30px; }
60% { left: 10px; }
@@ -30,11 +30,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim2;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-name: anim2;
}
- @-webkit-keyframes anim2 {
+ @keyframes anim2 {
from { left: 10px; }
50% { left: 30px; }
to { left: 20px; }

Powered by Google App Engine
This is Rietveld 408576698