Bug 1599740 [wpt PR 20475] - Update interfaces/web-nfc.idl, a=testonly

Automatic update from web-platform-tests
Update interfaces/web-nfc.idl (#20475)

Source: https://github.com/tidoust/reffy-reports/blob/497ccc2/ed/idl/web-nfc.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/617704186
--

wpt-commits: a0a7b10883628e5b77cedf70fe597d7e9b9d82fa
wpt-pr: 20475
This commit is contained in:
autofoolip 2019-12-02 13:31:44 +00:00 committed by moz-wptsync-bot
parent 26d0a169ca
commit cc69ecff59

View File

@ -13,6 +13,8 @@ dictionary NDEFMessageInit {
required sequence<NDEFRecordInit> records;
};
typedef (DOMString or BufferSource or NDEFMessageInit) NDEFRecordDataSource;
[Exposed=Window]
interface NDEFRecord {
constructor(NDEFRecordInit recordInit);
@ -36,7 +38,7 @@ dictionary NDEFRecordInit {
USVString encoding;
USVString lang;
any data;
NDEFRecordDataSource data;
};
typedef (DOMString or BufferSource or NDEFMessageInit) NDEFMessageSource;