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

Unified Diff: test/inspector/debugger/stepping-with-blackboxed-ranges.js

Issue 2633803002: [inspector] implemented blackboxing inside v8 (Closed)
Patch Set: addressed comments Created 3 years, 11 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
« no previous file with comments | « test/inspector/debugger/framework-stepping-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/debugger/stepping-with-blackboxed-ranges.js
diff --git a/test/inspector/debugger/stepping-with-blackboxed-ranges.js b/test/inspector/debugger/stepping-with-blackboxed-ranges.js
index 0a97e5dc3555c1ad646df0649442d718e4c3a767..65b694b5667467ff1eab682e27209f10e5bae164 100644
--- a/test/inspector/debugger/stepping-with-blackboxed-ranges.js
+++ b/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",
« no previous file with comments | « test/inspector/debugger/framework-stepping-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698