Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html |
index 1378028f84091fe893733ad571f9c5151819493b..b1f7ca4b0a3b27dca84ee66a46529cb282f44c82 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html |
@@ -9,7 +9,7 @@ var test = function() |
{ |
InspectorTest.addResult("exceptionDetails:") |
InspectorTest.addResult(" " + exceptionDetails.text); |
- InspectorTest.addResult(" line: " + exceptionDetails.line + ", column: " + exceptionDetails.column); |
+ InspectorTest.addResult(" line: " + exceptionDetails.lineNumber + ", column: " + exceptionDetails.columnNumber); |
var stack = exceptionDetails.stack ? exceptionDetails.stack.callFrames : null; |
if (!stack) { |
@@ -19,7 +19,7 @@ var test = function() |
for (var i = 0; i < stack.length && i < 100; ++i) { |
InspectorTest.addResult(" url: " + stack[i].url); |
InspectorTest.addResult(" function: " + stack[i].functionName); |
- InspectorTest.addResult(" line: " + stack[i].lineNumber); |
+ InspectorTest.addResult(" line: " + stack[i].lineNumber); |
} |
} |
} |