| 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..1e501b335dbc31c715862a527810d3737c163f13 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,8 @@ function test()
|
| "StepInto", "Print", // callback2, skipped
|
| "StepInto", "Print", // callback3
|
| "StepInto", "StepInto", "StepInto", "StepInto", "Print", // callback4
|
| - "StepInto", "Print", // callback4, skipped
|
| + "StepInto", "Print", // anonymous calback
|
| + "StepInto", "StepInto", "Print", // callback4, skipped
|
| "StepInto", "Print", // callback4, inside catch
|
| "StepOut", "Print", // return to callback3
|
| "StepOver", "Print", // return to callback2
|
|
|