mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +00:00
LibWeb: Implement UserActivation
This commit is contained in:
parent
227151b881
commit
01bd179eef
Notes:
sideshowbarker
2024-07-17 11:34:34 +09:00
Author: https://github.com/jamierocks
Commit: 01bd179eef
Pull-request: https://github.com/SerenityOS/serenity/pull/24437
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/mattco98
Reviewed-by: https://github.com/tcl3
11 changed files with 104 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
#import <HTML/NavigatorOnLine.idl>
|
||||
#import <HTML/NavigatorConcurrentHardware.idl>
|
||||
#import <HTML/PluginArray.idl>
|
||||
#import <HTML/UserActivation.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/system-state.html#navigator
|
||||
[Exposed=Window]
|
||||
|
@ -17,6 +18,9 @@ interface Navigator {
|
|||
|
||||
// https://w3c.github.io/pointerevents/#extensions-to-the-navigator-interface
|
||||
readonly attribute long maxTouchPoints;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html#useractivation
|
||||
[SameObject] readonly attribute UserActivation userActivation;
|
||||
};
|
||||
|
||||
// NOTE: As NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, and NavigatorAutomationInformation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue