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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
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.
5 Protocol.Debugger.onPaused(message => {
6 InspectorTest.logSourceLocation(message.params.callFrames[0].location);
7 Protocol.Debugger.stepInto();
8 });
9
10 InspectorTest.setupScriptMap();
11 Protocol.Debugger.enable();
12 Protocol.Debugger.pause();
13 Protocol.Runtime.evaluate({expression: 'console.log(42)'})
14 .then(InspectorTest.completeTest);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698