blob: 83c0a9c4a47175d6840371f78a65b928fd7cf94a [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Specification at:
// https://w3c.github.io/accelerometer/#accelerometer-interface
[
RuntimeEnabled=Sensor,
Constructor(optional SensorOptions sensorOptions),
ConstructorCallWith=ExecutionContext,
RaisesException=Constructor,
MeasureAs=AccelerometerConstructor
] interface Accelerometer : Sensor {
readonly attribute unrestricted double? x;
readonly attribute unrestricted double? y;
readonly attribute unrestricted double? z;
};