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
[email protected]
https://lists.mozilla.org/listinfo/dev-security

Reply via email to