| 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 var networkSourceFrame, fileSystemSourceFrame; | 14 var networkSourceFrame, fileSystemSourceFrame; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 InspectorTest.addResult(" firstVisibleLine: " + sourceFrame.textEdito
r.firstVisibleLine()); | 104 InspectorTest.addResult(" firstVisibleLine: " + sourceFrame.textEdito
r.firstVisibleLine()); |
| 106 InspectorTest.addResult(" isDirty: " + sourceFrame.uiSourceCode().isD
irty()); | 105 InspectorTest.addResult(" isDirty: " + sourceFrame.uiSourceCode().isD
irty()); |
| 107 } | 106 } |
| 108 }; | 107 }; |
| 109 </script> | 108 </script> |
| 110 </head> | 109 </head> |
| 111 <body onload="runTest()"> | 110 <body onload="runTest()"> |
| 112 <p>Verify that tabs get merged and split when binding is added and removed.</p> | 111 <p>Verify that tabs get merged and split when binding is added and removed.</p> |
| 113 </body> | 112 </body> |
| 114 </html> | 113 </html> |
| OLD | NEW |