OLD | NEW |
1 | 1 |
2 Tests that debugger will step through Promise handlers while not stepping into V
8 internal scripts. | 2 Tests that debugger will step through Promise handlers while not stepping into V
8 internal scripts. |
3 | 3 |
4 Set timer for test function. | 4 Set timer for test function. |
5 Call stack: | 5 Call stack: |
6 0) p1 (debugger-step-through-promises.html:12) | 6 0) p1 (debugger-step-through-promises.html:12) |
| 7 [Promise.resolve] |
| 8 0) testFunction (debugger-step-through-promises.html:9) |
| 9 [setTimeout] |
| 10 0) scheduleTestFunction (debugger-test.js:3) |
| 11 <... skipped remaining frames ...> |
7 | 12 |
8 Executing StepInto... | 13 Executing StepInto... |
9 Call stack: | 14 Call stack: |
10 0) p1 (debugger-step-through-promises.html:13) | 15 0) p1 (debugger-step-through-promises.html:13) |
| 16 [Promise.resolve] |
| 17 0) testFunction (debugger-step-through-promises.html:9) |
| 18 [setTimeout] |
| 19 0) scheduleTestFunction (debugger-test.js:3) |
| 20 <... skipped remaining frames ...> |
11 | 21 |
12 Executing StepInto... | 22 Executing StepInto... |
13 Call stack: | 23 Call stack: |
14 0) p2 (debugger-step-through-promises.html:17) | 24 0) p2 (debugger-step-through-promises.html:17) |
| 25 [Promise.resolve] |
| 26 0) testFunction (debugger-step-through-promises.html:9) |
| 27 [setTimeout] |
| 28 0) scheduleTestFunction (debugger-test.js:3) |
| 29 <... skipped remaining frames ...> |
15 | 30 |
16 Executing StepOver... | 31 Executing StepOver... |
17 Call stack: | 32 Call stack: |
18 0) p2 (debugger-step-through-promises.html:18) | 33 0) p2 (debugger-step-through-promises.html:18) |
| 34 [Promise.resolve] |
| 35 0) testFunction (debugger-step-through-promises.html:9) |
| 36 [setTimeout] |
| 37 0) scheduleTestFunction (debugger-test.js:3) |
| 38 <... skipped remaining frames ...> |
19 | 39 |
20 Executing StepOver... | 40 Executing StepOver... |
21 Call stack: | 41 Call stack: |
22 0) p3 (debugger-step-through-promises.html:22) | 42 0) p3 (debugger-step-through-promises.html:22) |
| 43 [Promise.resolve] |
| 44 0) testFunction (debugger-step-through-promises.html:9) |
| 45 [setTimeout] |
| 46 0) scheduleTestFunction (debugger-test.js:3) |
| 47 <... skipped remaining frames ...> |
23 | 48 |
24 Executing StepOver... | 49 Executing StepOver... |
25 Call stack: | 50 Call stack: |
26 0) p3 (debugger-step-through-promises.html:23) | 51 0) p3 (debugger-step-through-promises.html:23) |
| 52 [Promise.resolve] |
| 53 0) testFunction (debugger-step-through-promises.html:9) |
| 54 [setTimeout] |
| 55 0) scheduleTestFunction (debugger-test.js:3) |
| 56 <... skipped remaining frames ...> |
27 | 57 |
28 | 58 |
OLD | NEW |