Implement TextDecoder#decode.

This commit is contained in:
Keith Yeung 2015-04-08 14:26:42 +02:00 committed by Ms2ger
parent c0d4e27d79
commit e2929403ef
8 changed files with 37 additions and 142 deletions

View file

@ -16,4 +16,6 @@ interface TextDecoder {
readonly attribute boolean fatal;
//readonly attribute boolean ignoreBOM;
//USVString decode(optional BufferSource input, optional TextDecodeOptions options);
[Throws]
USVString decode(optional object input);
};