gecko-dev/testing/web-platform/tests/interfaces/orientation-sensor.idl
autofoolip b552186473 Bug 1523562 [wpt PR 15128] - Update interfaces/orientation-sensor.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/orientation-sensor.idl (#15128)

Source: https://github.com/tidoust/reffy-reports/blob/2cf7db1/whatwg/idl/orientation-sensor.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/485766725
--

wpt-commits: 1acbffcef578402832b73576ce957fb75e45cc9a
wpt-pr: 15128
2019-02-07 21:51:22 +00:00

33 lines
1.1 KiB
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Orientation Sensor (https://w3c.github.io/orientation-sensor/)
typedef (Float32Array or Float64Array or DOMMatrix) RotationMatrixType;
[SecureContext, Exposed=Window]
interface OrientationSensor : Sensor {
readonly attribute FrozenArray<double>? quaternion;
void populateMatrix(RotationMatrixType targetMatrix);
};
enum OrientationSensorLocalCoordinateSystem { "device", "screen" };
dictionary OrientationSensorOptions : SensorOptions {
OrientationSensorLocalCoordinateSystem referenceFrame = "device";
};
[Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window]
interface AbsoluteOrientationSensor : OrientationSensor {
};
[Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window]
interface RelativeOrientationSensor : OrientationSensor {
};
dictionary AbsoluteOrientationReadingValues {
required FrozenArray<double>? quaternion;
};
dictionary RelativeOrientationReadingValues : AbsoluteOrientationReadingValues {
};