blob: 74bc693fa5d7e92d95db59902a1f2b66ce209d3f [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-reading-interface
[
RuntimeEnabled=Sensor,
Constructor(AccelerometerReadingInit accelerometerReadingInit)
] interface AccelerometerReading : SensorReading {
readonly attribute unrestricted double x;
readonly attribute unrestricted double y;
readonly attribute unrestricted double z;
};