From f29efcd9b68286cafc0908ce97f822580488c22d Mon Sep 17 00:00:00 2001 From: autofoolip Date: Tue, 6 Aug 2019 17:28:32 +0000 Subject: [PATCH] Bug 1571179 [wpt PR 18266] - Update interfaces/web-nfc.idl, a=testonly Automatic update from web-platform-tests Update interfaces/web-nfc.idl (#18266) Source: https://github.com/tidoust/reffy-reports/blob/c3773f7/whatwg/idl/web-nfc.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/567225403 -- wpt-commits: ee257bdb4ecd061513b43dfb9582f700a32b93cd wpt-pr: 18266 --- testing/web-platform/tests/interfaces/web-nfc.idl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/web-platform/tests/interfaces/web-nfc.idl b/testing/web-platform/tests/interfaces/web-nfc.idl index 13afc27663da..f082a1e8952c 100644 --- a/testing/web-platform/tests/interfaces/web-nfc.idl +++ b/testing/web-platform/tests/interfaces/web-nfc.idl @@ -20,6 +20,7 @@ typedef (DOMString or unrestricted double or ArrayBuffer or object) NDEFRecordDa interface NDEFRecord { readonly attribute NDEFRecordType recordType; readonly attribute USVString mediaType; + USVString toText(); [NewObject] ArrayBuffer toArrayBuffer(); [NewObject] object toJSON(); @@ -28,6 +29,7 @@ interface NDEFRecord { dictionary NDEFRecordInit { NDEFRecordType recordType; USVString mediaType; + NDEFRecordData data; };