[Bug 14750] Clarify what the origin of the new document is if the document is blown away (consider if the old document set document.domain)

http://www.w3.org/Bugs/Public/show_bug.cgi?id=14750

--- Comment #2 from Simon Pieters <simonp@opera.com> 2011-11-11 07:16:26 UTC ---
http://example.org

<iframe src=http://foo.example.org/></iframe>
<script>
document.domain = 'example.org';
onload = function(){
  window[0].document.write('foo');
}
</script>


http://foo.example.org

<script>
document.domain = 'example.org';
</script>

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 11 November 2011 07:16:32 UTC