| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises.html
|
| index 98a73cbeb3e6246a26fea6c65764e913a1d4dae2..0a660b88a24778529ab1f496a9d725c9da20afbc 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises.html
|
| @@ -14,14 +14,12 @@ function testFunction()
|
| ).then(
|
| function p2()
|
| {
|
| - var dummy = window.foo || 1;
|
| - return dummy;
|
| + return window.foo || 1;
|
| }
|
| ).then(
|
| function p3()
|
| {
|
| - var dummy = window.foo || 2;
|
| - return dummy;
|
| + return window.foo || 2;
|
| }
|
| ).catch(function(e) {
|
| console.error("FAIL: Unexpected exception: " + e);
|
| @@ -44,7 +42,6 @@ function test()
|
| "StepInto", "Print",
|
| "StepInto", "Print", // entered p2
|
| "StepOver", "Print",
|
| - "StepOver", "Print",
|
| "StepOver", "Print", // entered p3
|
| "StepOver", "Print",
|
| ];
|
|
|