author | autofoolip <auto@foolip.org> |
Wed, 26 Aug 2020 08:48:26 +0000 | |
changeset 546419 | e425f76a67bac5659b49998ce397f899dd384767 |
parent 546418 | b993cfd1a823e9f4275f45c4dd1fb12c9b482282 |
child 546420 | eb844e2c4625f0c4689eabc3400a5d5dd77c5536 |
push id | 37735 |
push user | abutkovits@mozilla.com |
push date | Thu, 27 Aug 2020 21:29:40 +0000 |
treeherder | mozilla-central@109f3a4de567 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1660086, 25115 |
milestone | 82.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
testing/web-platform/tests/interfaces/orientation-sensor.idl | file | annotate | diff | comparison | revisions |
--- a/testing/web-platform/tests/interfaces/orientation-sensor.idl +++ b/testing/web-platform/tests/interfaces/orientation-sensor.idl @@ -3,17 +3,17 @@ // (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); + undefined populateMatrix(RotationMatrixType targetMatrix); }; enum OrientationSensorLocalCoordinateSystem { "device", "screen" }; dictionary OrientationSensorOptions : SensorOptions { OrientationSensorLocalCoordinateSystem referenceFrame = "device"; };