Bug 287696 - [Browser Console] file and line number of error are not rendered
Summary: [Browser Console] file and line number of error are not rendered
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: ATF (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-08-26 09:48 EDT by Jacek Pospychala CLA
Modified: 2020-05-07 10:51 EDT (History)
0 users

See Also:


Attachments
screenshot (13.75 KB, image/png)
2009-08-26 09:53 EDT, Jacek Pospychala CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jacek Pospychala CLA 2009-08-26 09:48:10 EDT
For example error message says: "uncaught exception: [....] location: "file:///......... Line: 7""
However Line and file columns are empty.

This happens for example with following page:
<html>
<head><title>XHR</title></head>
<body>
<script>
var req = new XMLHttpRequest();
req.open('GET', 'http:///home/user/file.json', false); 
req.send(null);
if(req.status == 0)
  dump(req.responseText);
</script>
</body>
</html>
Comment 1 Jacek Pospychala CLA 2009-08-26 09:53:30 EDT
Created attachment 145677 [details]
screenshot