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

Unified Diff: ManualTests/animation/compositor-animation-delay.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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: ManualTests/animation/compositor-animation-delay.html
diff --git a/ManualTests/animation/compositor-animation-delay.html b/ManualTests/animation/compositor-animation-delay.html
index e502c262fca46dc9e8f4d53679466fa48bd32d0c..089880ad0327bfd1c1b31b932703fd64564b829e 100644
--- a/ManualTests/animation/compositor-animation-delay.html
+++ b/ManualTests/animation/compositor-animation-delay.html
@@ -5,7 +5,7 @@ div {
height: 100px;
width: 100px;
background: blue;
- -webkit-transform: translateZ(0);
+ transform: translateZ(0);
-webkit-animation-direction: alternate;
-webkit-animation-duration: 2s;
-webkit-animation-timing-function: linear;
@@ -49,10 +49,10 @@ div {
@-webkit-keyframes anim-transform {
0% {
- -webkit-transform: translateX(0px);
+ transform: translateX(0px);
}
100% {
- -webkit-transform: translateX(300px);
+ transform: translateX(300px);
}
}
</style>

Powered by Google App Engine
This is Rietveld 408576698