Update web-platform-tests to revision 83b0a62af874eaf20e9d97d2fb9e15e91f3d109f

This commit is contained in:
WPT Sync Bot 2018-03-09 20:11:29 -05:00
parent 95f9e14e67
commit 3f33c72bb4
193 changed files with 1605 additions and 458 deletions

View file

@ -6,10 +6,10 @@ interface Accelerometer : Sensor {
readonly attribute double? z;
};
enum LocalCoordinateSystem { "device", "screen" };
enum AccelerometerLocalCoordinateSystem { "device", "screen" };
dictionary AccelerometerSensorOptions : SensorOptions {
LocalCoordinateSystem referenceFrame = "device";
AccelerometerLocalCoordinateSystem referenceFrame = "device";
};
[Constructor(optional AccelerometerSensorOptions options), SecureContext,