Features gated by user activation

To ensure applications are unable to abuse APIs that can create a bad user experience when the behavior is not desired, some APIs can only be used when the user is in an "active interaction" state, meaning the user is currently interacting with the web page, or has interacted with the page at least once. Browsers limit access to sensitive APIs like popups, fullscreen, or vibration APIs to active user interactions to prevent malicious scripts from abusing these features. This page lists web platform features available only after user activation.

A user activation either implies that the user is currently interacting with the page, or has completed an interaction since page load. Typically, this is a click on a button or some other interaction with the UI.

More precisely, an activation triggering input event is an event which:

If an activation has been triggered, the user agent differentiates between two types of user activation window states: sticky and transient.

Comparison between transient and sticky activation

The difference between transient and sticky activation is that transient activation only lasts for a short while, and may in some cases be consumed (deactivated) when a protected feature is used, while sticky activation persists until the end of the session.

Gating features on transient activation ensures that they are only available if directly triggered by a user. Sticky activation, by contrast, is primarily used to restrict features that should not automatically trigger on page load, such as popups.

Transient activation

Transient activation is a window state that indicates a user has recently pressed a button or performed some other user interaction. Transient activation expires after a timeout (if not renewed by further interaction) and may also be consumed by some APIs (like Window.open()).

APIs that require transient activation (list is not exhaustive):

Sticky activation

Sticky activation is a window state that indicates a user has at some time in the session pressed a button, used a menu, or performed some other user interaction. It is not reset after it has been set initially (unlike transient activation).

APIs that require sticky activation (not exhaustive):

UserActivation API

To programmatically determine if a window has either sticky or transient user activation, the UserActivation API provides two properties which are available using navigator.userActivation:

See also