Skip to content

Commit bceb2ee

Browse files
authored
Processing steps for id now removes the fragment (#1122)
1 parent 4b97432 commit bceb2ee

File tree

1 file changed

+42
-7
lines changed

1 file changed

+42
-7
lines changed

index.html

+42-7
Original file line numberDiff line numberDiff line change
@@ -640,8 +640,7 @@ <h3>
640640
</li>
641641
<li>If |scope| is failure, return.
642642
</li>
643-
<li>From |scope|, remove the [=url/query=] and [=url/fragment=]
644-
components.
643+
<li>Set |scope|'s [=URL/query=] and [=URL/fragment=] to null.
645644
</li>
646645
<li>If |manifest|["start_url"] is not [=URL/within scope=] of
647646
|scope|, return.
@@ -873,13 +872,26 @@ <h3>
873872
application, it SHOULD treat that manifest as a description of a
874873
distinct application, even if it is served from the same URL as that
875874
of another application. When the user agent sees a manifest where
876-
|manifest|["id"] is [=url/equal=] with [=URL serializer/exclude
877-
fragment|exclude fragment true=] to the [=identity=] of an
875+
|manifest|["id"] is [=url/equal=] (with [=URL/equals/exclude
876+
fragments=] OPTIONALLY set to true) to the [=identity=] of an
878877
already-installed application, it SHOULD be used as a signal that
879878
this manifest is a replacement for the already-installed
880879
application's manifest, and not a distinct application, even if it is
881880
served from a different URL than the one seen previously.
882881
</p>
882+
<aside class="note" title="Excluding fragments is best practice">
883+
Since the [=process the id member|processing algorithm=] removes the
884+
[=URL/fragment=] from the <code>[=manifest/id=]</code> member, it is
885+
not strictly necessary to [=URL/equals/exclude fragments=] when
886+
checking for a matching application. However, since old versions of
887+
this spec (and, possibly, old user agents) did not remove the
888+
[=URL/fragment=] from the [=URL=] at parse time, and relied only on
889+
[=URL/equals/exclude fragments|excluding fragments=] during
890+
comparisons, historical app data could contain [=URL/fragments=] in
891+
the <code>[=manifest/id=]</code>. Therefore, it is best practice for
892+
user agents to [=URL/equals/exclude fragments=] even when comparing
893+
two [=URLs=] that ought not to have fragments.
894+
</aside>
883895
<p class="note">
884896
The [=identity=] can be used by a service that collects lists of web
885897
applications to uniquely identify applications.
@@ -910,6 +922,8 @@ <h3>
910922
<li>If |id| is not [=same origin=] as |manifest|["start_url"],
911923
return.
912924
</li>
925+
<li>Set |id|'s [=URL/fragment=] to null.
926+
</li>
913927
<li>Set |manifest|["id"] to |id|.
914928
</li>
915929
</ol>
@@ -949,7 +963,7 @@ <h3>
949963
"https://example.com/my-app/#here"
950964
</td>
951965
<td>
952-
"https://example.com/my-app/#here"
966+
"https://example.com/my-app/"
953967
</td>
954968
</tr>
955969
<tr>
@@ -985,6 +999,28 @@ <h3>
985999
"https://example.com/foo"
9861000
</td>
9871001
</tr>
1002+
<tr>
1003+
<td>
1004+
"foo?x=y"
1005+
</td>
1006+
<td>
1007+
"https://example.com/my-app/start"
1008+
</td>
1009+
<td>
1010+
"https://example.com/foo?x=y"
1011+
</td>
1012+
</tr>
1013+
<tr>
1014+
<td>
1015+
"foo#heading"
1016+
</td>
1017+
<td>
1018+
"https://example.com/my-app/start"
1019+
</td>
1020+
<td>
1021+
"https://example.com/foo"
1022+
</td>
1023+
</tr>
9881024
<tr>
9891025
<td>
9901026
"./foo"
@@ -1312,8 +1348,7 @@ <h3>
13121348
</li>
13131349
<li>If the [=document=]'s [=document|processed manifest=] is not
13141350
null, and [=document=]'s [=document|processed manifest=]'s id is
1315-
not [=URL/equal=] with [=URL serializer/exclude fragment|exclude
1316-
fragment true=] to |manifest|["id"], return.
1351+
not [=URL/equal=] to |manifest|["id"], return.
13171352
</li>
13181353
<li>[=Process the `scope` member=] passing |json|, |manifest|, and
13191354
|manifest URL|.

0 commit comments

Comments
 (0)