From 6cec696a918439ecee869dd0602faa527bc93321 Mon Sep 17 00:00:00 2001 From: Jeffrey Yasskin Date: Mon, 26 Nov 2018 11:24:46 -0800 Subject: [PATCH] Specify a new document's URL The "URL that was originally to be fetched" isn't clear about which URL that actually is. The choices here are: * The request's URL: The original URL before any redirects. * The request's current URL: The final URL after any redirects, and treating a Service Worker's response as from that URL. * The response's URL: Either the final URL after any redirects, or, if a Service Worker intercepted the fetch and returned a response from a different URL, that different URL. Fixes #3953. --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index 0013373ee26..16220a6078e 100644 --- a/source +++ b/source @@ -82414,8 +82414,8 @@ interface Location { // but see also Setting the document's address: Any Document created by these steps must have its URL set to the URL that was originally to be - fetched, ignoring any other data that was used to obtain the resource.

+ data-x="concept-document-url">URL set to response's URL.

Initializing a new Document object: when a