Index: test/inspector/debugger/asm-js-breakpoint-before-exec.js |
diff --git a/test/inspector/debugger/asm-js-breakpoint-before-exec.js b/test/inspector/debugger/asm-js-breakpoint-before-exec.js |
index 5c0dbaaefb5b92bf0c6824f6cc5ecfae86d535da..78a7b8e57ed9e547b145f3f4ea1cc9d0f799340a 100644 |
--- a/test/inspector/debugger/asm-js-breakpoint-before-exec.js |
+++ b/test/inspector/debugger/asm-js-breakpoint-before-exec.js |
@@ -103,12 +103,12 @@ function handleScriptParsed(messageObject) |
InspectorTest.log('Script nr ' + numScripts + ' parsed!'); |
if (numScripts > 1) return; |
- var startLine = messageObject.params.startLine; |
+ var startLine = messageObject.params.startLine + 3; |
var endLine = messageObject.params.endLine; |
InspectorTest.log('First script; assuming testFunction.'); |
InspectorTest.log( |
- 'Flooding script with breakpoints for all lines (' + startLine + ' - ' + |
- endLine + ')...'); |
+ 'Flooding script with breakpoints for the lines ' + startLine + ' to ' + |
+ endLine + '...'); |
var currentLine = startLine; |
function setNextBreakpoint(message) { |
if (message) InspectorTest.logMessage('error: ' + message.error); |