Skip to content

Commit a1531cb

Browse files
Suggest permission lifetime (#108)
1 parent 795efb6 commit a1531cb

File tree

1 file changed

+43
-1
lines changed

1 file changed

+43
-1
lines changed

‎index.html

+43-1
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,38 @@ <h2>
394394
information also discloses the location of the user of the device,
395395
thereby potentially compromising the user's privacy.
396396
</p>
397+
<section class="informative">
398+
<h3>
399+
User consent
400+
</h3>
401+
<p>
402+
The <cite>Geolocation API</cite> is a [=powerful feature=] that
403+
requires [=express permission=] from an end-user before any location
404+
data is shared with a web application. This requirement is
405+
normatively enforced by the [=check permission=] steps on which the
406+
{{Geolocation/getCurrentPosition()}} and
407+
{{Geolocation/watchPosition()}} methods rely.
408+
</p>
409+
<p>
410+
An end-user will generally give [=express permission=] through a user
411+
interface, which usually present a range of permission
412+
[=permission/lifetimes=] that the end-user can choose from. The
413+
choice of [=permission/lifetimes=] vary across user agents, but they
414+
are typically time-based (e.g., "a day"), or until browser is closed,
415+
or the user might even be given the choice for the permission to be
416+
granted indefinitely. The permission [=permission/lifetimes=] dictate
417+
how long a user agent [=permission/grants=] a permission before that
418+
permission is automatically reverted back to its default [=permission
419+
state=], prompting the end-user to make a new choice upon subsequent
420+
use.
421+
</p>
422+
<p>
423+
Although the granularity of the permission [=permission/lifetime=]
424+
varies across user-agents, this specification urges user agents to
425+
limit the lifetime to a single browsing session by default (see
426+
[[[#check-permission]]] for normative requirements).
427+
</p>
428+
</section>
397429
<section id="privacy_for_recipients" class="informative">
398430
<h3>
399431
Privacy considerations for recipients of location information
@@ -835,13 +867,23 @@ <h2>
835867
</li>
836868
</ol>
837869
</section>
838-
<section>
870+
<section id="check-permission">
839871
<h2>
840872
Check permission
841873
</h2>
842874
<p>
843875
The <cite>Geolocation API</cite> is a [=default powerful feature=].
844876
</p>
877+
<p>
878+
The user agent MAY suggest time-based [=permission=]
879+
[=permission/lifetimes=], such as "24 hours", "1 week", or choose to
880+
remember the permission [permission/grant=] indefinitely. However, it
881+
is RECOMMENDED that a user agent prioritize restricting the
882+
[=permission=] [=permission/lifetime=] to a single session: This can
883+
be, for example, until the [=environment settings object/realm=] is
884+
destroyed, the end-user [=navigates=] away from the [=origin=], or
885+
the relevant browser tab is closed.
886+
</p>
845887
<p>
846888
When instructed to <dfn>check permission</dfn>, given a
847889
{{PositionErrorCallback}}`?` |errorCallback:PositionErrorCallback|:

0 commit comments

Comments
 (0)