mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
28e6efeeaa
--HG-- rename : dom/icc/interfaces/nsIDOMICCCardLockErrorEvent.idl => dom/icc/interfaces/nsIDOMIccCardLockErrorEvent.idl
25 lines
881 B
Plaintext
25 lines
881 B
Plaintext
/* 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/. */
|
|
|
|
#include "nsIDOMEvent.idl"
|
|
|
|
[scriptable, builtinclass, uuid(47d4db10-a258-11e2-9e96-0800200c9a66)]
|
|
interface nsIDOMIccCardLockErrorEvent : nsIDOMEvent
|
|
{
|
|
readonly attribute DOMString lockType;
|
|
readonly attribute long retryCount;
|
|
|
|
[noscript] void initIccCardLockErrorEvent(in DOMString aType,
|
|
in boolean aCanBubble,
|
|
in boolean aCancelable,
|
|
in DOMString aLockType,
|
|
in int32_t aRetryCount);
|
|
};
|
|
|
|
dictionary IccCardLockErrorEventInit : EventInit
|
|
{
|
|
DOMString lockType;
|
|
long retryCount;
|
|
};
|