for example, in the remote webpage, there is a snippet of code like this: function foo(){ this.bar = 0; }
In my greasemonkey script, I wanna create an object of this class,
var _foo= unsafeWindow['foo']; new _foo();
then I got a Illegal Value error.
Thanks,