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

Unified Diff: test/inspector/debugger/step-into-next-script.js

Issue 2668763003: [inspector] V8DebuggerAgent cleanup (Closed)
Patch Set: Created 3 years, 10 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 | « src/inspector/v8-debugger-agent-impl.cc ('k') | test/inspector/debugger/step-into-next-script-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/debugger/step-into-next-script.js
diff --git a/test/inspector/debugger/step-into-next-script.js b/test/inspector/debugger/step-into-next-script.js
new file mode 100644
index 0000000000000000000000000000000000000000..b51ce012d88a38ac44848236d8ad39c7f017b1a3
--- /dev/null
+++ b/test/inspector/debugger/step-into-next-script.js
@@ -0,0 +1,51 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+print('Debugger breaks in next script after stepOut from previous one.');
+
+InspectorTest.addScript(`
+function test() {
+ setTimeout('var a = 1;//# sourceURL=timeout1.js', 0);
+ setTimeout(foo, 0);
+ setTimeout('var a = 3;//# sourceURL=timeout3.js', 0);
+ debugger;
+}
+//# sourceURL=foo.js`, 7, 26);
+
+InspectorTest.addScript(`
+function foo() {
+ return 42;
+}
+//# sourceURL=timeout2.js`)
+
+InspectorTest.setupScriptMap();
+var stepAction;
+Protocol.Debugger.onPaused(message => {
+ InspectorTest.logCallFrames(message.params.callFrames);
+ InspectorTest.log('');
+ Protocol.Debugger[stepAction]();
+});
+Protocol.Debugger.enable()
+InspectorTest.runTestSuite([
+ function testStepOut(next) {
+ stepAction = 'stepOut';
+ Protocol.Runtime.evaluate({ expression: 'test()' })
+ .then(() => InspectorTest.waitPendingTasks())
+ .then(next);
+ },
+
+ function testStepOver(next) {
+ stepAction = 'stepOver';
+ Protocol.Runtime.evaluate({ expression: 'test()' })
+ .then(() => InspectorTest.waitPendingTasks())
+ .then(next);
+ },
+
+ function testStepInto(next) {
+ stepAction = 'stepInto';
+ Protocol.Runtime.evaluate({ expression: 'test()' })
+ .then(() => InspectorTest.waitPendingTasks())
+ .then(next);
+ }
+]);
« no previous file with comments | « src/inspector/v8-debugger-agent-impl.cc ('k') | test/inspector/debugger/step-into-next-script-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698