Skip to content

Commit af5a7b3

Browse files
authored
Flatten storage access status algorithm steps (#24)
1 parent d317d4c commit af5a7b3

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

index.bs

+9-5
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,16 @@ A <dfn>storage access status</dfn> is one of "<dfn for="storage access status">n
122122
1. If the user agent's cookie store would attach cookies with the `SameSite=Strict` attribute to |request|, return null. [[!COOKIES]]
123123
1. Let |allowed| be a [=boolean=], initially set to the result of [=determining whether the user agent's cookie store allows unpartitioned cookies to be accessed=] given |request|'s [=request/url=], |request|'s [=request/client=], and |request|'s [=request/eligible for storage-access=].
124124
1. If |allowed| is true, return "<code>[=storage access status/active=]</code>".
125-
1. Let |allowedByPolicy| the result of running [$Should request be allowed to use feature?$] given "<code>storage-access</code>" and |request|.
126-
1. If |allowedByPolicy| is true and |request|'s [=request/eligible for storage-access=] is false, then:
127-
1. Set |allowed| to the result of [=determining whether the user agent's cookie store allows unpartitioned cookies to be accessed=] given |request|'s [=request/url=], |request|'s [=request/client=], and `true`.
128-
1. If |allowed| is true, return "<code>[=storage access status/inactive=]</code>".
125+
1. If |request|'s [=request/eligible for storage-access=] is true, return "<code>[=storage access status/none=]</code>".
129126

130-
Note: |allowed| will be true in the above step if the [=permission store entry=] obtained by [=getting a permission store entry=] given a {{PermissionDescriptor}} with {{PermissionDescriptor/name}} initialized to "`storage-access`" and a [=permission key=] of <code>(the site [=obtain a site|obtained=] from [=request=]'s [=request/client=]'s [=environment/top-level origin=], the site [=obtain a site|obtained=] from [=request=]'s [=request/url=]'s [=url/origin=])</code> has a [=permission store entry/state=] of "`granted`". Otherwise, |allowed| will remain false.
127+
Note: the "`storage-access`" [=policy-controlled feature=] was checked before setting |request|'s [=request/eligible for storage-access=] to true.
128+
129+
1. Let |featureIsAllowed| the result of running [$Should request be allowed to use feature?$] given "<code>storage-access</code>" and |request|.
130+
1. If |featureIsAllowed| is false, return "<code>[=storage access status/none=]</code>".
131+
1. Set |allowed| to the result of [=determining whether the user agent's cookie store allows unpartitioned cookies to be accessed=] given |request|'s [=request/url=], |request|'s [=request/client=], and `true`.
132+
1. If |allowed| is true, return "<code>[=storage access status/inactive=]</code>".
133+
134+
Note: |allowed| will be true in the above step if the [=permission store entry=] obtained by [=getting a permission store entry=] given a {{PermissionDescriptor}} with {{PermissionDescriptor/name}} initialized to "`storage-access`" and a [=permission key=] of <code>(the site [=obtain a site|obtained=] from [=request=]'s [=request/client=]'s [=environment/top-level origin=], the site [=obtain a site|obtained=] from [=request=]'s [=request/url=]'s [=url/origin=])</code> has a [=permission store entry/state=] of "`granted`". Otherwise, |allowed| will remain false.
131135

132136
1. Return "<code>[=storage access status/none=]</code>".
133137
</div>

0 commit comments

Comments
 (0)