| 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 var fs = new InspectorTest.TestFileSystem("file:///var/www"); | 12 var fs = new InspectorTest.TestFileSystem("file:///var/www"); |
| 14 InspectorTest.addFooJSFile(fs); | 13 InspectorTest.addFooJSFile(fs); |
| 15 fs.reportCreated(function() { }); | 14 fs.reportCreated(function() { }); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 InspectorTest.addResult(keys.join("\n")); | 52 InspectorTest.addResult(keys.join("\n")); |
| 54 UI.Dialog._instance.detach(); | 53 UI.Dialog._instance.detach(); |
| 55 } | 54 } |
| 56 }; | 55 }; |
| 57 </script> | 56 </script> |
| 58 </head> | 57 </head> |
| 59 <body onload="runTest()"> | 58 <body onload="runTest()"> |
| 60 <p>Verify that GoTo source dialog filters out mapped uiSourceCodes.</p> | 59 <p>Verify that GoTo source dialog filters out mapped uiSourceCodes.</p> |
| 61 </body> | 60 </body> |
| 62 </html> | 61 </html> |
| OLD | NEW |