A bug in the wptsync caused us to miss some pushes during recent updates. This commit copies the head of wpt at the specified revision over and re-applies local patches that weren't in that revision. That means we should be able to resume normal syncs after fixing the bug. wpt-head: 55e3f8d27d6be17fa75bebe426c39cc51b3b26d4 wpt-type: landing Differential Revision: https://phabricator.services.mozilla.com/D90823
59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// 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<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;
|
|
};
|