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

Unified Diff: test/inspector/debugger/framework-nested-scheduled-break.js

Issue 2678313002: [inspector] support for nested scheduled breaks (Closed)
Patch Set: reverted not related changes 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
Index: test/inspector/debugger/framework-nested-scheduled-break.js
diff --git a/test/inspector/debugger/framework-nested-scheduled-break.js b/test/inspector/debugger/framework-nested-scheduled-break.js
new file mode 100644
index 0000000000000000000000000000000000000000..918b61bde1c5ac47d80630dea3c9294d970700fd
--- /dev/null
+++ b/test/inspector/debugger/framework-nested-scheduled-break.js
@@ -0,0 +1,39 @@
+// 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('Checks nested scheduled break in framework code.');
+
+InspectorTest.addScript(`
+function frameworkCall(callback) {
+ callWithScheduledBreak(doFrameworkWork.bind(null, callback), 'doFrameworkWork', '');
+}
+
+function doFrameworkWork(callback) {
+ callWithScheduledBreak(() => 42, '() => 42', '');
+ callback();
+}
+//# sourceURL=framework.js`, 7, 26);
+
+InspectorTest.addScript(`
+function testFunction() {
+ callWithScheduledBreak(frameworkCall.bind(null, foo), 'frameworkCall', '');
+}
+
+function foo() {
+ breakProgram('break in user code', '');
+ return 42;
+}
+//# sourceURL=user.js`, 18, 26);
+
+InspectorTest.setupScriptMap();
+Protocol.Debugger.onPaused(message => {
+ InspectorTest.log('break reason: ' + message.params.reason);
+ InspectorTest.logCallFrames(message.params.callFrames);
+ Protocol.Debugger.resume();
+});
+Protocol.Debugger.enable()
+ .then(() => Protocol.Debugger.setBlackboxPatterns({patterns: ['framework\.js']}))
+ .then(() => Protocol.Runtime.evaluate({ expression: 'testFunction()//# sourceURL=expr.js'}))
+ .then(InspectorTest.logMessage)
+ .then(InspectorTest.completeTest);

Powered by Google App Engine
This is Rietveld 408576698