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

Unified Diff: LayoutTests/transitions/start-transform-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/start-transform-transition.html
diff --git a/LayoutTests/transitions/start-transform-transition.html b/LayoutTests/transitions/start-transform-transition.html
index 44915b527e3cb68e07150753b4017e60d942c243..1220d6e899f07f1d406ec8d544c19f1254e5d7fd 100644
--- a/LayoutTests/transitions/start-transform-transition.html
+++ b/LayoutTests/transitions/start-transform-transition.html
@@ -8,11 +8,11 @@
background-color: blue;
-webkit-transition-property: -webkit-transform;
alancutter (OOO until 2018) 2014/10/14 05:13:49 Need to change the transition property target as w
-webkit-transition-duration: 5s;
- -webkit-transform: translate(0, 0);
+ transform: translate(0, 0);
}
.moved {
- -webkit-transform: translateX(300px);
+ transform: translateX(300px);
}
</style>
<script>

Powered by Google App Engine
This is Rietveld 408576698