/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/testing/testns.rs
21 строка
799 B
niya
script: expose static attributes of webidl namespace to javascript (#45378)
08 июн 2026, 11:21
Не верифицирован
08 июн 2026, 11:21
0736bad
Код
Авторство
О чём код?
/* 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/. */ // check-tidy: no specs after this line use js::context::JSContext; use crate::dom::bindings::codegen::Bindings::TestBindingBinding::TestNS_Binding; use crate::dom::bindings::root::DomRoot; use crate::dom::globalscope::GlobalScope; use crate::dom::testbinding::TestBinding; #[cfg_attr(crown, crown::unrooted_must_root_lint::must_root)] pub(crate) struct TestNS(()); impl TestNS_Binding::TestNSMethods<crate::DomTypeHolder> for TestNS { fn TestAttribute(cx: &mut JSContext, global_scope: &GlobalScope) -> DomRoot<TestBinding> { TestBinding::new(cx, global_scope, None) } }