| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> | 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> |
| 5 <script src="resources/unformatted2.js"></script> | 5 <script src="../debugger/resources/unformatted2.js"></script> |
| 6 <script> | 6 <script> |
| 7 var test = function() | 7 var test = function() |
| 8 { | 8 { |
| 9 WebInspector.breakpointManager._storage._breakpoints = {}; | 9 WebInspector.breakpointManager._storage._breakpoints = {}; |
| 10 var panel = WebInspector.panels.sources; | 10 var panel = WebInspector.panels.sources; |
| 11 var scriptFormatter; | 11 var scriptFormatter; |
| 12 var formattedSourceFrame; | 12 var formattedSourceFrame; |
| 13 | 13 |
| 14 InspectorTest.runDebuggerTestSuite([ | 14 InspectorTest.runDebuggerTestSuite([ |
| 15 function testSetup(next) | 15 function testSetup(next) |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 ]); | 50 ]); |
| 51 | 51 |
| 52 } | 52 } |
| 53 </script> | 53 </script> |
| 54 </head> | 54 </head> |
| 55 <body onload="runTest()"> | 55 <body onload="runTest()"> |
| 56 <p>Tests the script formatting is working fine with breakpoints. | 56 <p>Tests the script formatting is working fine with breakpoints. |
| 57 </p> | 57 </p> |
| 58 </body> | 58 </body> |
| 59 </html> | 59 </html> |
| OLD | NEW |