/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/window/mod.rs
15 строк
579 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) use self::window::*; pub(crate) mod dissimilaroriginlocation; pub(crate) mod dissimilaroriginwindow; pub(crate) mod history; pub(crate) mod location; pub(crate) mod screen; pub(crate) mod scrolling_box; pub(crate) mod useractivation; #[allow(clippy::module_inception, reason = "The interface name is Window")] pub(crate) mod window; pub(crate) mod windowproxy;