mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-tests Update interfaces/input-events.idl (#14552) Source: https://github.com/tidoust/reffy-reports/blob/e64cb71/whatwg/idl/input-events.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/468885960 -- wpt-commits: ae0eccd15cedaa345fbc09115e50f6e4adce4e3d wpt-pr: 14552
14 lines
497 B
Text
14 lines
497 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Input Events Level 1 (https://cdn.staticaly.com/gh/w3c/input-events/v1/index.html)
|
|
|
|
partial interface InputEvent {
|
|
readonly attribute DataTransfer? dataTransfer;
|
|
sequence<StaticRange> getTargetRanges();
|
|
};
|
|
|
|
partial dictionary InputEventInit {
|
|
DataTransfer? dataTransfer = null;
|
|
sequence<StaticRange> targetRanges = [];
|
|
};
|