Revision 71b44f991df620aa9c06497b4049e720d1bce3aa authored by Raphael Kubo da Costa on 13 March 2018, 09:07:09 UTC, committed by Wanming Lin on 13 March 2018, 09:07:09 UTC
Call it `OrientationSensorLocalCoordinateSystem` per
w3c/orientation-sensor#56.
1 parent 8f7d065
Raw File
gamepad.idl
interface Gamepad {
    readonly attribute DOMString                  id;
    readonly attribute long                       index;
    readonly attribute boolean                    connected;
    readonly attribute DOMHighResTimeStamp        timestamp;
    readonly attribute GamepadMappingType         mapping;
    readonly attribute FrozenArray<double>        axes;
    readonly attribute FrozenArray<GamepadButton> buttons;
};

interface GamepadButton {
    readonly attribute boolean pressed;
    readonly attribute boolean touched;
    readonly attribute double  value;
};

enum GamepadMappingType {
    "",
    "standard",
};

partial interface Navigator {
    sequence<Gamepad?> getGamepads();
};

[Constructor(GamepadEventInit eventInitDict)]
interface GamepadEvent : Event {
    readonly attribute Gamepad gamepad;
};

dictionary GamepadEventInit : EventInit {
    required Gamepad gamepad;
};
back to top