WakeLockSentinel: released property

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The released read-only property of the WakeLockSentinel interface returns a boolean that indicates whether a WakeLockSentinel has been released.

The WakeLockSentinel is released when the associated platform screen wake lock is revoked; afterwards released will always return true. If a subsequent screen wake lock is required, the application will need to request a new screen wake lock (the current WakeLockSentinel cannot be reused).

Value

A boolean value that is false until the WakeLockSentinel has been released (either through a call to WakeLockSentinel.release() or because the lock has been released automatically) and the release event has been emitted, after which it becomes true and no longer changes.

Examples

This example shows how the value of the released property changes within a WakeLockSentinel's life cycle.

js
const sentinel = await navigator.wakeLock.request("screen");
console.log(sentinel.released); // Logs "false"

sentinel.onrelease = () => {
  console.log(sentinel.released); // Logs "true"
};

await sentinel.release();

Specifications

Specification
Screen Wake Lock API
# dom-wakelocksentinel-released

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
released

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
Partial support
Partial support

See also