Revision dc2b10130978a3ebec39ccddade8cbbfcc7bb715 authored by Adam Rice on 09 March 2018, 14:01:55 UTC, committed by Domenic Denicola on 14 March 2018, 05:15:54 UTC
Verify that abort(), abort(undefined) and abort('string') all work as
expected, when called on a writer. The reason must be reflected in
rejections received from the object.
1 parent d69705f
Raw File
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