Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
51
third-party/vendor/web-sys/webidls/unstable/Clipboard.webidl
vendored
Normal file
51
third-party/vendor/web-sys/webidls/unstable/Clipboard.webidl
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/*
|
||||
* Clipboard API and events
|
||||
* W3C Working Draft, 4 June 2021
|
||||
* The origin of this IDL file is:
|
||||
* https://www.w3.org/TR/2021/WD-clipboard-apis-20210604/
|
||||
*/
|
||||
|
||||
partial interface Navigator {
|
||||
[SecureContext, SameObject] readonly attribute Clipboard? clipboard;
|
||||
};
|
||||
|
||||
typedef sequence<ClipboardItem> ClipboardItems;
|
||||
|
||||
[SecureContext, Exposed=Window] interface Clipboard : EventTarget {
|
||||
Promise<ClipboardItems> read();
|
||||
Promise<DOMString> readText();
|
||||
Promise<undefined> write(ClipboardItems data);
|
||||
Promise<undefined> writeText(DOMString data);
|
||||
};
|
||||
|
||||
typedef (DOMString or Blob) ClipboardItemDataType;
|
||||
typedef Promise<ClipboardItemDataType> ClipboardItemData;
|
||||
|
||||
callback ClipboardItemDelayedCallback = ClipboardItemData ();
|
||||
|
||||
[Exposed=Window] interface ClipboardItem {
|
||||
constructor(record<DOMString, ClipboardItemData> items,
|
||||
optional ClipboardItemOptions options = {});
|
||||
static ClipboardItem createDelayed(
|
||||
record<DOMString, ClipboardItemDelayedCallback> items,
|
||||
optional ClipboardItemOptions options = {});
|
||||
|
||||
readonly attribute PresentationStyle presentationStyle;
|
||||
readonly attribute long long lastModified;
|
||||
readonly attribute boolean delayed;
|
||||
|
||||
readonly attribute FrozenArray<DOMString> types;
|
||||
|
||||
Promise<Blob> getType(DOMString type);
|
||||
};
|
||||
|
||||
enum PresentationStyle { "unspecified", "inline", "attachment" };
|
||||
|
||||
dictionary ClipboardItemOptions {
|
||||
PresentationStyle presentationStyle = "unspecified";
|
||||
};
|
||||
|
||||
dictionary ClipboardPermissionDescriptor : PermissionDescriptor {
|
||||
boolean allowWithoutGesture = false;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue