Revision 67c2a8716f759462e96f384d3f207a5e1b8b3add authored by Luke Bjerring on 06 April 2018, 00:54:18 UTC, committed by GitHub on 06 April 2018, 00:54:18 UTC
1 parent 99b9072
Raw File
touchevents.idl
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;
};
back to top