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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-direction.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.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-direction.html b/third_party/WebKit/LayoutTests/animations/animation-direction.html
index 46fbb0766bb8a5b5b7f52d37c472ed0f68d6ead7..be2cbca1af541686be9f9ba8dbdb7d3a70a3c59e 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-direction.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-direction.html
@@ -16,14 +16,14 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-name: move;
- -webkit-animation-duration: 2s;
- -webkit-animation-direction: alternate;
- -webkit-animation-iteration-count: 2;
- -webkit-animation-timing-function: linear;
+ animation-name: move;
+ animation-duration: 2s;
+ animation-direction: alternate;
+ animation-iteration-count: 2;
+ animation-timing-function: linear;
}
- @-webkit-keyframes move {
+ @keyframes move {
0% {
left: 0;
}

Powered by Google App Engine
This is Rietveld 408576698