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

Unified Diff: LayoutTests/http/tests/inspector-enabled/console-log-before-frame-navigation.html

Issue 9193003: Merge 104714 - Web Inspector: "undefined" instead of error message in the SourceFrame. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 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 | « no previous file | LayoutTests/inspector/debugger/source-frame-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector-enabled/console-log-before-frame-navigation.html
===================================================================
--- LayoutTests/http/tests/inspector-enabled/console-log-before-frame-navigation.html (revision 104794)
+++ LayoutTests/http/tests/inspector-enabled/console-log-before-frame-navigation.html (working copy)
@@ -31,7 +31,7 @@
for (var i = 0; i < messages.length; ++i) {
var m = messages[i];
InspectorTest.addResult("Message[" + i + "]:");
- InspectorTest.addResult("Message: " + m.message);
+ InspectorTest.addResult("Message: " + WebInspector.displayNameForURL(m.url) + ":" + m.line + " " + m.message);
}
InspectorTest.addResult("TEST COMPLETE.");
InspectorTest.completeTest();
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/source-frame-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698