2013-06-18 22:48:45 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
2014-07-01 03:02:03 +04:00
|
|
|
[Constructor(DOMString type, optional DeviceOrientationEventInit eventInitDict), LegacyEventInit]
|
2013-06-18 22:48:45 +04:00
|
|
|
interface DeviceOrientationEvent : Event
|
|
|
|
{
|
2014-07-01 03:02:03 +04:00
|
|
|
readonly attribute double? alpha;
|
|
|
|
readonly attribute double? beta;
|
|
|
|
readonly attribute double? gamma;
|
2013-06-18 22:48:45 +04:00
|
|
|
readonly attribute boolean absolute;
|
|
|
|
|
|
|
|
// initDeviceOrientationEvent is a Gecko specific deprecated method.
|
|
|
|
void initDeviceOrientationEvent(DOMString type,
|
|
|
|
boolean canBubble,
|
|
|
|
boolean cancelable,
|
2014-07-01 03:02:03 +04:00
|
|
|
double? alpha,
|
|
|
|
double? beta,
|
|
|
|
double? gamma,
|
2013-06-18 22:48:45 +04:00
|
|
|
boolean absolute);
|
|
|
|
};
|
|
|
|
|
|
|
|
dictionary DeviceOrientationEventInit : EventInit
|
|
|
|
{
|
2014-07-01 03:02:03 +04:00
|
|
|
double? alpha = null;
|
|
|
|
double? beta = null;
|
|
|
|
double? gamma = null;
|
2013-06-18 22:48:45 +04:00
|
|
|
boolean absolute = false;
|
|
|
|
};
|