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

Unified Diff: test/inspector/debugger/stepping-ignores-injected-script.js

Issue 2767873002: [inspector] added flag for injected-script-source debugging (Closed)
Patch Set: Created 3 years, 9 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/stepping-ignores-injected-script.js
diff --git a/test/inspector/debugger/stepping-ignores-injected-script.js b/test/inspector/debugger/stepping-ignores-injected-script.js
new file mode 100644
index 0000000000000000000000000000000000000000..d7bb20a26a1f18560c7bd5e942e085e2e55ca1e0
--- /dev/null
+++ b/test/inspector/debugger/stepping-ignores-injected-script.js
@@ -0,0 +1,14 @@
+// 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.
+
Yang 2017/03/22 11:00:01 Can we also have a test that uses the flag by addi
kozy 2017/03/22 17:08:49 Done.
+Protocol.Debugger.onPaused(message => {
+ InspectorTest.logSourceLocation(message.params.callFrames[0].location);
+ Protocol.Debugger.stepInto();
+});
+
+InspectorTest.setupScriptMap();
+Protocol.Debugger.enable();
+Protocol.Debugger.pause();
+Protocol.Runtime.evaluate({expression: 'console.log(42)'})
+ .then(InspectorTest.completeTest);

Powered by Google App Engine
This is Rietveld 408576698