OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script src="../inspector-test.js"></script> |
| 4 <script src="./bindings-test.js"></script> |
| 5 |
| 6 <script> |
| 7 |
| 8 async function test() |
| 9 { |
| 10 InspectorTest.markStep('dumpInitialWorkspace'); |
| 11 InspectorTest.dumpWorkspace(); |
| 12 |
| 13 InspectorTest.markStep('attachFrame'); |
| 14 await InspectorTest.attachFrame('frame', './resources/magic-frame.html', '_t
est_attachFrame.js'); |
| 15 InspectorTest.dumpWorkspace(); |
| 16 |
| 17 InspectorTest.markStep('navigateFrame'); |
| 18 await InspectorTest.navigateFrame('frame', './resources/empty-frame.html', '
_test_navigateFrame'); |
| 19 InspectorTest.dumpWorkspace(); |
| 20 |
| 21 InspectorTest.completeTest(); |
| 22 } |
| 23 |
| 24 </script> |
| 25 |
| 26 </head> |
| 27 <body onload="runTest()"> |
| 28 <p> |
| 29 Verify that UISourceCodes are removed as the frame gets navigated. |
| 30 </p> |
| 31 </body> |
| 32 </html> |
OLD | NEW |