| 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="../search/search-test.js"></script> | 5 <script src="../search/search-test.js"></script> |
| 7 <script src="../isolated-filesystem-test.js"></script> | 6 <script src="../isolated-filesystem-test.js"></script> |
| 8 <script src="./persistence-test.js"></script> | 7 <script src="./persistence-test.js"></script> |
| 9 <script src="./resources/foo.js"></script> | 8 <script src="./resources/foo.js"></script> |
| 10 <script> | 9 <script> |
| 11 | 10 |
| 12 function test() | 11 function test() |
| 13 { | 12 { |
| 14 var fs = new InspectorTest.TestFileSystem("file:///var/www"); | 13 var fs = new InspectorTest.TestFileSystem("file:///var/www"); |
| 15 var fsEntry = InspectorTest.addFooJSFile(fs); | 14 var fsEntry = InspectorTest.addFooJSFile(fs); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 Workspace.isolatedFileSystemManager._onSearchCompleted({data: {reque
stId: requestId, fileSystemPath: path, files: paths}}); | 51 Workspace.isolatedFileSystemManager._onSearchCompleted({data: {reque
stId: requestId, fileSystemPath: path, files: paths}}); |
| 53 } | 52 } |
| 54 } | 53 } |
| 55 }; | 54 }; |
| 56 </script> | 55 </script> |
| 57 </head> | 56 </head> |
| 58 <body onload="runTest()"> | 57 <body onload="runTest()"> |
| 59 <p>Verify that search across all files omits filesystem uiSourceCodes with bindi
ng to network.</p> | 58 <p>Verify that search across all files omits filesystem uiSourceCodes with bindi
ng to network.</p> |
| 60 </body> | 59 </body> |
| 61 </html> | 60 </html> |
| OLD | NEW |