| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 .layer { | 4 .layer { |
| 5 position: absolute; | 5 position: absolute; |
| 6 -webkit-transform: translateZ(10px); | 6 transform: translateZ(10px); |
| 7 opacity: 0.8; | 7 opacity: 0.8; |
| 8 left: 20px; | 8 left: 20px; |
| 9 top: 20px; | 9 top: 20px; |
| 10 } | 10 } |
| 11 </style> | 11 </style> |
| 12 <script src="../../http/tests/inspector/inspector-test.js"></script> | 12 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 13 <script src="../../http/tests/inspector/layers-test.js"></script> | 13 <script src="../../http/tests/inspector/layers-test.js"></script> |
| 14 <script> | 14 <script> |
| 15 function initialize_LayersPanelnMouseEvents() | 15 function initialize_LayersPanelnMouseEvents() |
| 16 { | 16 { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 <body onload="runTest()"> | 87 <body onload="runTest()"> |
| 88 <div id="a" style="width: 200px; height: 200px" class="layer"> | 88 <div id="a" style="width: 200px; height: 200px" class="layer"> |
| 89 <div class="layer" id="b1" style="width: 150px; height: 100px"></div> | 89 <div class="layer" id="b1" style="width: 150px; height: 100px"></div> |
| 90 <div id="b2" class="layer" style="width: 140px; height: 110px"> | 90 <div id="b2" class="layer" style="width: 140px; height: 110px"> |
| 91 <div id="b3" class="layer" style="width: 140px; height: 110px;"></div> | 91 <div id="b3" class="layer" style="width: 140px; height: 110px;"></div> |
| 92 <div id="c" class="layer" style="width: 100px; height: 90px"></div> | 92 <div id="c" class="layer" style="width: 100px; height: 90px"></div> |
| 93 </div> | 93 </div> |
| 94 </div> | 94 </div> |
| 95 </body> | 95 </body> |
| OLD | NEW |