diff --git a/index.html b/index.html
index 8c17ceb72..33e9bfbe0 100644
--- a/index.html
+++ b/index.html
@@ -1301,9 +1301,14 @@
"!FETCH#concept-request-body">body.
Let manifest be the result of running processing a
- manifest given text, manifest URL, and the
- URL that represents the address of the top-level browsing
- context.
+ manifest given text and manifest URL.
+
+ If
+ manifest["start_url"] is not same origin as
+ the URL that represents the address of the top-level browsing
+ context, issue a developer warning that the start_url
+ needs to be same-origin as Document
of the
+ top-level browsing context, then abort these steps.
Return manifest and manifest URL.
@@ -1405,9 +1410,8 @@
following algorithm. The algorithm takes a string
text as an argument, which represents a manifest,
and a URL manifest URL, which represents the
- location of the manifest, and an optional URL document
- URL. The output from inputting an JSON document into this
- algorithm is a processed manifest.
+ location of the manifest. The output from inputting an JSON document
+ into this algorithm is a processed manifest.
We need to catch throws associated with enumerations in IDL
@@ -1449,8 +1453,7 @@
Set manifest["start_url"] to the result of
running processing the start_url
member given
- manifest["start_url"], manifest URL, and
- document URL.
+ manifest["start_url"], and manifest URL.
Set manifest["lang"] to the result of running
processing the lang
member given
@@ -1954,17 +1957,12 @@
The steps for processing the start_url
member
are given by the following algorithm. The algorithm takes a
- USVString value, a URL manifest
- URL, and an optional URL document URL. This
- algorithm returns a URL.
+ USVString value, and a URL manifest
+ URL. This algorithm returns a URL.
- - If document URL is given, and manifest URL
- is not same origin as document URL, let
- default be document URL.
-
- - Otherwise, let default be the result of parsing
- ".", using manifest URL as the base URL.
+
- Let default be the result of parsing ".", using
+ manifest URL as the base URL.
- If value is the empty string, return
default.
@@ -1982,18 +1980,6 @@
- If document URL is given, and start URL is
- not same origin as document URL:
-
- -
- Issue a developer warning that the start_url
- needs to be same-origin as
Document
of the
- top-level browsing context.
-
- - Return default.
-
-
-
Otherwise, return start URL.