Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / CallEvent.webidl
blob5add9254d7574537b56e8ecb065e5a62680e45a9
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
7 [Constructor(DOMString type, optional CallEventInit eventInitDict), Pref="dom.telephony.enabled"]
8 interface CallEvent : Event
10   readonly attribute TelephonyCall? call;
13 dictionary CallEventInit : EventInit
15   TelephonyCall? call = null;