| 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 updateGeometry() | 13 function updateGeometry() |
| 14 { | 14 { |
| 15 document.getElementById("a").style.width = "300px"; | 15 document.getElementById("a").style.width = "300px"; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 </script> | 44 </script> |
| 45 </head> | 45 </head> |
| 46 <body onload="runTest()"> | 46 <body onload="runTest()"> |
| 47 <div id="a" style="width: 200px; height: 200px" class="layer"> | 47 <div id="a" style="width: 200px; height: 200px" class="layer"> |
| 48 </div> | 48 </div> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |