Update web-platform-tests to revision 33fa44546cbd74796eebfd7e8a33d6fc2f4e020a

This commit is contained in:
WPT Sync Bot 2019-10-11 10:24:47 +00:00
parent 0e503a0e0c
commit e10932a8f7
2576 changed files with 7707 additions and 6192 deletions

View file

@ -22,7 +22,7 @@ dictionary TextDecodeOptions {
interface TextDecoder {
constructor(optional DOMString label = "utf-8", optional TextDecoderOptions options = {});
USVString decode(optional BufferSource input, optional TextDecodeOptions options = {});
USVString decode(optional [AllowShared] BufferSource input, optional TextDecodeOptions options = {});
};
TextDecoder includes TextDecoderCommon;
@ -40,7 +40,7 @@ interface TextEncoder {
constructor();
[NewObject] Uint8Array encode(optional USVString input = "");
TextEncoderEncodeIntoResult encodeInto(USVString source, Uint8Array destination);
TextEncoderEncodeIntoResult encodeInto(USVString source, [AllowShared] Uint8Array destination);
};
TextEncoder includes TextEncoderCommon;