Backed out 2 changesets (bug 1908320) for causing wr failures on align-items-baseline...
[gecko.git] / dom / webidl / CompressionStream.webidl
blob16c9af0ac1e6c29e1d3ac06b402c69a8251dd0fb
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  * https://wicg.github.io/compression/#compression-stream
8  */
10 enum CompressionFormat {
11   "deflate",
12   "deflate-raw",
13   "gzip",
16 [Exposed=*, Pref="dom.compression_streams.enabled"]
17 interface CompressionStream {
18   [Throws]
19   constructor(CompressionFormat format);
21 CompressionStream includes GenericTransformStream;