| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../http/tests/inspector/debugger-test.js"></script> | 4 <script src="../../http/tests/inspector/debugger-test.js"></script> |
| 5 <script src="../../http/tests/inspector/workspace-test.js"></script> | |
| 6 <script> | 5 <script> |
| 7 function test() | 6 function test() |
| 8 { | 7 { |
| 9 var contentScriptsNavigatorView = new Sources.ContentScriptsNavigatorView(); | 8 var contentScriptsNavigatorView = new Sources.ContentScriptsNavigatorView(); |
| 10 contentScriptsNavigatorView.show(UI.inspectorView.element); | 9 contentScriptsNavigatorView.show(UI.inspectorView.element); |
| 11 | 10 |
| 12 var mockExecutionContext = { | 11 var mockExecutionContext = { |
| 13 id: 1234567, | 12 id: 1234567, |
| 14 isDefault: false, | 13 isDefault: false, |
| 15 origin: "chrome-extension://113581321345589144", | 14 origin: "chrome-extension://113581321345589144", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 28 }, | 27 }, |
| 29 ]); | 28 ]); |
| 30 } | 29 } |
| 31 | 30 |
| 32 </script> | 31 </script> |
| 33 </head> | 32 </head> |
| 34 <body onload="runTest()"> | 33 <body onload="runTest()"> |
| 35 <p>The test verifies that extension names are resolved properly in navigator vie
w.</p> | 34 <p>The test verifies that extension names are resolved properly in navigator vie
w.</p> |
| 36 </body> | 35 </body> |
| 37 </html> | 36 </html> |
| OLD | NEW |