Hi,

Thanks for your email! Can you provide some more details? Is the script loaded over HTTP, and if so, can you host it over HTTPS? If you are on an HTTPS page and the script is served over HTTP, the Mixed Content Blocker will block the insecure script.

There are similar issues with bookmarklets that use HTTP resources (https://bugzilla.mozilla.org/show_bug.cgi?id=886663).

~Tanvi

On 8/7/13 6:15 PM, erjdri...@gmail.com wrote:
I've got a Greasemonkey script, that opens a new window (popup) and
writes some html to be displayed to the user.

        var newWin = window.open( 
"","xxx","height=560,width=800,status=0,toolbar=0,menubar=1,location=0,scrollbars=1");

        newWin.document.open("text/html");
        newWin.document.write( my_html_code );
        newWin.document.close();


This is being disallowed now.

Any other way to achieve the same thing.

_______________________________________________
dev-security mailing list
dev-security@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-security

_______________________________________________
dev-security mailing list
dev-security@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-security

Reply via email to