Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -111609,6 +111609,9 @@ location.href = '#foo';</code></pre>
<li><p>Let <var>window</var> be <var>document</var>'s <span>relevant global
object</span>.</p></li>

<li><p>Set <var>window</var>'s <span data-x="concept-document-window">associated
<code>Document</code></span> to <var>document</var>.</p></li>

<li><p>Set <var>document</var>'s <span data-x="concept-document-bc">browsing context</span>'s
<code>WindowProxy</code>'s <span data-x="concept-windowproxy-window">[[Window]]</span> internal
slot value to <var>window</var>.</p></li>
Expand Down Expand Up @@ -112233,13 +112236,16 @@ location.href = '#foo';</code></pre>

<li><p>Let <var>window</var> be null.</p></li>

<li><p>Let <var>reusedInitialAboutBlank</var> be false.</p></li>

<li>
<p>If <var>browsingContext</var>'s <span>active document</span>'s <span>is initial
<code>about:blank</code></span> is true, and <var>browsingContext</var>'s <span>active
document</span>'s <span data-x="concept-document-origin">origin</span> is <span>same
origin-domain</span> with <var>navigationParams</var>'s <span
data-x="navigation-params-origin">origin</span>, then set <var>window</var> to
<var>browsingContext</var>'s <span>active window</span>.</p>
<var>browsingContext</var>'s <span>active window</span> and <var>reusedInitialAboutBlank</var>
to true.</p>

<p class="note">This means that both the <span data-x="is initial about:blank">initial
<code>about:blank</code></span> <code>Document</code>, and the new <code>Document</code> that
Expand Down Expand Up @@ -112381,8 +112387,8 @@ location.href = '#foo';</code></pre>
</dl>
</li>

<li><p>Set <var>window</var>'s <span data-x="concept-document-window">associated
<code>Document</code></span> to <var>document</var>.</p></li>
<li><p>If <var>reusedInitialAboutBlank</var> is false, set <var>window</var>'s <span
data-x="concept-document-window">associated <code>Document</code></span> to <var>document</var>.</p></li>

<li><p>Set <var>document</var>'s <span
data-x="concept-document-internal-ancestor-origin-objects-list">internal ancestor origin objects
Expand Down
Loading