Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-steppings.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-steppings.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-steppings.html |
| index 574e9991a0aa5e0ac71407989d602d315619fe55..6bcb5b064994bc7897c50e68da944bc68f1c0096 100644 |
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-steppings.html |
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-frameworks/frameworks-steppings.html |
| @@ -30,7 +30,7 @@ function callback3() |
| function callback4() |
| { |
| Framework.safeRun(Framework.doSomeWork, function() { |
| - return 0; // Should NOT step into this callback (otherwise too many StepIns) |
| + return 0; |
| }); |
| try { |
| Framework.throwFrameworkException("message"); |
| @@ -60,7 +60,7 @@ function test() |
| "StepInto", "Print", // callback2, skipped |
| "StepInto", "Print", // callback3 |
| "StepInto", "StepInto", "StepInto", "StepInto", "Print", // callback4 |
| - "StepInto", "Print", // callback4, skipped |
| + "StepInto", "StepInto", "StepInto", "Print", // callback4, skipped |
|
kozy
2017/01/20 21:59:59
print before new stepIntos
|
| "StepInto", "Print", // callback4, inside catch |
| "StepOut", "Print", // return to callback3 |
| "StepOver", "Print", // return to callback2 |