blob: 0204bf53424826b04be7bce2c34e429332a527a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Pointer Lock 2.0 (https://w3c.github.io/pointerlock/)
partial interface Element {
undefined requestPointerLock();
};
partial interface Document {
attribute EventHandler onpointerlockchange;
attribute EventHandler onpointerlockerror;
undefined exitPointerLock();
};
partial interface mixin DocumentOrShadowRoot {
readonly attribute Element ? pointerLockElement;
};
partial interface MouseEvent {
readonly attribute double movementX;
readonly attribute double movementY;
};
partial dictionary MouseEventInit {
double movementX = 0;
double movementY = 0;
};
|