Tribe,
First off I realize that this message above:

"Security Error: Content at [page url] may not load data from
about:blank."

is because I'm opening a window without any URL causing a cross domain
security violation:

window.open ("", windowid, params);

However, I'd still like to do this or something like it without
generating this security error message.

I suppose I can pull off the domain from the document.URL and use it
as a prefix to an artificial URL but what can I put in this parameters
place to give me an empty window, without the security error, without
having a "blank.html" file for every domain I deploy under (creating a
developer tool)?

window.open(document.URL + "about:blank"...) ???

var win = window.open("", wid, params);
win.document.domain = window.document.domain???

Any ideas???

 Dave Cline
~bangeye.com~
_______________________________________________
Mozilla-security mailing list
[EMAIL PROTECTED]
http://mail.mozilla.org/listinfo/mozilla-security

Reply via email to