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

Unified Diff: third_party/WebKit/ManualTests/animation/compositor-animation-iteration-count.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/compositor-animation-iteration-count.html
diff --git a/third_party/WebKit/ManualTests/animation/compositor-animation-iteration-count.html b/third_party/WebKit/ManualTests/animation/compositor-animation-iteration-count.html
index a6659c2ff0f4f34f4f16a4968da1dd237f4c9d0e..0393eca828c7c2dc68db98432fb97e6f8305f47d 100644
--- a/third_party/WebKit/ManualTests/animation/compositor-animation-iteration-count.html
+++ b/third_party/WebKit/ManualTests/animation/compositor-animation-iteration-count.html
@@ -6,47 +6,47 @@ div {
width: 100px;
background: blue;
transform: translateZ(0);
- -webkit-animation-direction: alternate;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-fill-mode: both;
+ animation-direction: alternate;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-fill-mode: both;
}
.test0 {
- -webkit-animation-iteration-count: 0;
+ animation-iteration-count: 0;
}
.test1 {
- -webkit-animation-iteration-count: 0.5;
+ animation-iteration-count: 0.5;
}
.test2 {
- -webkit-animation-iteration-count: 1;
+ animation-iteration-count: 1;
}
.test3 {
- -webkit-animation-iteration-count: 1.5;
+ animation-iteration-count: 1.5;
}
.test4 {
- -webkit-animation-iteration-count: 2;
+ animation-iteration-count: 2;
}
.test5 {
- -webkit-animation-iteration-count: 2.5;
+ animation-iteration-count: 2.5;
}
.anim-left {
- -webkit-animation-name: anim-left;
+ animation-name: anim-left;
z-index: 100;
}
.anim-transform {
- -webkit-animation-name: anim-transform;
+ animation-name: anim-transform;
z-index: 200;
}
-@-webkit-keyframes anim-left {
+@keyframes anim-left {
0% {
left: 0px;
}
@@ -55,7 +55,7 @@ div {
}
}
-@-webkit-keyframes anim-transform {
+@keyframes anim-transform {
0% {
transform: translateX(0px);
}

Powered by Google App Engine
This is Rietveld 408576698