script/dom/html/
htmlhtmlelement.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5use dom_struct::dom_struct;
6use html5ever::{LocalName, Prefix};
7use js::rust::HandleObject;
8
9use crate::dom::bindings::inheritance::Castable;
10use crate::dom::bindings::root::DomRoot;
11use crate::dom::document::Document;
12use crate::dom::html::htmlelement::HTMLElement;
13use crate::dom::node::Node;
14use crate::script_runtime::CanGc;
15
16#[dom_struct]
17pub(crate) struct HTMLHtmlElement {
18    htmlelement: HTMLElement,
19}
20
21#[expect(non_snake_case)]
22impl HTMLHtmlElement {
23    fn new_inherited(
24        localName: LocalName,
25        prefix: Option<Prefix>,
26        document: &Document,
27    ) -> HTMLHtmlElement {
28        HTMLHtmlElement {
29            htmlelement: HTMLElement::new_inherited(localName, prefix, document),
30        }
31    }
32
33    pub(crate) fn new(
34        localName: LocalName,
35        prefix: Option<Prefix>,
36        document: &Document,
37        proto: Option<HandleObject>,
38        can_gc: CanGc,
39    ) -> DomRoot<HTMLHtmlElement> {
40        let n = Node::reflect_node_with_proto(
41            Box::new(HTMLHtmlElement::new_inherited(localName, prefix, document)),
42            document,
43            proto,
44            can_gc,
45        );
46
47        n.upcast::<Node>().set_weird_parser_insertion_mode();
48        n
49    }
50}