author | Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> |
Mon, 09 Apr 2018 16:37:37 +0000 | |
changeset 413489 | 545c0ad0a16ed7458f4fdd11be6a0b435044417d |
parent 413488 | 08d5e8e3b38aed00ca5589a1c44c2998f9ed540f |
child 413490 | 32da77c494a3d4b56c06e575956c0a9a862e3d6e |
push id | 33850 |
push user | apavel@mozilla.com |
push date | Mon, 16 Apr 2018 09:53:48 +0000 |
treeherder | mozilla-central@6276ec7ebbf3 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1452151 |
milestone | 61.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/meta/MANIFEST.json | file | annotate | diff | comparison | revisions | |
testing/web-platform/tests/interfaces/orientation-sensor.idl | file | annotate | diff | comparison | revisions |
--- a/testing/web-platform/meta/MANIFEST.json +++ b/testing/web-platform/meta/MANIFEST.json @@ -571779,17 +571779,17 @@ "78fdc6ec345a5f05e86cb104cb025689638bbe17", "support" ], "interfaces/mediacapture-main.idl": [ "3400c775504ebf32af3f8e1165a53ca60f258495", "support" ], "interfaces/orientation-sensor.idl": [ - "d75a765c9456c21ed2733fa89a20f3e2d0eb2131", + "1f0698a8611726b1ba724a5d7a0961e836c7b07e", "support" ], "interfaces/payment-handler.idl": [ "ddd283da0dadaffb3403652651c30f0f59007331", "support" ], "interfaces/payment-request.idl": [ "b61ab0da4aa0f89f4af1b7d8c5f32f2bde90fd35",
--- a/testing/web-platform/tests/interfaces/orientation-sensor.idl +++ b/testing/web-platform/tests/interfaces/orientation-sensor.idl @@ -1,20 +1,20 @@ typedef (Float32Array or Float64Array or DOMMatrix) RotationMatrixType; [SecureContext, Exposed=Window] interface OrientationSensor : Sensor { readonly attribute FrozenArray<double>? quaternion; void populateMatrix(RotationMatrixType targetMatrix); }; -enum LocalCoordinateSystem { "device", "screen" }; +enum OrientationSensorLocalCoordinateSystem { "device", "screen" }; dictionary OrientationSensorOptions : SensorOptions { - LocalCoordinateSystem referenceFrame = "device"; + OrientationSensorLocalCoordinateSystem referenceFrame = "device"; }; [Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window] interface AbsoluteOrientationSensor : OrientationSensor { }; [Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window] interface RelativeOrientationSensor : OrientationSensor {