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

Unified Diff: LayoutTests/compositing/visible-rect/3d-transform-style.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/visible-rect/3d-transform-style.html
diff --git a/LayoutTests/compositing/visible-rect/3d-transform-style.html b/LayoutTests/compositing/visible-rect/3d-transform-style.html
deleted file mode 100644
index b8a67370a690c59a4198b36e995a0d6fae2f8a1e..0000000000000000000000000000000000000000
--- a/LayoutTests/compositing/visible-rect/3d-transform-style.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style>
- .container {
- position: relative;
- height: 200px;
- width: 200px;
- border: 2px solid rgba(0, 0, 0, 0.2);
- overflow: hidden;
- z-index: 0;
- margin: 10px;
- -webkit-perspective: 800px;
- -webkit-perspective-origin: 50px 50px;
- }
-
- .intermediate {
- -webkit-transform-style: preserve-3d;
- }
-
- .box {
- position: absolute;
- width: 300px;
- height: 300px;
- background-color: blue;
- }
- </style>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function dumpLayers()
- {
- if (window.internals)
- document.getElementById('layers').innerText = internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS)
- }
- window.addEventListener('load', dumpLayers, false);
- </script>
-</head>
-<body>
-
- <div class="container">
- <div class="intermediate">
- <div class="box" style="-webkit-transform: rotateX(25deg);"></div>
- </div>
- </div>
-
- <div class="container">
- <div class="intermediate">
- <div class="box" style="-webkit-transform: rotateY(-25deg)"></div>
- </div>
- </div>
-
-<pre id="layers">Layer tree goes here when testing</pre>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698