Raw File
input-events.idl
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the
// "Input Events Level 1" spec.
// See: https://rawgit.com/w3c/input-events/v1/index.html

partial interface InputEvent {
    readonly attribute DOMString inputType;
    readonly attribute DataTransfer? dataTransfer;
    sequence<StaticRange> getTargetRanges();
};

partial dictionary InputEventInit {
    DOMString inputType = "";
    DataTransfer? dataTransfer = null;
    sequence<StaticRange> targetRanges = [];
};
back to top