| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | |
| 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> | |
| 5 <script src="resources/unformatted3.js"></script> | |
| 6 <script> | |
| 7 var test = function() | |
| 8 { | |
| 9 WebInspector.breakpointManager._storage._breakpoints = {}; | |
| 10 var panel = WebInspector.panels.sources; | |
| 11 var scriptFormatter; | |
| 12 | |
| 13 InspectorTest.runDebuggerTestSuite([ | |
| 14 function testSetup(next) | |
| 15 { | |
| 16 InspectorTest.scriptFormatter().then(function(sf) { | |
| 17 scriptFormatter = sf; | |
| 18 next(); | |
| 19 }); | |
| 20 }, | |
| 21 | |
| 22 function testBreakpointsSetInFormattedAndRemoveInOriginalSource(next) | |
| 23 { | |
| 24 InspectorTest.showScriptSource("unformatted3.js", didShowScriptSourc
e); | |
| 25 | |
| 26 function didShowScriptSource(frame) | |
| 27 { | |
| 28 InspectorTest.addSniffer(WebInspector.ScriptFormatterEditorActio
n.prototype, "_updateButton", uiSourceCodeScriptFormatted); | |
| 29 scriptFormatter._toggleFormatScriptSource(); | |
| 30 } | |
| 31 | |
| 32 function uiSourceCodeScriptFormatted() | |
| 33 { | |
| 34 var formattedSourceFrame = panel.visibleView; | |
| 35 InspectorTest.setBreakpoint(formattedSourceFrame, 3, "", true); | |
| 36 InspectorTest.waitUntilPaused(pausedInF2); | |
| 37 InspectorTest.evaluateInPageWithTimeout("f2()"); | |
| 38 } | |
| 39 | |
| 40 function pausedInF2(callFrames) | |
| 41 { | |
| 42 InspectorTest.dumpBreakpointSidebarPane("while paused in pretty
printed"); | |
| 43 scriptFormatter._discardFormattedUISourceCodeScript(panel.visibl
eView.uiSourceCode()); | |
| 44 InspectorTest.dumpBreakpointSidebarPane("while paused in raw"); | |
| 45 // No need to remove breakpoint since formattedUISourceCode was
removed. | |
| 46 InspectorTest.resumeExecution(next); | |
| 47 } | |
| 48 } | |
| 49 ]); | |
| 50 | |
| 51 } | |
| 52 </script> | |
| 53 </head> | |
| 54 <body onload="runTest()"> | |
| 55 <p>Tests the script formatting is working fine with breakpoints. | |
| 56 </p> | |
| 57 </body> | |
| 58 </html> | |
| OLD | NEW |