Update web-platform-tests to revision 2332a6bd8ab3d47986492a44d7a0455dfb4ad823

This commit is contained in:
WPT Sync Bot 2019-08-04 10:26:10 +00:00
parent d2856ce8ae
commit c789859814
350 changed files with 5147 additions and 1855 deletions

View file

@ -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;
};