/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/StyleSheet.webidl
22 строки
756 B
Simon Wülker
Rename `Stylesheet::Type_` to `Stylesheet::Type` (#37126)
25 май 2025, 20:36
Не верифицирован
25 май 2025, 20:36
41ecfb5
Код
Авторство
О чём код?
/* 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://drafts.csswg.org/cssom/#the-stylesheet-interface [Exposed=Window] interface StyleSheet { readonly attribute DOMString type; readonly attribute DOMString? href; readonly attribute Element? ownerNode; // readonly attribute StyleSheet? parentStyleSheet; readonly attribute DOMString? title; [SameObject, PutForwards=mediaText] readonly attribute MediaList media; attribute boolean disabled; }; // https://drafts.csswg.org/cssom/#the-linkstyle-interface interface mixin LinkStyle { readonly attribute StyleSheet? sheet; };