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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-direction-alternate-reverse.html

Issue 2527583002: 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/animation-direction-alternate-reverse.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-direction-alternate-reverse.html b/third_party/WebKit/LayoutTests/animations/animation-direction-alternate-reverse.html
index cd8f3533eb92f59b3c25a4c292802bae2e2a7ffa..480b5e6ac77f1bcbea1d033db1b8edf08321edaa 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-direction-alternate-reverse.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-direction-alternate-reverse.html
@@ -16,15 +16,15 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-name: move;
- -webkit-animation-duration: 2s;
- -webkit-animation-direction: alternate-reverse;
- -webkit-animation-iteration-count: 2;
- -webkit-animation-timing-function: linear;
- -webkit-animation-fill-mode: forwards;
+ animation-name: move;
+ animation-duration: 2s;
+ animation-direction: alternate-reverse;
+ animation-iteration-count: 2;
+ animation-timing-function: linear;
+ animation-fill-mode: forwards;
}
- @-webkit-keyframes move {
+ @keyframes move {
0% {
left: 0;
}

Powered by Google App Engine
This is Rietveld 408576698