summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/stepping-with-exposed-injected-script.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/stepping-with-exposed-injected-script.js')
-rw-r--r--deps/v8/test/inspector/debugger/stepping-with-exposed-injected-script.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/v8/test/inspector/debugger/stepping-with-exposed-injected-script.js b/deps/v8/test/inspector/debugger/stepping-with-exposed-injected-script.js
deleted file mode 100644
index d608137c81..0000000000
--- a/deps/v8/test/inspector/debugger/stepping-with-exposed-injected-script.js
+++ /dev/null
@@ -1,22 +0,0 @@
-// 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.
-// Flags: --expose-inspector-scripts
-
-let {session, contextGroup, Protocol} = InspectorTest.start('Tests that stepping does not ignore injected script when passed a flag');
-
-Protocol.Debugger.onPaused(message => {
- let url = session._scriptMap.get(message.params.callFrames[0].location.scriptId).url;
- if (url !== 'test.js') {
- InspectorTest.log('InjectedSciptSource on stack.');
- InspectorTest.completeTest();
- }
- Protocol.Debugger.stepInto();
-});
-
-session.setupScriptMap();
-Protocol.Debugger.enable();
-Protocol.Debugger.pause();
-Protocol.Runtime.evaluate({expression: 'console.log(42)//# sourceURL=test.js'})
- .then(() => InspectorTest.log('InjectedSciptSource was not reached'))
- .then(InspectorTest.completeTest);