Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises.html

Issue 1940793002: LayoutTests: adapt inspector debug step test to V8's interpreter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
];
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/debugger-step/debugger-step-through-promises-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698