/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/HTMLMetaElement.webidl
24 строки
733 B
Euclid Ye
dom: expose obsolete `scheme` attribute for meta tag (#35505)
17 фев 2025, 10:07
Не верифицирован
17 фев 2025, 10:07
d466688
Код
Авторство
О чём код?
/* 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/#htmlmetaelement [Exposed=Window] interface HTMLMetaElement : HTMLElement { [HTMLConstructor] constructor(); [CEReactions] attribute DOMString name; [CEReactions] attribute DOMString httpEquiv; [CEReactions] attribute DOMString content; // also has obsolete members }; // https://html.spec.whatwg.org/multipage/#HTMLMetaElement-partial partial interface HTMLMetaElement { [CEReactions] attribute DOMString scheme; };