Bug 764333 - Link from error console to view source doesn't work for errors in subscripts; r=Unfocused

This commit is contained in:
Geoff Lankow 2012-06-14 21:20:06 +12:00
parent 5927af9fa0
commit c9abe81f0d

View File

@ -503,6 +503,7 @@
<handler event="click" phase="capturing" button="0" preventdefault="true">
<![CDATA[
var url = this.getAttribute("href");
url = url.substring(url.lastIndexOf(" ") + 1);
var line = getAttribute("line");
gViewSourceUtils.viewSource(url, null, null, line);
]]>