diff options
Diffstat (limited to 'deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js')
-rw-r--r-- | deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js b/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js index 0a97e5dc35..65b694b566 100644 --- a/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js +++ b/deps/v8/test/inspector/debugger/stepping-with-blackboxed-ranges.js @@ -90,10 +90,15 @@ function setIncorrectRanges(scriptId, response) function setMixedSourceRanges(scriptId) { Protocol.Debugger.onPaused(runAction); - Protocol.Debugger.setBlackboxedRanges({ - scriptId: scriptId, - positions: [ { lineNumber: 8, columnNumber: 0 }, { lineNumber: 15, columnNumber: 0 } ] // blackbox ranges for mixed.js - }).then(runAction); + Protocol.Debugger + .setBlackboxedRanges({ + scriptId: scriptId, + positions: [ + {lineNumber: 6, columnNumber: 0}, + {lineNumber: 14, columnNumber: 0} + ] // blackbox ranges for mixed.js + }) + .then(runAction); } var actions = [ "stepOut", "print", "stepOut", "print", "stepOut", "print", |