https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 04f42da4f68238031149ae1d0daa8d5b074f3c22 authored by Boris Zbarsky on 04 April 2018, 17:30:07 UTC
Remove support for the 'type' parameter to document.open.
Tip revision: 04f42da
gyroscope.idl
[Constructor(optional GyroscopeSensorOptions sensorOptions), SecureContext, Exposed=Window]
interface Gyroscope : Sensor {
  readonly attribute double? x;
  readonly attribute double? y;
  readonly attribute double? z;
};

enum GyroscopeLocalCoordinateSystem { "device", "screen" };

dictionary GyroscopeSensorOptions : SensorOptions {
  GyroscopeLocalCoordinateSystem referenceFrame = "device";
};
back to top