https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ccef6bd283af10f72b14e455f8d9f22e3cf97424 authored by Chris Lilley on 12 April 2018, 14:39:49 UTC
test the ffs descriptor (property already tested)
Tip revision: ccef6bd
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