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

Unified Diff: LayoutTests/fast/layers/scroll-with-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: 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/fast/layers/scroll-with-transform-layer.html
diff --git a/LayoutTests/fast/layers/scroll-with-transform-layer.html b/LayoutTests/fast/layers/scroll-with-transform-layer.html
index 0035ec0c0f6cf56373fef6a494631d3980d4be51..cb1e938238b7bc74e2ff6780bc1d8af09db45810 100644
--- a/LayoutTests/fast/layers/scroll-with-transform-layer.html
+++ b/LayoutTests/fast/layers/scroll-with-transform-layer.html
@@ -9,13 +9,13 @@
div.relative { position: relative }
div.rotated
{
- -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
-moz-transform: rotate(360deg);
transform: rotate(360deg);
alancutter (OOO until 2018) 2014/10/14 05:13:48 Extra -moz-transform and transform here and below.
}
div.translated
{
- -webkit-transform: translate(0);
+ transform: translate(0);
-moz-transform: translate(0);
transform: translate(0);
}

Powered by Google App Engine
This is Rietveld 408576698