mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
Automatic update from web-platform-tests Update interfaces/input-events.idl (#18718) Source: https://github.com/tidoust/reffy-reports/blob/3eeb4d0/whatwg/idl/input-events.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/577694005 -- wpt-commits: 45c2bd616d9137d8e0a282d8db2aa791b9508c98 wpt-pr: 18718
14 lines
469 B
Text
14 lines
469 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 2 (https://w3c.github.io/input-events/)
|
|
|
|
partial interface InputEvent {
|
|
readonly attribute DataTransfer? dataTransfer;
|
|
sequence<StaticRange> getTargetRanges();
|
|
};
|
|
|
|
partial dictionary InputEventInit {
|
|
DataTransfer? dataTransfer = null;
|
|
sequence<StaticRange> targetRanges = [];
|
|
};
|