tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

WebTransportError.webidl (794B)


      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/. */
      5 
      6 /* https://w3c.github.io/webtransport/#web-transport-error-interface */
      7 
      8 [Exposed=(Window,Worker), SecureContext, Pref="network.webtransport.enabled"]
      9 interface WebTransportError : DOMException {
     10  constructor(optional WebTransportErrorInit init = {});
     11 
     12  readonly attribute WebTransportErrorSource source;
     13  readonly attribute octet? streamErrorCode;
     14 };
     15 
     16 dictionary WebTransportErrorInit {
     17  [Clamp] octet streamErrorCode;
     18  DOMString message;
     19 };
     20 
     21 enum WebTransportErrorSource {
     22  "stream",
     23  "session",
     24 };