Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / webidl / WebTransportError.webidl
blob1484d65bf4b9c2acf6e6ecb3983a1fba4f042d30
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
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /* https://w3c.github.io/webtransport/#web-transport-error-interface */
8 [Exposed=(Window,Worker), SecureContext, Pref="network.webtransport.enabled"]
9 interface WebTransportError : DOMException {
10   constructor(optional WebTransportErrorInit init = {});
12   readonly attribute WebTransportErrorSource source;
13   readonly attribute octet? streamErrorCode;
16 dictionary WebTransportErrorInit {
17   [Clamp] octet streamErrorCode;
18   DOMString message;
21 enum WebTransportErrorSource {
22   "stream",
23   "session",