| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style type="text/css"> | 3 <style type="text/css"> |
| 4 .composited { | 4 .composited { |
| 5 position: absolute; | 5 position: absolute; |
| 6 top: 25px; | 6 top: 25px; |
| 7 left: 25px; | 7 left: 25px; |
| 8 width: 50px; | 8 width: 50px; |
| 9 height: 50px; | 9 height: 50px; |
| 10 background-color: blue; | 10 background-color: blue; |
| 11 transform: translateZ(10px); | 11 transform: translateZ(10px); |
| 12 } | 12 } |
| 13 </style> | 13 </style> |
| 14 <script type="application/x-javascript" src="../../http/tests/inspector-protocol
/inspector-protocol-test.js"></script> | 14 <script type="application/x-javascript" src="../../http/tests/inspector-protocol
/resources/inspector-protocol-test.js"></script> |
| 15 <script type="application/x-javascript" src="layer-protocol-test.js"></script> | 15 <script type="application/x-javascript" src="../resources/layer-protocol-test.js
"></script> |
| 16 <script type="application/x-javascript"> | 16 <script type="application/x-javascript"> |
| 17 | 17 |
| 18 function test() | 18 function test() |
| 19 { | 19 { |
| 20 var documentNode; | 20 var documentNode; |
| 21 var initialLayers; | 21 var initialLayers; |
| 22 var modifiedLayers; | 22 var modifiedLayers; |
| 23 | 23 |
| 24 InspectorTest.enableLayerTreeAgent(gotLayerTree); | 24 InspectorTest.enableLayerTreeAgent(gotLayerTree); |
| 25 | 25 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 57 } |
| 58 | 58 |
| 59 </script> | 59 </script> |
| 60 <body onload="runTest()"> | 60 <body onload="runTest()"> |
| 61 <div class="composited"> | 61 <div class="composited"> |
| 62 Sanity test for DevTools Paint Profiler. | 62 Sanity test for DevTools Paint Profiler. |
| 63 </div> | 63 </div> |
| 64 </body> | 64 </body> |
| 65 </html> | 65 </html> |
| 66 | 66 |
| OLD | NEW |