Automatic update from web-platform-tests Sync interfaces/ with @webref/idl 3.45.1 (#44974) Co-authored-by: wpt-pr-bot <wpt-pr-bot@users.noreply.github.com> -- wpt-commits: cea69e33dac7011aeda11cb114ce58e283e0ffe2 wpt-pr: 44974
42 lines
955 B
Plaintext
42 lines
955 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Permissions (https://w3c.github.io/permissions/)
|
|
|
|
[Exposed=(Window)]
|
|
partial interface Navigator {
|
|
[SameObject] readonly attribute Permissions permissions;
|
|
};
|
|
|
|
[Exposed=(Worker)]
|
|
partial interface WorkerNavigator {
|
|
[SameObject] readonly attribute Permissions permissions;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface Permissions {
|
|
Promise<PermissionStatus> query(object permissionDesc);
|
|
};
|
|
|
|
dictionary PermissionDescriptor {
|
|
required DOMString name;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface PermissionStatus : EventTarget {
|
|
readonly attribute PermissionState state;
|
|
readonly attribute DOMString name;
|
|
attribute EventHandler onchange;
|
|
};
|
|
|
|
enum PermissionState {
|
|
"granted",
|
|
"denied",
|
|
"prompt",
|
|
};
|
|
|
|
dictionary PermissionSetParameters {
|
|
required object descriptor;
|
|
required PermissionState state;
|
|
};
|