oden/third-party/vendor/web-sys/webidls/enabled/UserActivation.webidl
2024-03-08 11:03:01 -08:00

9 lines
229 B
Text

[Exposed=Window]
interface UserActivation {
readonly attribute boolean hasBeenActive;
readonly attribute boolean isActive;
};
partial interface Navigator {
[SameObject] readonly attribute UserActivation userActivation;
};