Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update interfaces/wake-lock.idl #22439

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 5 additions & 14 deletions interfaces/wake-lock.idl
Original file line number Diff line number Diff line change
@@ -1,32 +1,23 @@
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Wake Lock API (https://w3c.github.io/wake-lock/)

dictionary WakeLockPermissionDescriptor : PermissionDescriptor {
required WakeLockType type;
};

enum WakeLockType { "screen", "system" };
// Source: Screen Wake Lock API (https://w3c.github.io/wake-lock/)

[SecureContext]
partial interface Navigator {
[SameObject] readonly attribute WakeLock wakeLock;
};

[SecureContext]
partial interface WorkerNavigator {
[SameObject] readonly attribute WakeLock wakeLock;
};

[SecureContext, Exposed=(DedicatedWorker, Window)]
[SecureContext, Exposed=(Window)]
interface WakeLock {
Promise<WakeLockSentinel> request(WakeLockType type);
};

[SecureContext, Exposed=(DedicatedWorker, Window)]
[SecureContext, Exposed=(Window)]
interface WakeLockSentinel : EventTarget {
readonly attribute WakeLockType type;
Promise<void> release();
attribute EventHandler onrelease;
};

enum WakeLockType { "screen" };