@@ -2796,6 +2796,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
2796
2796
<li><dfn data-x="concept-request-header-list" data-x-href="https://fetch.spec.whatwg.org/#concept-request-header-list">header list</dfn></li>
2797
2797
<li><dfn data-x="concept-request-body" data-x-href="https://fetch.spec.whatwg.org/#concept-request-body">body</dfn></li>
2798
2798
<li><dfn data-x="concept-request-client" data-x-href="https://fetch.spec.whatwg.org/#concept-request-client">client</dfn></li>
2799
+ <li><dfn data-x="concept-request-url-list" data-x-href="https://fetch.spec.whatwg.org/#concept-request-url-list">URL list</dfn></li>
2799
2800
<li><dfn data-x="concept-request-current-url" data-x-href="https://fetch.spec.whatwg.org/#concept-request-current-url">current URL</dfn></li>
2800
2801
<li><dfn data-x="concept-request-reserved-client" data-x-href="https://fetch.spec.whatwg.org/#concept-request-reserved-client">reserved client</dfn></li>
2801
2802
<li><dfn data-x="concept-request-replaces-client-id" data-x-href="https://fetch.spec.whatwg.org/#concept-request-replaces-client-id">replaces client id</dfn></li>
@@ -82005,6 +82006,9 @@ interface <dfn>Location</dfn> { // but see also <a href="#the-location-interface
82005
82006
<li><p>Let <var>address</var> be the <span data-x="concept-document-url">URL</span> of the
82006
82007
<span>active document</span> of <var>browsingContext</var>.</p></li>
82007
82008
82009
+ <li><p>Append <var>address</var> to <var>resource</var>'s <span
82010
+ data-x="concept-request-url-list">URL list</span>.</p></li>
82011
+
82008
82012
<li><p>Let <var>settings</var> be the <span>relevant settings object</span> for the
82009
82013
<span>active document</span> of <var>browsingContext</var>.</p></li>
82010
82014
@@ -82419,8 +82423,13 @@ interface <dfn>Location</dfn> { // but see also <a href="#the-location-interface
82419
82423
82420
82424
<p><dfn data-x="set the document's address">Setting the document's address</dfn>: Any
82421
82425
<code>Document</code> created by these steps must have its <span
82422
- data-x="concept-document-url">URL</span> set to the <span>URL</span> that was originally to be
82423
- fetched, ignoring any other data that was used to obtain the resource.</p>
82426
+ data-x="concept-document-url">URL</span> set to:</p>
82427
+ <dl class="switch">
82428
+ <dt>If <var>request</var> is non-null,</dt>
82429
+ <dd><var>request</var>'s <span data-x="concept-request-current-url">current URL</span></dd>
82430
+ <dt>Otherwise (<var>request</var> is null),</dt>
82431
+ <dd><var>response</var>'s <span data-x="concept-response-url">URL</span></dd>
82432
+ </dl>
82424
82433
82425
82434
<p><!--en-GB--><dfn id="initialise-the-document-object" data-x="initialize the Document object"
82426
82435
data-export="">Initializing a new <code>Document</code> object</dfn>: when a
0 commit comments