blob: 4c4dfd0e86f271fbdd4e29bba3386a65cb6b5797 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
Tests the script formatting is working fine with breakpoints.
Debugger was enabled.
Running: testBreakpointsInOriginalAndFormattedSource
Script execution paused.
Breakpoint sidebar pane while paused in raw
script-formatter-breakpoints.html:12
var f=0;
Script execution resumed.
Script execution paused.
Breakpoint sidebar pane while paused in pretty printed
script-formatter-breakpoints.html:17
var f = 0;
Breakpoint sidebar pane while paused in raw
script-formatter-breakpoints.html:12
var f=0;
Script execution resumed.
Running: testBreakpointSetInOriginalAndRemovedInFormatted
Adding breakpoint.
Formatting.
Removing breakpoint.
Unformatting.
Running: testBreakpointsSetInFormattedSource
Script execution paused.
Breakpoint sidebar pane while paused in pretty printed
unformatted.js:4
var b = 1;
Breakpoint sidebar pane while paused in raw
Script execution resumed.
Debugger was disabled.
|