| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../http/tests/inspector/inspector-test.js"></script> | 4 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 5 <script src="../../http/tests/inspector/timeline-test.js"></script> | 5 <script src="../../http/tests/inspector/timeline-test.js"></script> |
| 6 <script> | 6 <script> |
| 7 function display(callback) | 7 function display(callback) |
| 8 { | 8 { |
| 9 requestAnimationFrame(function() { | 9 requestAnimationFrame(function() { |
| 10 document.body.style.backgroundColor = "blue"; | 10 document.body.style.backgroundColor = "blue"; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ]); | 92 ]); |
| 93 } | 93 } |
| 94 </script> | 94 </script> |
| 95 </head> | 95 </head> |
| 96 <body onload="runTest()"> | 96 <body onload="runTest()"> |
| 97 <p>Tests the Timeline API instrumentation of layout invalidations on a deleted n
ode.</p> | 97 <p>Tests the Timeline API instrumentation of layout invalidations on a deleted n
ode.</p> |
| 98 <div id="testElement">FAIL - this should not be present when the test finishes.<
/div> | 98 <div id="testElement">FAIL - this should not be present when the test finishes.<
/div> |
| 99 <iframe src="resources/timeline-iframe-paint.html" style="position: absolute; le
ft: 40px; top: 40px; width: 100px; height: 100px; border: none"></iframe> | 99 <iframe src="resources/timeline-iframe-paint.html" style="position: absolute; le
ft: 40px; top: 40px; width: 100px; height: 100px; border: none"></iframe> |
| 100 </body> | 100 </body> |
| 101 </html> | 101 </html> |
| OLD | NEW |