LibWeb: Implement UserActivation

This commit is contained in:
Jamie Mansfield 2024-05-25 12:40:44 +01:00 committed by Andrew Kaster
commit 01bd179eef
Notes: sideshowbarker 2024-07-17 11:34:34 +09:00
11 changed files with 104 additions and 0 deletions

View file

@ -0,0 +1,6 @@
// https://html.spec.whatwg.org/multipage/interaction.html#useractivation
[Exposed=Window]
interface UserActivation {
readonly attribute boolean hasBeenActive;
readonly attribute boolean isActive;
};