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
This commit is contained in:
autofoolip 2019-02-01 13:41:18 +00:00 коммит произвёл James Graham
Родитель 275e88f6d9
Коммит e1bfa1684c
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -24,3 +24,10 @@ interface AbsoluteOrientationSensor : OrientationSensor {
[Constructor(optional OrientationSensorOptions sensorOptions), SecureContext, Exposed=Window]
interface RelativeOrientationSensor : OrientationSensor {
};
dictionary AbsoluteOrientationReadingValues {
required FrozenArray<double>? quaternion;
};
dictionary RelativeOrientationReadingValues : AbsoluteOrientationReadingValues {
};