mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b8f4b31669
From 28e46b34f04d20d5f10c14a85e77ec1ac98aad9e Mon Sep 17 00:00:00 2001 --- dom/apps/PermissionsTable.jsm | 9 +++++++-- dom/nfc/nsNfc.js | 9 +++++---- dom/webidl/MozNFC.webidl | 8 ++------ dom/webidl/MozNFCPeer.webidl | 2 +- dom/webidl/MozNFCPeerEvent.webidl | 2 +- dom/webidl/MozNFCTagEvent.webidl | 2 +- 6 files changed, 17 insertions(+), 15 deletions(-)
30 lines
825 B
Plaintext
30 lines
825 B
Plaintext
/* -*- 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/.
|
|
*/
|
|
|
|
[Constructor(DOMString type, optional MozNFCTagEventInit eventInitDict),
|
|
Func="Navigator::HasNFCSupport", CheckPermissions="nfc",
|
|
AvailableIn="CertifiedApps"]
|
|
interface MozNFCTagEvent : Event
|
|
{
|
|
/**
|
|
* The detected NFCTag.
|
|
*/
|
|
readonly attribute MozNFCTag? tag;
|
|
|
|
/**
|
|
* The MozNDEFRecords pre-read during tag-discovered.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute sequence<MozNDEFRecord>? ndefRecords;
|
|
};
|
|
|
|
dictionary MozNFCTagEventInit : EventInit
|
|
{
|
|
MozNFCTag? tag = null;
|
|
|
|
sequence<MozNDEFRecord>? ndefRecords = [];
|
|
};
|