Automatic update from web-platform-tests Migrate isInputPending options class to dictionary Updates the API for isInputPending and associated tests to accept a dictionary object for parameterization directly, making it compliant with the updated spec. Bug: 910421 Change-Id: I39e569ee6215044a9b59a8834d19cac76915cb9c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2425138 Reviewed-by: Kentaro Hara <haraken@chromium.org> Commit-Queue: Andrew Comminos <acomminos@fb.com> Cr-Commit-Position: refs/heads/master@{#810490} -- wpt-commits: 0c112f38ee0040ba788d927e73b1ab1a7b856230 wpt-pr: 25702
17 lines
495 B
Plaintext
17 lines
495 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Early detection of input events (https://wicg.github.io/is-input-pending/)
|
|
|
|
dictionary IsInputPendingOptions {
|
|
boolean includeContinuous = false;
|
|
};
|
|
|
|
[Exposed=Window] interface Scheduling {
|
|
boolean isInputPending(optional IsInputPendingOptions isInputPendingOptions);
|
|
};
|
|
|
|
partial interface Navigator {
|
|
readonly attribute Scheduling scheduling;
|
|
};
|