OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script src="../inspector-test.js"></script> |
| 4 <script src="../debugger-test.js"></script> |
| 5 <script src="../workspace-test.js"></script> |
| 6 <script src="../isolated-filesystem-test.js"></script> |
| 7 <script src="./persistence-test.js"></script> |
| 8 <script src="./resources/foo.js"></script> |
| 9 <script> |
| 10 |
| 11 function test() |
| 12 { |
| 13 var sourcesNavigator = new WebInspector.SourcesNavigatorView(); |
| 14 sourcesNavigator.show(WebInspector.inspectorView.element); |
| 15 var fs = new InspectorTest.TestFileSystem("file:///var/www"); |
| 16 var fsEntry = InspectorTest.addFooJSFile(fs); |
| 17 |
| 18 InspectorTest.runTestSuite([ |
| 19 function addFileSystem(next) |
| 20 { |
| 21 fs.reportCreated(next); |
| 22 }, |
| 23 |
| 24 function waitForUISourceCodes(next) |
| 25 { |
| 26 var promises = [ |
| 27 InspectorTest.waitForUISourceCode("foo.js", WebInspector.project
Types.Network), |
| 28 InspectorTest.waitForUISourceCode("foo.js", WebInspector.project
Types.FileSystem) |
| 29 ]; |
| 30 Promise.all(promises).then(onUISourceCodesAdded); |
| 31 |
| 32 function onUISourceCodesAdded() |
| 33 { |
| 34 InspectorTest.dumpNavigatorView(sourcesNavigator); |
| 35 next(); |
| 36 } |
| 37 }, |
| 38 |
| 39 function addFileMapping(next) |
| 40 { |
| 41 InspectorTest.waitForBinding("foo.js").then(onBindingCreated); |
| 42 WebInspector.fileSystemMapping.addFileMapping(fs.fileSystemPath, "ht
tp://127.0.0.1:8000", "/"); |
| 43 |
| 44 function onBindingCreated(binding) |
| 45 { |
| 46 InspectorTest.dumpNavigatorView(sourcesNavigator); |
| 47 next(); |
| 48 } |
| 49 }, |
| 50 |
| 51 function removeFileMapping(next) |
| 52 { |
| 53 WebInspector.persistence.addEventListener(WebInspector.Persistence.E
vents.BindingRemoved, onBindingRemoved); |
| 54 WebInspector.fileSystemMapping.removeFileMapping(fs.fileSystemPath,
"http://127.0.0.1:8000", "/"); |
| 55 |
| 56 function onBindingRemoved(event) |
| 57 { |
| 58 var binding = event.data; |
| 59 if (binding.network.name() !== "foo.js") |
| 60 return |
| 61 WebInspector.persistence.removeEventListener(WebInspector.Persis
tence.Events.BindingRemoved, onBindingRemoved); |
| 62 InspectorTest.dumpNavigatorView(sourcesNavigator); |
| 63 next(); |
| 64 } |
| 65 }, |
| 66 ]); |
| 67 }; |
| 68 </script> |
| 69 </head> |
| 70 <body onload="runTest()"> |
| 71 <p>Verify that navigator view removes mapped UISourceCodes.</p> |
| 72 </body> |
| 73 </html> |
OLD | NEW |