| 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 | 14 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 InspectorTest.addResult(" " + uiLocation.uiSourceCode.url() +":"
+ uiLocation.lineNumber); | 70 InspectorTest.addResult(" " + uiLocation.uiSourceCode.url() +":"
+ uiLocation.lineNumber); |
| 72 } | 71 } |
| 73 } | 72 } |
| 74 }; | 73 }; |
| 75 </script> | 74 </script> |
| 76 </head> | 75 </head> |
| 77 <body onload="runTest()"> | 76 <body onload="runTest()"> |
| 78 <p>Verify that breakpoints are moved appropriately</p> | 77 <p>Verify that breakpoints are moved appropriately</p> |
| 79 </body> | 78 </body> |
| 80 </html> | 79 </html> |
| OLD | NEW |