| 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 var fsEntry = InspectorTest.addFooJSFile(fs); | 13 var fsEntry = InspectorTest.addFooJSFile(fs); |
| 15 fs.addFileMapping("http://127.0.0.1:8000", "/"); | 14 fs.addFileMapping("http://127.0.0.1:8000", "/"); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 31 InspectorTest.completeTest(); | 30 InspectorTest.completeTest(); |
| 32 } | 31 } |
| 33 | 32 |
| 34 }; | 33 }; |
| 35 </script> | 34 </script> |
| 36 </head> | 35 </head> |
| 37 <body onload="runTest()"> | 36 <body onload="runTest()"> |
| 38 <p>Verify that binding gets removed as the fileSystem file gets renamed.</p> | 37 <p>Verify that binding gets removed as the fileSystem file gets renamed.</p> |
| 39 </body> | 38 </body> |
| 40 </html> | 39 </html> |
| OLD | NEW |