| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script type="text/javascript" src="../http/tests/inspector-protocol/resources/p
rotocol-test.js"></script> | 4 <script type="text/javascript" src="../http/tests/inspector-protocol/inspector-p
rotocol-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 function appendIframe() | 6 function appendIframe() |
| 7 { | 7 { |
| 8 var frame = document.createElement("iframe"); | 8 var frame = document.createElement("iframe"); |
| 9 frame.src = "resources/test-page-with-debugger-statement.html"; | 9 frame.src = "resources/test-page-with-debugger-statement.html"; |
| 10 document.body.appendChild(frame); | 10 document.body.appendChild(frame); |
| 11 } | 11 } |
| 12 | 12 |
| 13 function test() | 13 function test() |
| 14 { | 14 { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 InspectorTest.log("FAIL: Iframe load event fired before the test finishe
d."); | 80 InspectorTest.log("FAIL: Iframe load event fired before the test finishe
d."); |
| 81 } | 81 } |
| 82 | 82 |
| 83 step1_bootstrap() | 83 step1_bootstrap() |
| 84 } | 84 } |
| 85 </script> | 85 </script> |
| 86 </head> | 86 </head> |
| 87 <body onload="runTest()"> | 87 <body onload="runTest()"> |
| 88 </body> | 88 </body> |
| 89 </html> | 89 </html> |
| OLD | NEW |