1
0
Fork 0
firefox/testing/web-platform/tests/interfaces/orientation-sensor.idl
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
988 B
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// 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;
undefined populateMatrix(RotationMatrixType targetMatrix);
};
enum OrientationSensorLocalCoordinateSystem { "device", "screen" };
dictionary OrientationSensorOptions : SensorOptions {
OrientationSensorLocalCoordinateSystem referenceFrame = "device";
};
[SecureContext, Exposed=Window]
interface AbsoluteOrientationSensor : OrientationSensor {
constructor(optional OrientationSensorOptions sensorOptions = {});
};
[SecureContext, Exposed=Window]
interface RelativeOrientationSensor : OrientationSensor {
constructor(optional OrientationSensorOptions sensorOptions = {});
};