mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb: Begin implementing the Clipboard API
https://w3c.github.io/clipboard-apis/ This implements enough for navigator.clipboard.writeText(String).
This commit is contained in:
parent
78d455e231
commit
4b94b0b561
Notes:
sideshowbarker
2024-07-17 00:59:43 +09:00
Author: https://github.com/trflynn89
Commit: 4b94b0b561
Pull-request: https://github.com/SerenityOS/serenity/pull/21878
14 changed files with 303 additions and 0 deletions
|
@ -47,6 +47,12 @@ public:
|
|||
// https://html.spec.whatwg.org/multipage/canvas.html#canvas-blob-serialisation-task-source
|
||||
CanvasBlobSerializationTask,
|
||||
|
||||
// https://w3c.github.io/clipboard-apis/#clipboard-task-source
|
||||
Clipboard,
|
||||
|
||||
// https://w3c.github.io/permissions/#permissions-task-source
|
||||
Permissions,
|
||||
|
||||
// !!! IMPORTANT: Keep this field last!
|
||||
// This serves as the base value of all unique task sources.
|
||||
// Some elements, such as the HTMLMediaElement, must have a unique task source per instance.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue