gecko-dev/testing/web-platform/tests/interfaces/input-events.idl
autofoolip 3a955ccad7 Bug 1577088 [wpt PR 18718] - Update interfaces/input-events.idl, a=testonly
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
2019-09-03 14:23:07 +00:00

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 = [];
};