/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/MessagePort.webidl
24 строки
807 B
Josh Matthews
script_bindings: Assert that serializable/transferable types have accurate WebIDL annotations (#38615)
13 авг 2025, 11:36
Не верифицирован
13 авг 2025, 11:36
bd9bb77
Код
Авторство
О чём код?
/* 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/. */ /* * The origin of this IDL file is: * https://html.spec.whatwg.org/multipage/#messageport */ [Exposed=(Window,Worker), Transferable] interface MessagePort : EventTarget { [Throws] undefined postMessage(any message, sequence<object> transfer); [Throws] undefined postMessage(any message, optional StructuredSerializeOptions options = {}); undefined start(); undefined close(); // event handlers attribute EventHandler onmessage; attribute EventHandler onmessageerror; attribute EventHandler onclose; }; dictionary StructuredSerializeOptions { sequence<object> transfer = []; };