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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-log-in-xhtml.xhtml

Issue 2139543002: [DevTools] Report console API calls through Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 5 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
Index: third_party/WebKit/LayoutTests/inspector/console/console-log-in-xhtml.xhtml
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-log-in-xhtml.xhtml b/third_party/WebKit/LayoutTests/inspector/console/console-log-in-xhtml.xhtml
index f6556c8d5769ff25fc30f4f204aaa644410bff52..f80bc5a6e413b3bdc54931fb8548ef37ce8f334f 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-log-in-xhtml.xhtml
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-log-in-xhtml.xhtml
@@ -10,7 +10,7 @@ function test()
InspectorTest.completeTest();
function simpleFormatter(element, message)
{
- return message.messageText + ":" + message.line + ":" + message.column;
+ return message.messageText + ":" + message.stackTrace.callFrames[0].lineNumber + ":" + message.stackTrace.callFrames[0].columnNumber;
}
}
</script>

Powered by Google App Engine
This is Rietveld 408576698