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

Side by Side Diff: LayoutTests/compositing/visible-rect/3d-transformed.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 margin: 10px;
13 -webkit-perspective: 800px;
14 -webkit-perspective-origin: 50px 50px;
15 }
16
17 .box {
18 position: absolute;
19 width: 500px;
20 height: 500px;
21 background-color: blue;
22 -webkit-transform-origin: 102px 102px;
23 }
24 </style>
25 <script>
26 if (window.testRunner)
27 testRunner.dumpAsText();
28
29 function dumpLayers()
30 {
31 if (window.internals)
32 document.getElementById('layers').innerText = internals.layerTre eAsText(document, internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS)
33 }
34 window.addEventListener('load', dumpLayers, false);
35 </script>
36 </head>
37 <body>
38
39 <div class="container">
40 <div class="box" style="-webkit-transform: rotateX(45deg);"></div>
41 </div>
42
43 <div class="container">
44 <div class="box" style="-webkit-transform: rotateY(-45deg)"></div>
45 </div>
46
47 <pre id="layers">Layer tree goes here when testing</pre>
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698