OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
4 <script src="../../http/tests/inspector/layers-test.js"></script> | 4 <script src="../../http/tests/inspector/layers-test.js"></script> |
5 <script> | 5 <script> |
6 function test() | 6 function test() |
7 { | 7 { |
8 var contentRoot; | 8 var contentRoot; |
9 var layers; | 9 var layers; |
10 var rootOffsetXInPixels, rootOffsetYInPixels, rootHeightInPixels, rootWidthI
nPixels; | 10 var rootOffsetXInPixels, rootOffsetYInPixels, rootHeightInPixels, rootWidthI
nPixels; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 dumpOutlinedStateForLayers(); | 93 dumpOutlinedStateForLayers(); |
94 | 94 |
95 InspectorTest.completeTest(); | 95 InspectorTest.completeTest(); |
96 } | 96 } |
97 | 97 |
98 InspectorTest.requestLayers(onGotLayers); | 98 InspectorTest.requestLayers(onGotLayers); |
99 } | 99 } |
100 </script> | 100 </script> |
101 </head> | 101 </head> |
102 <body onload="runTest()" style="height:500px;width:500px;"> | 102 <body onload="runTest()" style="height:500px;width:500px;"> |
103 <div id="a" style="-webkit-transform:translateZ(0px) translateY(60px) rotateZ(45
deg);width:300px;height:300px;margin-left:100px;"> | 103 <div id="a" style="transform:translateZ(0px) translateY(60px) rotateZ(45deg);wid
th:300px;height:300px;margin-left:100px;"> |
104 <div id="b" style="-webkit-transform:translateX(0px) translateY(0px) transla
teZ(0px) rotateX(45deg) rotateY(45deg);width:300px;height:300px;"></div> | 104 <div id="b" style="transform:translateX(0px) translateY(0px) translateZ(0px)
rotateX(45deg) rotateY(45deg);width:300px;height:300px;"></div> |
105 </div> | 105 </div> |
106 </body> | 106 </body> |
107 </html> | 107 </html> |
OLD | NEW |