| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../inspector-test.js"></script> | 3 <script src="../inspector-test.js"></script> |
| 4 <script src="../debugger-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> | 5 <script src="../isolated-filesystem-test.js"></script> |
| 7 <script src="./persistence-test.js"></script> | 6 <script src="./persistence-test.js"></script> |
| 8 <script src="./resources/foo.js"></script> | 7 <script src="./resources/foo.js"></script> |
| 9 <script> | 8 <script> |
| 10 | 9 |
| 11 function test() | 10 function test() |
| 12 { | 11 { |
| 13 Runtime.experiments.enableForTest("persistence2"); | 12 Runtime.experiments.enableForTest("persistence2"); |
| 14 var sourcesNavigator = new Sources.SourcesNavigatorView(); | 13 var sourcesNavigator = new Sources.SourcesNavigatorView(); |
| 15 sourcesNavigator.show(UI.inspectorView.element); | 14 sourcesNavigator.show(UI.inspectorView.element); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 } | 64 } |
| 66 }, | 65 }, |
| 67 ]); | 66 ]); |
| 68 }; | 67 }; |
| 69 </script> | 68 </script> |
| 70 </head> | 69 </head> |
| 71 <body onload="runTest()"> | 70 <body onload="runTest()"> |
| 72 <p>Verify that navigator view removes mapped UISourceCodes.</p> | 71 <p>Verify that navigator view removes mapped UISourceCodes.</p> |
| 73 </body> | 72 </body> |
| 74 </html> | 73 </html> |
| OLD | NEW |