Locked XSS : Access an RSS feed

All Replies

  • Monday, November 03, 2008 6:37 PM
     
     Answered
    Hey slyi,

    External calls are not blocked and we actually fetch the File when accessed via the server. (I haven't tested silverlight since the host of the file decides if silverlight can access it) The reason that the sandboxing threw an error was because the document writes were split across HTML nodes. The example below should help illustrate.

    Fails:
    document.write('<div>');document.write('</div>');

    Passes:
    document.write('<div></div>');

    Possibly in the future we may support the Failing case above by condensing the document write calls into one combined call.
  • Monday, November 03, 2008 7:08 PM
    Owner
     
     Answered
    Document.write support will be improved.  It is a known issue that it fails in many common scenarios.

    -Scott