/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/document/mod.rs
18 строк
674 B
Tim van der Lippe
script: Move individual interfaces into subfolders (#47060)
07 авг 2026, 12:10
Не верифицирован
07 авг 2026, 12:10
33036ff
Код
Авторство
О чём код?
/* 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 accessibility_data; #[allow(clippy::module_inception, reason = "The interface name is Document")] pub(crate) mod document; pub(crate) mod document_embedder_controls; pub(crate) mod document_event_handler; pub(crate) mod documentfragment; pub(crate) mod documentorshadowroot; pub(crate) mod documenttype; pub(crate) mod focus; mod tree_ordered_index_map; pub(crate) mod visibilitystateentry; pub(crate) mod websocket; pub(crate) use self::document::*;