1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/.
6 * The origin of this IDL file is
7 * http://encoding.spec.whatwg.org/#interface-textdecoder
10 interface mixin TextDecoderCommon {
12 readonly attribute DOMString encoding;
14 readonly attribute boolean fatal;
16 readonly attribute boolean ignoreBOM;
19 [Exposed=(Window,Worker)]
20 interface TextDecoder {
22 constructor(optional DOMString label = "utf-8",
23 optional TextDecoderOptions options = {});
26 USVString decode(optional BufferSource input, optional TextDecodeOptions options = {});
28 TextDecoder includes TextDecoderCommon;
30 dictionary TextDecoderOptions {
31 boolean fatal = false;
32 boolean ignoreBOM = false;
35 dictionary TextDecodeOptions {
36 boolean stream = false;