mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
16 lines
515 B
Text
16 lines
515 B
Text
// 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 = [];
|
|
};
|