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); |