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"; |
11 var element = document.getElementById("testElement"); | 11 var element = document.getElementById("testElement"); |
12 element.style.width = "100px"; | 12 element.style.width = "100px"; |
13 var forceLayout = document.body.offsetTop; | 13 var forceLayout = document.body.offsetTop; |
14 element.parentElement.removeChild(element); | 14 element.parentElement.removeChild(element); |
15 if (window.testRunner) | 15 if (window.testRunner) |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 next(); | 61 next(); |
62 }); | 62 }); |
63 } | 63 } |
64 ]); | 64 ]); |
65 } | 65 } |
66 </script> | 66 </script> |
67 </head> | 67 </head> |
68 <body onload="runTest()"> | 68 <body onload="runTest()"> |
69 <p>Tests the Timeline API instrumentation of layout invalidations on a deleted n
ode.</p> | 69 <p>Tests the Timeline API instrumentation of layout invalidations on a deleted n
ode.</p> |
70 <div id="testElement">FAIL - this should not be present when the test finishes.<
/div> | 70 <div id="testElement">FAIL - this should not be present when the test finishes.<
/div> |
71 <iframe src="resources/timeline-iframe-paint.html" style="position: absolute; le
ft: 40px; top: 40px; width: 100px; height: 100px; border: none"></iframe> | 71 <iframe src="../resources/timeline-iframe-paint.html" style="position: absolute;
left: 40px; top: 40px; width: 100px; height: 100px; border: none"></iframe> |
72 </body> | 72 </body> |
73 </html> | 73 </html> |
OLD | NEW |