/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/html/tabular_data/htmltablecaptionelement.rs
50 строк
1 KB
Tim van der Lippe
script: Move HTML elements into `tabular_data/` (#47063)
07 авг 2026, 17:16
Не верифицирован
07 авг 2026, 17:16
da5f46f
Код
Авторство
О чём код?
/* 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/. */ use dom_struct::dom_struct; use html5ever::{LocalName, Prefix}; use js::rust::HandleObject; use crate::dom::bindings::inheritance::Castable; use crate::dom::bindings::root::DomRoot; use crate::dom::document::Document; use crate::dom::html::htmlelement::HTMLElement; use crate::dom::node::Node; #[dom_struct] pub(crate) struct HTMLTableCaptionElement { htmlelement: HTMLElement, } impl HTMLTableCaptionElement { fn new_inherited( local_name: LocalName, prefix: Option<Prefix>, document: &Document, ) -> HTMLTableCaptionElement { HTMLTableCaptionElement { htmlelement: HTMLElement::new_inherited(local_name, prefix, document), } } pub(crate) fn new( cx: &mut js::context::JSContext, local_name: LocalName, prefix: Option<Prefix>, document: &Document, proto: Option<HandleObject>, ) -> DomRoot<HTMLTableCaptionElement> { let n = Node::reflect_node_with_proto( cx, Box::new(HTMLTableCaptionElement::new_inherited( local_name, prefix, document, )), document, proto, ); n.upcast::<Node>().set_weird_parser_insertion_mode(); n } }