mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
8687d34336
--HG-- extra : amend_source : 73ed6e6bccb6b39d7aafd5851bb836a46bcd4e10
17 lines
524 B
Plaintext
17 lines
524 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
[Pref="dom.flyweb.enabled"]
|
|
interface FlyWebWebSocketEvent : Event {
|
|
[SameObject] readonly attribute Request request;
|
|
|
|
[Throws]
|
|
WebSocket accept(optional DOMString protocol);
|
|
|
|
[Throws]
|
|
void respondWith(Promise<Response> r);
|
|
};
|