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

Side by Side Diff: LayoutTests/compositing/visible-rect/2d-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: 500px;
10 border: 1px solid black;
11 overflow: hidden;
12 z-index: 0;
13 }
14
15 .box {
16 position: absolute;
17 width: 200px;
18 height: 200px;
19 background-color: blue;
20 }
21 </style>
22 <script>
23 if (window.testRunner)
24 testRunner.dumpAsText();
25
26 function dumpLayers()
27 {
28 if (window.internals)
29 document.getElementById('layers').innerText = internals.layerTre eAsText(document, internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS)
30 }
31 window.addEventListener('load', dumpLayers, false);
32 </script>
33 </head>
34 <body>
35
36 <div class="container">
37 <div class="box" style="-webkit-transform: translate3d(-100px, 0, 0)"></ div>
38 <div class="box" style="-webkit-transform: translate3d(150px, 0, 0) rota te(45deg)"></div>
39 <div class="box" style="-webkit-transform: translate3d(400px, 0, 0)"></d iv>
40 </div>
41
42 <pre id="layers">Layer tree goes here when testing</pre>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698