[EMAIL PROTECTED] wrote:
which seems to suggest quite clearly that the sandbox is misinterpretting the relative URL in the XMLHttpRequest to be relative to the chrome path I am actually running from
It's not the sandbox. The way XMLHttpRequest gets its base URI makes the fundamental assumption that it's running against a window (which is not true in this case). So doing XMLHttpRequest in a sandbox will just not work very well....
When we change the base URI behavior to match the W3C proposal and take the base URI from the window the XMLHttpRequest object was created on, this might get better.
-Boris _______________________________________________ dev-tech-xpcom mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-xpcom
