This happens in the latest development build too.
I've been able to track down the problem a little further:
This will fail with NoScript:
Code: Select all
req.open("GET", "data:text/plain,0123", false);
This too:
Code: Select all
req.open("GET", "data:,0123", false);
This however will not (is this data URI even valid?):
Code: Select all
req.open("GET", "data,0123", false);
Nor will this fail (assuming test.txt exists, this however won't cause the error below):
Code: Select all
req.open("GET", "test.txt", false);
{/code]
This problem started when JM was merged into TM (and later M-C).
If NoScript isn't installed or not the 3rd code example is used this error message with show up (this error isn't related to NoScript itself):
[code]Error: uncaught exception: [Exception... "Access to restricted URI denied"
code: "1012" nsresult: "0x805303f4 (NS_ERROR_DOM_BAD_URI)" location:
"http://192.168.1.1/ajax.js Line: 117"]
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b7pre) Gecko/20100918 Firefox/4.0b7pre