mirror of
https://github.com/servo/servo.git
synced 2025-10-14 23:40:26 +01:00
58 lines
1.8 KiB
Text
58 lines
1.8 KiB
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Clipboard API and events (https://w3c.github.io/clipboard-apis/)
|
|
|
|
dictionary ClipboardEventInit : EventInit {
|
|
DataTransfer? clipboardData = null;
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface ClipboardEvent : Event {
|
|
constructor(DOMString type, optional ClipboardEventInit eventInitDict = {});
|
|
readonly attribute DataTransfer? clipboardData;
|
|
};
|
|
|
|
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<void> write(ClipboardItems data);
|
|
Promise<void> 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;
|
|
};
|