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

Iframe credentialless (WIP) #1416

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
19 changes: 12 additions & 7 deletions fetch.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2652,8 +2652,12 @@ details of reused connections are not exposed and time values are coarsened.

<h3 id=network-partition-keys>Network partition keys</h3>

<p>A <dfn>network partition key</dfn> is a tuple consisting of a <a for=/>site</a> and null or
an <a>implementation-defined</a> value.
<p>A <dfn>network partition key</dfn> is a tuple consisting of:</p>
<ul class="brief">
<li><p>a <a for=/>site</a>.</p>
<li><p>null or an <a>implementation-defined</a> value.</p>
<li><p>null or a nonce.</p>
</ul>

<p>To
<dfn export lt="determine the network partition key|determining the network partition key">determine the network partition key</dfn>,
Expand All @@ -2671,13 +2675,14 @@ given an <a for=/>environment</a> <var>environment</var>, run these steps:
<li><p>Let <var>topLevelSite</var> be the result of <a lt="obtain a site">obtaining a site</a>,
given <var>topLevelOrigin</var>.

<li>
<p>Let <var>secondKey</var> be null or an <a>implementation-defined</a> value.
<li><p>Let <var>secondKey</var> be null or an <a>implementation-defined</a> value.

<p class=XXX>The second key is intentionally a little vague as the finer points are still
evolving. See <a href=https://github.com/whatwg/fetch/issues/1035>issue #1035</a>.

<p class=XXX>The second key is intentionally a little vague as the finer points are still
evolving. See <a href=https://github.com/whatwg/fetch/issues/1035>issue #1035</a>.
<li><p>Let <var>nonce</var> be <var>environment</var>'s <a for="environment">partition-nonce</a></p>

<li><p>Return (<var>topLevelSite</var>, <var>secondKey</var>).
<li><p>Return (<var>topLevelSite</var>, <var>secondKey</var>, <var>nonce</var>).
</ol>

<p>To
Expand Down