mirror of
https://github.com/servo/servo.git
synced 2025-07-01 04:23:39 +01:00
10 lines
395 B
Text
10 lines
395 B
Text
interface Touch {
|
|
readonly attribute long identifier;
|
|
readonly attribute EventTarget target;
|
|
readonly attribute long screenX;
|
|
readonly attribute long screenY;
|
|
readonly attribute long clientX;
|
|
readonly attribute long clientY;
|
|
readonly attribute long pageX;
|
|
readonly attribute long pageY;
|
|
};
|