/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/CommandEvent.webidl
16 строк
592 B
Luke Warlow
prefs: Remove `dom_command_invokers_enabled` (#43190)
12 мар 2026, 09:03
Не верифицирован
12 мар 2026, 09:03
a27bd9d
Код
Авторство
О чём код?
/* 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://html.spec.whatwg.org/multipage/#the-commandevent-interface [Exposed=Window] interface CommandEvent : Event { [Throws] constructor(DOMString type, optional CommandEventInit eventInitDict = {}); readonly attribute Element? source; readonly attribute DOMString command; }; dictionary CommandEventInit : EventInit { Element? source = null; DOMString command = ""; };