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

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

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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-direction.html
diff --git a/ManualTests/animation/compositor-animation-direction.html b/ManualTests/animation/compositor-animation-direction.html
index 096e9d8c0d54b6b5aad2302c1f29d23b04f51e82..2289c291b21d88de935ef73655a2ad418c5e0909 100644
--- a/ManualTests/animation/compositor-animation-direction.html
+++ b/ManualTests/animation/compositor-animation-direction.html
@@ -5,7 +5,7 @@ div {
height: 100px;
width: 100px;
background: blue;
- -webkit-transform: translateZ(0);
+ transform: translateZ(0);
-webkit-animation-duration: 2s;
-webkit-animation-timing-function: linear;
-webkit-animation-fill-mode: both;
@@ -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