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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <style>
6 .container {
7 position: relative;
8 height: 200px;
9 width: 200px;
10 border: 2px solid rgba(0, 0, 0, 0.2);
11 overflow: hidden;
12 z-index: 0;
13 margin: 10px;
14 -webkit-perspective: 800px;
15 -webkit-perspective-origin: 50px 50px;
16 }
17
18 .intermediate {
19 -webkit-transform-style: preserve-3d;
20 }
21
22 .box {
23 position: absolute;
24 width: 300px;
25 height: 300px;
26 background-color: blue;
27 }
28 </style>
29 <script>
30 if (window.testRunner)
31 testRunner.dumpAsText();
32
33 function dumpLayers()
34 {
35 if (window.internals)
36 document.getElementById('layers').innerText = internals.layerTre eAsText(document, internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS)
37 }
38 window.addEventListener('load', dumpLayers, false);
39 </script>
40 </head>
41 <body>
42
43 <div class="container">
44 <div class="intermediate">
45 <div class="box" style="-webkit-transform: rotateX(25deg);"></div>
46 </div>
47 </div>
48
49 <div class="container">
50 <div class="intermediate">
51 <div class="box" style="-webkit-transform: rotateY(-25deg)"></div>
52 </div>
53 </div>
54
55 <pre id="layers">Layer tree goes here when testing</pre>
56 </body>
57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698