| 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/console-test.js"></script> | 4 <script src="../../../http/tests/inspector/console-test.js"></script> |
| 5 <script src="../../../http/tests/inspector/debugger-test.js"></script> | 5 <script src="../../../http/tests/inspector/debugger-test.js"></script> |
| 6 <script src="../../../http/tests/inspector/network-test.js"></script> | 6 <script src="../../../http/tests/inspector/network-test.js"></script> |
| 7 <script src="../../../http/tests/inspector/resources-test.js"></script> | 7 <script src="../../../http/tests/inspector/resources-test.js"></script> |
| 8 <script> | 8 <script> |
| 9 function addErrorToConsole() | 9 function addErrorToConsole() |
| 10 { | 10 { |
| 11 console.error("test error message"); | 11 console.error("test error message"); |
| 12 } | 12 } |
| 13 | 13 |
| 14 function methodForBreakpoint() | 14 function methodForBreakpoint() |
| 15 { | 15 { |
| 16 alert("Hello world"); | 16 alert("Hello world"); |
| 17 } | 17 } |
| 18 | 18 |
| 19 function test() | 19 function test() |
| 20 { | 20 { |
| 21 UI.viewManager.showView("resources"); | 21 UI.viewManager.showView("resources"); |
| 22 InspectorTest.runDebuggerTestSuite([ | 22 InspectorTest.runDebuggerTestSuite([ |
| 23 function testSetBreakpoint(next) | |
| 24 { | |
| 25 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou
rce); | |
| 26 | |
| 27 function didShowScriptSource(sourceFrame) | |
| 28 { | |
| 29 InspectorTest.addResult("Script source was shown."); | |
| 30 InspectorTest.addSniffer(Sources.JavaScriptSourceFrame.prototype
, "_addBreakpointDecoration", didAddBreakpoint); | |
| 31 InspectorTest.setBreakpoint(sourceFrame, 14, "", true); | |
| 32 } | |
| 33 | |
| 34 function didAddBreakpoint(lineNumber) | |
| 35 { | |
| 36 InspectorTest.addResult("Breakpoint added to source frame at lin
e " + lineNumber); | |
| 37 next(); | |
| 38 } | |
| 39 }, | |
| 40 | |
| 41 function testConsoleMessage(next) | 23 function testConsoleMessage(next) |
| 42 { | 24 { |
| 43 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou
rce); | 25 InspectorTest.showScriptSource("source-frame.html", didShowScriptSou
rce); |
| 44 | 26 |
| 45 var shownSourceFrame; | 27 var shownSourceFrame; |
| 46 function didShowScriptSource(sourceFrame) | 28 function didShowScriptSource(sourceFrame) |
| 47 { | 29 { |
| 48 InspectorTest.addResult("Script source was shown."); | 30 InspectorTest.addResult("Script source was shown."); |
| 49 shownSourceFrame = sourceFrame; | 31 shownSourceFrame = sourceFrame; |
| 50 InspectorTest.addSniffer(Sources.UISourceCodeFrame.prototype, "_
addMessageToSource", didAddMessage); | 32 InspectorTest.addSniffer(Sources.UISourceCodeFrame.prototype, "_
addMessageToSource", didAddMessage); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 77 |
| 96 </head> | 78 </head> |
| 97 | 79 |
| 98 <body onload="runTest()"> | 80 <body onload="runTest()"> |
| 99 <p>Tests that it's possible to set breakpoint in source frame, and that | 81 <p>Tests that it's possible to set breakpoint in source frame, and that |
| 100 source frame displays breakpoints and console errors. | 82 source frame displays breakpoints and console errors. |
| 101 </p> | 83 </p> |
| 102 | 84 |
| 103 </body> | 85 </body> |
| 104 </html> | 86 </html> |
| OLD | NEW |