/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/html/mod.rs
43 строки
2 KB
Tim van der Lippe
script: Move HTML elements to `grouping_content/` (#47091)
09 авг 2026, 13:55
Не верифицирован
09 авг 2026, 13:55
7595af0
Код
Авторство
О чём код?
/* 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/. */ pub(crate) mod documentmetadata; pub(crate) use self::documentmetadata::*; pub(crate) mod embedded_content; pub(crate) use self::embedded_content::*; pub(crate) mod form_controls; pub(crate) use self::form_controls::*; pub(crate) mod grouping_content; pub(crate) use self::grouping_content::*; pub(crate) mod tabular_data; pub(crate) use self::tabular_data::*; pub(crate) mod htmlanchorelement; pub(crate) mod htmlbodyelement; pub(crate) mod htmlbrelement; pub(crate) mod htmlcollection; pub(crate) mod htmldetailselement; pub(crate) mod htmldialogelement; pub(crate) mod htmldirectoryelement; pub(crate) mod htmldocument; pub(crate) mod htmlelement; pub(crate) mod htmlfontelement; pub(crate) mod htmlformcontrolscollection; pub(crate) mod htmlheadelement; pub(crate) mod htmlheadingelement; pub(crate) mod htmlhtmlelement; pub(crate) mod htmlhyperlinkelementutils; pub(crate) mod htmlmarqueeelement; pub(crate) mod htmlmenuelement; pub(crate) mod htmlmodelement; pub(crate) mod htmloptionscollection; pub(crate) mod htmlparamelement; pub(crate) mod htmlpictureelement; pub(crate) mod htmlquoteelement; pub(crate) mod htmlscriptelement; pub(crate) mod htmlslotelement; pub(crate) mod htmlsourceelement; pub(crate) mod htmltemplateelement; pub(crate) mod htmltimeelement; pub(crate) mod htmlunknownelement; pub(crate) mod interactive_element_command;