Bug 1444940 [wpt PR 9949] - accelerometer: Rename LocalCoordinateSystem to AccelerometerLocalCoordinateSystem, a=testonly

Automatic update from web-platform-testsaccelerometer: Rename LocalCoordinateSystem to AccelerometerLocalCoordinateSystem (#9949)

Adapt to w3c/accelerometer#42.

wpt-commits: e4899e9e89673fe9b213ec71bbe3f249a5a817bd
wpt-pr: 9949
wpt-commits: e4899e9e89673fe9b213ec71bbe3f249a5a817bd
wpt-pr: 9949
This commit is contained in:
Raphael Kubo da Costa 2018-03-26 15:42:20 +00:00 committed by James Graham
parent 5d2fe76da8
commit 62965c942c
2 changed files with 3 additions and 3 deletions

View File

@ -570611,7 +570611,7 @@
"support"
],
"interfaces/accelerometer.idl": [
"6132c634314380a83c8a57647447826d95448939",
"a834258dac3ad510dec10425b9f79648547e0b42",
"support"
],
"interfaces/ambient-light.idl": [

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,