Update web-platform-tests to revision ebeb032b23de5abb7f9fd7fffcf471eaa6e2c154

This commit is contained in:
WPT Sync Bot 2019-08-10 10:26:11 +00:00
parent b3c0ed295f
commit a45a4f8e2b
55 changed files with 895 additions and 104 deletions

View file

@ -18,10 +18,10 @@ dictionary TextDecodeOptions {
boolean stream = false;
};
[Constructor(optional DOMString label = "utf-8", optional TextDecoderOptions options),
[Constructor(optional DOMString label = "utf-8", optional TextDecoderOptions options = {}),
Exposed=(Window,Worker)]
interface TextDecoder {
USVString decode(optional BufferSource input, optional TextDecodeOptions options);
USVString decode(optional BufferSource input, optional TextDecodeOptions options = {});
};
TextDecoder includes TextDecoderCommon;