| 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="../console-test.js"></script> | 5 <script src="../console-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 InspectorTest.addFooJSFile(fs); | 14 InspectorTest.addFooJSFile(fs); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 37 next(); | 36 next(); |
| 38 }, | 37 }, |
| 39 ]); | 38 ]); |
| 40 }; | 39 }; |
| 41 </script> | 40 </script> |
| 42 </head> | 41 </head> |
| 43 <body onload="runTest()"> | 42 <body onload="runTest()"> |
| 44 <p>Verify that dirty uiSourceCodes are not bound.</p> | 43 <p>Verify that dirty uiSourceCodes are not bound.</p> |
| 45 </body> | 44 </body> |
| 46 </html> | 45 </html> |
| OLD | NEW |