Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 'destination' for navigation requests. #4976

Merged
merged 1 commit into from
Jun 5, 2020
Merged
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
25 changes: 19 additions & 6 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -31087,7 +31087,8 @@ interface <dfn>HTMLEmbedElement</dfn> : <span>HTMLElement</span> {
document</span>'s <span>relevant settings object</span>, <span
data-x="concept-request-destination">destination</span> is "<code data-x="">embed</code>",
<span data-x="concept-request-credentials-mode">credentials mode</span> is "<code
data-x="">include</code>", and whose <span>use-URL-credentials flag</span> is set.</p></li>
data-x="">include</code>", <span data-x="concept-request-mode">mode</span> is "<code
data-x="">navigate</code>", and whose <span>use-URL-credentials flag</span> is set.</p></li>

<li>
<p><span data-x="concept-fetch">Fetch</span> <var>request</var>.</p>
Expand Down Expand Up @@ -31573,7 +31574,8 @@ interface <dfn>HTMLObjectElement</dfn> : <span>HTMLElement</span> {
document</span>'s <span>relevant settings object</span>, <span
data-x="concept-request-destination">destination</span> is "<code data-x="">object</code>",
<span data-x="concept-request-credentials-mode">credentials mode</span> is "<code
data-x="">include</code>", and whose <span>use-URL-credentials flag</span> is set.</p></li>
data-x="">include</code>", <span data-x="concept-request-mode">mode</span> is "<code
data-x="">navigate</code>", and whose <span>use-URL-credentials flag</span> is set.</p></li>

<li>

Expand Down Expand Up @@ -84511,10 +84513,21 @@ interface <dfn>Location</dfn> { // but see also <a href="#the-location-interface
<var>browsingContext</var>'s <span>active document</span>'s <span>relevant settings
object</span>'s <span data-x="concept-environment-id">id</span>.</p></li>

<li><p>If <var>browsingContext</var>'s <span data-x="bc-container">container</span> is non-null
and has a <span>browsing context scope origin</span>, then set <var>request</var>'s <span
data-x="concept-request-origin">origin</span> to that <span>browsing context scope
origin</span>.</p></li>
<li>
<p>If <var>browsingContext</var>'s <span data-x="bc-container">container</span> is non-null:</p>

<ol>
<li><p>If the <var>browsingContext</var>'s <span data-x="bc-container">container</span> has a
<span>browsing context scope origin</span>, then set <var>request</var>'s <span
data-x="concept-request-origin">origin</span> to that <span>browsing context scope
origin</span>.</p></li>

<li><p>Set <var>request</var>'s <span
data-x="concept-request-destination">destination</span> to <var>browsingContext</var>'s
<span data-x="bc-container">container</span>'s <span data-x="concept-element-local-name">local
name</span>.</p></li>
</ol>
</li>

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

Expand Down