These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
332 B
Text
10 lines
332 B
Text
dictionary ClipboardEventInit : EventInit {
|
|
DataTransfer? clipboardData = null;
|
|
};
|
|
|
|
// https://w3c.github.io/clipboard-apis/#clipboardevent
|
|
[Exposed=Window]
|
|
interface ClipboardEvent : Event {
|
|
constructor(DOMString type, optional ClipboardEventInit eventInitDict = {});
|
|
readonly attribute DataTransfer? clipboardData;
|
|
};
|