mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Automatic update from web-platform-tests
Update interface/ whitespace changes from reffy-reports (#20393)
A recent respec update caused a lot of whitespace changes:
https://github.com/web-platform-tests/wpt/pull/20383#issuecomment-557471644
Sync them all manually to get them out of the way.
Source: b60317f12f/ed/idl
--
wpt-commits: e030f3cdd965324531aac2c9c432b605a2f4962e
wpt-pr: 20393
28 lines
719 B
Text
28 lines
719 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Pointer Lock 2.0 (https://w3c.github.io/pointerlock/)
|
|
|
|
partial interface Element {
|
|
void requestPointerLock();
|
|
};
|
|
|
|
partial interface Document {
|
|
attribute EventHandler onpointerlockchange;
|
|
attribute EventHandler onpointerlockerror;
|
|
void exitPointerLock();
|
|
};
|
|
|
|
partial interface mixin DocumentOrShadowRoot {
|
|
readonly attribute Element ? pointerLockElement;
|
|
};
|
|
|
|
partial interface MouseEvent {
|
|
readonly attribute long movementX;
|
|
readonly attribute long movementY;
|
|
};
|
|
|
|
partial dictionary MouseEventInit {
|
|
long movementX = 0;
|
|
long movementY = 0;
|
|
};
|