/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/HTMLDetailsElement.webidl
12 строк
458 B
Simon Wülker
script: Enforce exclusivity between <details> elements in the same tree (#40314)
05 ноя 2025, 00:54
Не верифицирован
05 ноя 2025, 00:54
46e6d07
Код
Авторство
О чём код?
/* 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/#htmldetailselement [Exposed=Window] interface HTMLDetailsElement : HTMLElement { [HTMLConstructor] constructor(); [CEReactions] attribute DOMString name; [CEReactions] attribute boolean open; };