Skip to content

Commit

Permalink
Fix #313: make disowning disown the opener browsing context too
Browse files Browse the repository at this point in the history
Otherwise window names would still leak across.
  • Loading branch information
annevk committed Nov 9, 2015
1 parent d857633 commit 5717ff7
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -77931,17 +77931,20 @@ dictionary <dfn>DragEventInit</dfn> : <span>MouseEventInit</span> {
the <span>browsing context</span> from which the <span>auxiliary browsing context</span> was
created.</p>

<p>When an <span>auxiliary browsing context</span> is to <dfn data-x="disowned its opener">disown
its opener</dfn>, its <span>opener browsing context</span> must be set to null. This makes the
<span>auxiliary browsing context</span> indistinguishable from a <span>top-level browsing
context</span>.


<h5>Navigating auxiliary browsing contexts in the DOM</h5>

<p>The <dfn><code data-x="dom-opener">opener</code></dfn> IDL attribute on the <code>Window</code>
object, on getting, must return the <code>WindowProxy</code> object of the <span>browsing
context</span> from which the current <span>browsing context</span> was created (its <span>opener
browsing context</span>), if there is one, if it is still available, and if the current
<span>browsing context</span> has not <i data-x="disowned its opener">disowned its opener</i>;
otherwise, it must return null. On setting, if the new value is null then the current
<span>browsing context</span> must <dfn data-x="disowned its opener">disown its opener</dfn>; if
the new value is anything else then the user agent must
object, on getting, must return the <code>WindowProxy</code> object of the current <span>browsing
context</span>'s <span>opener browsing context</span>, if there is one; otherwise, it must return
null. On setting, if the new value is null then the current <span>browsing context</span> must
<span data-x="disowned its opener">disown its opener</span>; if the new value is anything else
then the user agent must

<!-- dark magic incantation begins -->
call the [[DefineOwnProperty]] internal method of the <code>Window</code> object, passing the
Expand Down

0 comments on commit 5717ff7

Please sign in to comment.