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

Unified Diff: LayoutTests/transforms/3d/hit-testing/coplanar-with-camera.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/transforms/3d/hit-testing/coplanar-with-camera.html
diff --git a/LayoutTests/transforms/3d/hit-testing/coplanar-with-camera.html b/LayoutTests/transforms/3d/hit-testing/coplanar-with-camera.html
index a6311adabb358e891bb2ca69b033639d5ce23445..c060d5c0411ebc60eefdf7bfa34095481f603ecf 100644
--- a/LayoutTests/transforms/3d/hit-testing/coplanar-with-camera.html
+++ b/LayoutTests/transforms/3d/hit-testing/coplanar-with-camera.html
@@ -17,7 +17,7 @@
#container {
-webkit-transform-style: preserve-3d;
- -webkit-transform: translateZ(800px)
+ transform: translateZ(800px)
}
#layer {
@@ -27,7 +27,7 @@
background-color: green;
/* This should theoretically cancel out the container's transform, and hit-testing should work. */
- -webkit-transform: translateZ(-800px);
+ transform: translateZ(-800px);
}
#background {

Powered by Google App Engine
This is Rietveld 408576698