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

Unified Diff: LayoutTests/compositing/reflections/nested-reflection-animated.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/reflections/nested-reflection-animated.html
diff --git a/LayoutTests/compositing/reflections/nested-reflection-animated.html b/LayoutTests/compositing/reflections/nested-reflection-animated.html
index 24254c84fdaa294398c58cc1e466b59a538c0df5..6aae869faddfb42aeaf5881c1e0dff0fea03c108 100644
--- a/LayoutTests/compositing/reflections/nested-reflection-animated.html
+++ b/LayoutTests/compositing/reflections/nested-reflection-animated.html
@@ -30,12 +30,12 @@
}
.composited {
- -webkit-transform: translateZ(0);
+ transform: translateZ(0);
}
@-webkit-keyframes swing {
- from { -webkit-transform: rotate(0deg); }
- to { -webkit-transform: rotate(90deg); }
+ from { transform: rotate(0deg); }
+ to { transform: rotate(90deg); }
}
</style>
<script src="../../animations/resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>

Powered by Google App Engine
This is Rietveld 408576698