/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/HTMLStyleElement.webidl
17 строк
596 B
Tim van der Lippe
script: Support blocking attribute for style and link elements (#42096)
26 янв 2026, 12:12
Не верифицирован
26 янв 2026, 12:12
1347230
Код
Авторство
О чём код?
/* 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/#htmlstyleelement [Exposed=Window] interface HTMLStyleElement : HTMLElement { [HTMLConstructor] constructor(); attribute boolean disabled; [CEReactions] attribute DOMString media; [CEReactions] attribute DOMString type; [SameObject, PutForwards=value] readonly attribute DOMTokenList blocking; }; HTMLStyleElement includes LinkStyle;