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

Unified Diff: LayoutTests/fast/layers/scroll-with-transform-composited-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-composited-layer.html
diff --git a/LayoutTests/fast/layers/scroll-with-transform-composited-layer.html b/LayoutTests/fast/layers/scroll-with-transform-composited-layer.html
index 3f70a7197b556d4ba7e908f41e67fbfde5ef02df..3260b5c7efc7e7bbde09b5675503587396c1b890 100644
--- a/LayoutTests/fast/layers/scroll-with-transform-composited-layer.html
+++ b/LayoutTests/fast/layers/scroll-with-transform-composited-layer.html
@@ -9,13 +9,13 @@
div.relative { position: relative }
div.composited
{
- -webkit-transform: translateZ(0);
+ transform: translateZ(0);
-moz-transform: translateZ(0);
transform: translateZ(0);
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