Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
18
third-party/vendor/web-sys/webidls/enabled/ClipboardEvent.webidl
vendored
Normal file
18
third-party/vendor/web-sys/webidls/enabled/ClipboardEvent.webidl
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/*
|
||||
* Clipboard API and events
|
||||
* Editor’s Draft, 21 November 2023
|
||||
*
|
||||
* The origin of this IDL file is:
|
||||
* https://w3c.github.io/clipboard-apis/#clipboard-event-interfaces
|
||||
*/
|
||||
|
||||
dictionary ClipboardEventInit : EventInit {
|
||||
DataTransfer? clipboardData = null;
|
||||
};
|
||||
|
||||
[Exposed=Window]
|
||||
interface ClipboardEvent : Event {
|
||||
constructor(DOMString type, optional ClipboardEventInit eventInitDict = {});
|
||||
readonly attribute DataTransfer? clipboardData;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue