/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/AbortController.webidl
13 строк
458 B
Gregory Terzian
dom: implement signal method on abort controller (#37217)
02 июн 2025, 16:20
Не верифицирован
02 июн 2025, 16:20
99add66
Код
Авторство
О чём код?
/* 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 https://mozilla.org/MPL/2.0/. */ // https://dom.spec.whatwg.org/#interface-abortcontroller [Exposed=*, Pref="dom_abort_controller_enabled"] interface AbortController { constructor(); [SameObject] readonly attribute AbortSignal signal; undefined abort(optional any reason); };