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

Unified Diff: third_party/WebKit/ManualTests/animation/transitions-and-paused-animations.html

Issue 2715113003: CSS manual tests: reduce usage of webkit prefix (Closed)
Patch Set: Created 3 years, 10 months 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/ManualTests/animation/transitions-and-paused-animations.html
diff --git a/third_party/WebKit/ManualTests/animation/transitions-and-paused-animations.html b/third_party/WebKit/ManualTests/animation/transitions-and-paused-animations.html
index a1e2e53b759da337d1682cf949d353427d6772a9..34a623ddfb21f327f75dccd5baccacd130a62e8b 100644
--- a/third_party/WebKit/ManualTests/animation/transitions-and-paused-animations.html
+++ b/third_party/WebKit/ManualTests/animation/transitions-and-paused-animations.html
@@ -11,7 +11,7 @@
height: 200px;
width: 200px;
border: 1px solid black;
- -webkit-transition: -webkit-transform 0.5s;
+ transition: transform 0.5s;
}
.moved {
@@ -25,14 +25,14 @@
margin: 50px;
background-color: blue;
transform: translateZ(0);
- -webkit-animation: fade 1s infinite linear alternate;
+ animation: fade 1s infinite linear alternate;
}
.moved .box {
- -webkit-animation-play-state: paused;
+ animation-play-state: paused;
}
- @-webkit-keyframes fade {
+ @keyframes fade {
from { transform: rotate(-20deg); }
to { transform: rotate(20deg); }
}

Powered by Google App Engine
This is Rietveld 408576698