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

Unified Diff: LayoutTests/compositing/gestures/gesture-tapHighlight-simple-scaledY.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/gestures/gesture-tapHighlight-simple-scaledY.html
diff --git a/LayoutTests/compositing/gestures/gesture-tapHighlight-simple-scaledY.html b/LayoutTests/compositing/gestures/gesture-tapHighlight-simple-scaledY.html
index bf3f593861e3465f0de51d4c1164781db8590520..6b9855afec57d3d2abe52d4b09736a4a891af57a 100644
--- a/LayoutTests/compositing/gestures/gesture-tapHighlight-simple-scaledY.html
+++ b/LayoutTests/compositing/gestures/gesture-tapHighlight-simple-scaledY.html
@@ -6,13 +6,13 @@
<script src="../../resources/js-test.js"></script>
</head>
<body onload="runTest();">
-<div style="-webkit-transform: scaleY(2.5); position: absolute; left: 40px; top: 80px;">
+<div style="transform: scaleY(2.5); position: absolute; left: 40px; top: 80px;">
<a href="" id="link1">Link 1</a></br>
<a class="opaqueHighlight" href="" id="targetLink">Target Link.</a><br>
<a href="" id="link2">Link 2</a>
</div>
</div>
-<div style="position: relative; left: 10px; top: 200px; -webkit-transform: translateZ(0);">
+<div style="position: relative; left: 10px; top: 200px; transform: translateZ(0);">
This test is successful if "Target Link" above is covered in a green rectangle with square corners.
</div>
<script>

Powered by Google App Engine
This is Rietveld 408576698