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

Unified Diff: LayoutTests/transitions/move-after-transition.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: LayoutTests/transitions/move-after-transition.html
diff --git a/LayoutTests/transitions/move-after-transition.html b/LayoutTests/transitions/move-after-transition.html
index d1725bb555be29e14d4c469c94fccb59c35375d4..53d05068dd49c87c5c096e37773f4849bdf458d9 100644
--- a/LayoutTests/transitions/move-after-transition.html
+++ b/LayoutTests/transitions/move-after-transition.html
@@ -27,13 +27,13 @@
}
#container.moved .hardware {
- -webkit-transform: translateX(300px);
+ transform: translateX(300px);
}
.hardware {
-webkit-transform-style: preserve-3d;
-webkit-transition: -webkit-transform 300ms linear;
alancutter (OOO until 2018) 2014/10/14 05:13:49 Need to change the transition property target as w
- -webkit-transform: translateX(0);
+ transform: translateX(0);
}
</style>

Powered by Google App Engine
This is Rietveld 408576698