https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e82634d432be4f514543198ccbeedcdca41fa4e5 authored by Luke Bjerring on 18 April 2018, 22:18:14 UTC
Cleanup several idlharness tests
Tip revision: e82634d
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