| 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/inspecto
r-protocol-test.js"></script> | 4 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/inspector-protocol-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-trigger-animation.html"; | 9 frame.src = "../resources/test-page-trigger-animation.html"; |
| 10 document.body.appendChild(frame); | 10 document.body.appendChild(frame); |
| 11 } | 11 } |
| 12 | 12 |
| 13 function test() | 13 function test() |
| 14 { | 14 { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 InspectorTest.evaluateInPage("appendIframe()", frameAttached); | 38 InspectorTest.evaluateInPage("appendIframe()", frameAttached); |
| 39 else | 39 else |
| 40 InspectorTest.completeTest(); | 40 InspectorTest.completeTest(); |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 </script> | 43 </script> |
| 44 </head> | 44 </head> |
| 45 <body onload="runTest()"> | 45 <body onload="runTest()"> |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| OLD | NEW |