servo-script 0.4.0

A component of the servo web-engine.
Documentation
/* 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)
    }
}