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

Unified Diff: LayoutTests/compositing/geometry/bounds-clipped-composited-child.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/geometry/bounds-clipped-composited-child.html
diff --git a/LayoutTests/compositing/geometry/bounds-clipped-composited-child.html b/LayoutTests/compositing/geometry/bounds-clipped-composited-child.html
index 51e9d923784b19704341b1d90c6108b09bc547fa..7debcc9f3a71c3b511334b57a34b57cdae3257de 100644
--- a/LayoutTests/compositing/geometry/bounds-clipped-composited-child.html
+++ b/LayoutTests/compositing/geometry/bounds-clipped-composited-child.html
@@ -10,7 +10,7 @@
margin-left: 50px;
height: 100px;
width: 100px;
- -webkit-transform: translate3d(-50%, 0, 0);
+ transform: translate3d(-50%, 0, 0);
}
.box {
@@ -52,8 +52,8 @@
<!-- You should see a green rectangle, and no red. -->
<div id="indicator"></div>
<div class="container">
- <div class="box" style="-webkit-transform: translateX(0)"></div>
- <div class="box" style="-webkit-transform: translateX(100%)"></div>
+ <div class="box" style="transform: translateX(0)"></div>
+ <div class="box" style="transform: translateX(100%)"></div>
</div>
<pre id="layers">Layer tree goes here in DRT</pre>
</body>

Powered by Google App Engine
This is Rietveld 408576698