Skip to content

Commit 7cac860

Browse files
committed
Address review feedback
1 parent 7b3d9d8 commit 7cac860

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

index.bs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,12 +1512,12 @@ A [=blob URL store=] is a [=map=]
15121512
where [=map/keys=] are [=valid URL strings=]
15131513
and [=map/values=] are [=blob URL Entries=].
15141514

1515-
A <dfn export>blob URL entry</dfn> consists of an <i>object</i> (of type {{Blob}} or
1516-
{{MediaSource}}), and an <dfn export for="blob URL entry">environment</dfn> (an
1515+
A <dfn export>blob URL entry</dfn> consists of an <dfn for="blob URL entry">object</dfn> (of type
1516+
{{Blob}} or {{MediaSource}}), and an <dfn export for="blob URL entry">environment</dfn> (an
15171517
[=environment settings object=]).
15181518

1519-
Note: Specifications must use the [=obtain a blob object=] algorithm to access a
1520-
[=blob URL entry=]'s <i>object</i>.
1519+
Note: Specifications have to use the [=obtain a blob object=] algorithm to access a
1520+
[=blob URL entry=]'s [=blob URL entry/object=].
15211521

15221522
[=map/Keys=] in the [=blob URL store=] (also known as <dfn lt="blob URL|object URL" export>blob URLs</dfn>)
15231523
are [=valid URL strings=] that when [=URL parser|parsed=]
@@ -1531,7 +1531,7 @@ To <dfn export id=blob-url-obtain-object>obtain a blob object</dfn> given a [=bl
15311531
1. Let |isAuthorized| be true.
15321532
1. If |environment| is not the string "`navigation`", then set |isAuthorized| to the result of [=checking for same-partition blob URL usage=] with |blobUrlEntry| and |environment|.
15331533
1. If |isAuthorized| is false, then return failure.
1534-
1. Return |blobUrlEntry|'s object.
1534+
1. Return |blobUrlEntry|'s [=blob URL entry/object=].
15351535

15361536
</div>
15371537

@@ -1612,7 +1612,7 @@ observable though, since a revoked blob URL can't be resolved/fetched anymore an
16121612
### Access restrictions on blob URLs ### {#partitioningOfBlobUrls}
16131613

16141614
<a>Blob URLs</a> can only be fetched from environments where the [=storage key=] matches that of
1615-
the environment where the <a>blob URL</a> was created. <a>blob URL</a> navigations are not subject
1615+
the environment where the <a>blob URL</a> was created. <a>Blob URL</a> navigations are not subject
16161616
to this restriction.
16171617

16181618
<div algorithm="checkForSamePartitionBlobUrlUsage">
@@ -1621,7 +1621,7 @@ To <dfn export id=blob-url-partition-check>check for same-partition blob URL usa
16211621
1. Let |blobStorageKey| be the result of [=obtaining a storage key for non-storage purposes=] with |blobUrlEntry|'s [=blob URL entry/environment=].
16221622
1. Let |environmentStorageKey| be the result of [=obtaining a storage key for non-storage purposes=] with |environment|.
16231623
1. If |blobStorageKey| is not [=storage key/equal=] to |environmentStorageKey|, then return false.
1624-
1. Otherwise, return true.
1624+
1. Return true.
16251625

16261626
</div>
16271627

0 commit comments

Comments
 (0)