| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../inspector/inspector-test.js"></script> | 3 <script src="../inspector/inspector-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 function onload() | 6 function onload() |
| 7 { | 7 { |
| 8 testRunner.showWebInspector(JSON.stringify({lastActivePanel:"\"console\"", o
verrideUserAgent: "true", userAgent: "\"some user agent\"", drawerEditorShown: "
false"})); | 8 testRunner.showWebInspector(JSON.stringify({lastActivePanel:"\"console\"", e
mulationEnabled: "true", drawerEditorShown: "false"})); |
| 9 runTest(); | 9 runTest(); |
| 10 } | 10 } |
| 11 | 11 |
| 12 function test() | 12 function test() |
| 13 { | 13 { |
| 14 InspectorTest.dumpLoadedModules(); | 14 InspectorTest.dumpLoadedModules(); |
| 15 InspectorTest.completeTest(); | 15 InspectorTest.completeTest(); |
| 16 } | 16 } |
| 17 | 17 |
| 18 </script> | 18 </script> |
| 19 </head> | 19 </head> |
| 20 | 20 |
| 21 <body onload="onload()"> | 21 <body onload="onload()"> |
| 22 <p>This test checks that loading with emulation turned on by default loads eleme
nts module.</p> | 22 <p>This test checks that loading with emulation turned on by default loads eleme
nts module.</p> |
| 23 </body> | 23 </body> |
| 24 </html> | 24 </html> |
| OLD | NEW |