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

Unified Diff: LayoutTests/inspector/layers/layers-3d-view-hit-testing.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/inspector/layers/layers-3d-view-hit-testing.html
diff --git a/LayoutTests/inspector/layers/layers-3d-view-hit-testing.html b/LayoutTests/inspector/layers/layers-3d-view-hit-testing.html
index a1b3041e11ee6fbc06e19dfab2eae9174b79f621..8acce57105b8053405ef99d1a8ee7cc076060e04 100644
--- a/LayoutTests/inspector/layers/layers-3d-view-hit-testing.html
+++ b/LayoutTests/inspector/layers/layers-3d-view-hit-testing.html
@@ -100,8 +100,8 @@ function test()
</script>
</head>
<body onload="runTest()" style="height:500px;width:500px;">
-<div id="a" style="-webkit-transform:translateZ(0px) translateY(60px) rotateZ(45deg);width:300px;height:300px;margin-left:100px;">
- <div id="b" style="-webkit-transform:translateX(0px) translateY(0px) translateZ(0px) rotateX(45deg) rotateY(45deg);width:300px;height:300px;"></div>
+<div id="a" style="transform:translateZ(0px) translateY(60px) rotateZ(45deg);width:300px;height:300px;margin-left:100px;">
+ <div id="b" style="transform:translateX(0px) translateY(0px) translateZ(0px) rotateX(45deg) rotateY(45deg);width:300px;height:300px;"></div>
</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698