Bug 1270832 - Activate standard c++ library hardening r=glandium
[gecko.git] / dom / webidl / TextDecoder.webidl
blobfc01d7c8f7d8583d25fbdceb48f009468c7cda4b
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/.
5  *
6  * The origin of this IDL file is
7  * http://encoding.spec.whatwg.org/#interface-textdecoder
8  */
10 interface mixin TextDecoderCommon {
11   [Constant]
12   readonly attribute DOMString encoding;
13   [Constant]
14   readonly attribute boolean fatal;
15   [Constant]
16   readonly attribute boolean ignoreBOM;
19 [Exposed=(Window,Worker)]
20 interface TextDecoder {
21   [Throws]
22   constructor(optional DOMString label = "utf-8",
23               optional TextDecoderOptions options = {});
25   [Throws]
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;