https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7ca7cb4a359d31546505db3b4eb7feb90e69fa4a authored by Marijn Kruisselbrink on 24 May 2018, 23:04:36 UTC
[Mojo Blob URLs] Handle more navigation cases.
Tip revision: 7ca7cb4
gamepad.idl
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the Gamepad spec.
// See https://w3c.github.io/gamepad/

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