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

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: 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..6774e8e77caadff9c11f8f8b1b1ee056ce68ea57 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;
- -webkit-transform: translateX(0);
+ transform-style: preserve-3d;
+ -webkit-transition: transform 300ms linear;
+ transform: translateX(0);
}
</style>
« no previous file with comments | « LayoutTests/transitions/matched-transform-functions.html ('k') | LayoutTests/transitions/negative-delay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698