| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 .layer { | 4 .layer { |
| 5 -webkit-transform: translateZ(10px); | 5 transform: translateZ(10px); |
| 6 opacity: 0.8; | 6 opacity: 0.8; |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 <script src="../../http/tests/inspector/inspector-test.js"></script> | 9 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 10 <script src="../../http/tests/inspector/layers-test.js"></script> | 10 <script src="../../http/tests/inspector/layers-test.js"></script> |
| 11 <script> | 11 <script> |
| 12 | 12 |
| 13 function updateTree() | 13 function updateTree() |
| 14 { | 14 { |
| 15 document.getElementById("c").appendChild(document.getElementById("b1")); | 15 document.getElementById("c").appendChild(document.getElementById("b1")); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 <div id="a" style="width: 200px; height: 200px" class="layer"> | 65 <div id="a" style="width: 200px; height: 200px" class="layer"> |
| 66 <div class="layer" id="b1" style="width: 150px; height: 100px"></div> | 66 <div class="layer" id="b1" style="width: 150px; height: 100px"></div> |
| 67 <div id="b2" class="layer" style="width: 140px; height: 110px"> | 67 <div id="b2" class="layer" style="width: 140px; height: 110px"> |
| 68 <div id="c" class="layer" style="width: 100px; height: 90px"></div> | 68 <div id="c" class="layer" style="width: 100px; height: 90px"></div> |
| 69 </div> | 69 </div> |
| 70 <div id="b3" class="layer" style="width: 140px; height: 110px"></div> | 70 <div id="b3" class="layer" style="width: 140px; height: 110px"></div> |
| 71 </div> | 71 </div> |
| 72 <iframe id="frame" src="resources/composited-iframe.html" width="200" height="20
0"></div> | 72 <iframe id="frame" src="resources/composited-iframe.html" width="200" height="20
0"></div> |
| 73 </body> | 73 </body> |
| 74 </html> | 74 </html> |
| OLD | NEW |