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

Unified Diff: LayoutTests/compositing/animation/state-at-end-event-transform-layer.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/compositing/animation/state-at-end-event-transform-layer.html
diff --git a/LayoutTests/compositing/animation/state-at-end-event-transform-layer.html b/LayoutTests/compositing/animation/state-at-end-event-transform-layer.html
index 2e9608d62ad05db3a4ed24611c51c32188803c8b..db7c016d8ffa9a6fecf344fceb354dca8a2e894d 100644
--- a/LayoutTests/compositing/animation/state-at-end-event-transform-layer.html
+++ b/LayoutTests/compositing/animation/state-at-end-event-transform-layer.html
@@ -31,12 +31,12 @@
.hardware {
-webkit-transform-style: preserve-3d;
- -webkit-transform: translate3d(10px, 0, 0);
+ transform: translate3d(10px, 0, 0);
}
@-webkit-keyframes move {
- from { -webkit-transform: translate3d(10px, 0, 0); }
- to { -webkit-transform: translate3d(300px, 0, 0); }
+ from { transform: translate3d(10px, 0, 0); }
+ to { transform: translate3d(300px, 0, 0); }
}
</style>
<script type="text/javascript" charset="utf-8">

Powered by Google App Engine
This is Rietveld 408576698