Skip to main content

script/dom/html/
htmlbaseelement.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, local_name};
7use js::context::JSContext;
8use js::rust::HandleObject;
9use script_bindings::cell::DomRefCell;
10use servo_url::ServoUrl;
11
12use crate::dom::bindings::codegen::Bindings::HTMLBaseElementBinding::HTMLBaseElementMethods;
13use crate::dom::bindings::inheritance::Castable;
14use crate::dom::bindings::root::DomRoot;
15use crate::dom::bindings::str::DOMString;
16use crate::dom::document::Document;
17use crate::dom::element::attributes::storage::AttrRef;
18use crate::dom::element::{AttributeMutation, Element};
19use crate::dom::globalscope::GlobalScope;
20use crate::dom::html::htmlelement::HTMLElement;
21use crate::dom::node::{BindContext, Node, NodeTraits, UnbindContext};
22use crate::dom::security::csp::CspReporting;
23use crate::dom::virtualmethods::VirtualMethods;
24
25#[dom_struct]
26pub(crate) struct HTMLBaseElement {
27    htmlelement: HTMLElement,
28
29    /// <https://html.spec.whatwg.org/multipage/#frozen-base-url>
30    #[no_trace]
31    frozen_base_url: DomRefCell<Option<ServoUrl>>,
32}
33
34impl HTMLBaseElement {
35    fn new_inherited(
36        local_name: LocalName,
37        prefix: Option<Prefix>,
38        document: &Document,
39    ) -> HTMLBaseElement {
40        HTMLBaseElement {
41            htmlelement: HTMLElement::new_inherited(local_name, prefix, document),
42            frozen_base_url: Default::default(),
43        }
44    }
45
46    pub(crate) fn new(
47        cx: &mut js::context::JSContext,
48        local_name: LocalName,
49        prefix: Option<Prefix>,
50        document: &Document,
51        proto: Option<HandleObject>,
52    ) -> DomRoot<HTMLBaseElement> {
53        Node::reflect_node_with_proto(
54            cx,
55            Box::new(HTMLBaseElement::new_inherited(local_name, prefix, document)),
56            document,
57            proto,
58        )
59    }
60
61    pub(crate) fn clear_frozen_base_url(&self) {
62        *self.frozen_base_url.borrow_mut() = None;
63    }
64
65    /// <https://html.spec.whatwg.org/multipage/#set-the-frozen-base-url>
66    pub(crate) fn set_frozen_base_url(&self) {
67        // Step 1. Let document be element's node document.
68        let document = self.owner_document();
69        // Step 2. Let urlRecord be the result of parsing the value of element's href content attribute
70        // with document's fallback base URL, and document's character encoding. (Thus, the base element isn't affected by itself.)
71        let href_value = self
72            .upcast::<Element>()
73            .get_attribute_string_value(&local_name!("href"))
74            .expect("Must always have a href set when setting frozen base URL");
75        let document_fallback_url = document.fallback_base_url();
76        let url_record = document_fallback_url.join(&href_value).ok();
77        // Step 3. If any of the following are true:
78        if
79        // urlRecord is failure;
80        url_record.as_ref().is_none_or(|url_record|
81            // urlRecord's scheme is "data" or "javascript"; or
82            url_record.scheme() == "data" || url_record.scheme() == "javascript"
83            // running Is base allowed for Document? on urlRecord and document returns "Blocked",
84            || !document
85                .get_csp_list()
86                .is_base_allowed_for_document(
87                    document.window().upcast::<GlobalScope>(),
88                    &url_record.clone().into_url(),
89                    &document.origin().immutable().clone().into_url_origin(),
90                ))
91        {
92            // then set element's frozen base URL to document's fallback base URL and return.
93            *self.frozen_base_url.borrow_mut() = Some(document_fallback_url);
94            return;
95        }
96        // Step 4. Set element's frozen base URL to urlRecord.
97        *self.frozen_base_url.borrow_mut() = url_record;
98        // Step 5. Respond to base URL changes given document.
99        // TODO
100    }
101
102    /// <https://html.spec.whatwg.org/multipage/#frozen-base-url>
103    pub(crate) fn frozen_base_url(&self) -> ServoUrl {
104        self.frozen_base_url
105            .borrow()
106            .clone()
107            .expect("Must only retrieve frozen base URL for valid base elements")
108    }
109}
110
111impl HTMLBaseElementMethods<crate::DomTypeHolder> for HTMLBaseElement {
112    /// <https://html.spec.whatwg.org/multipage/#dom-base-href>
113    fn Href(&self) -> DOMString {
114        // Step 1. Let document be element's node document.
115        let document = self.owner_document();
116
117        // Step 2. Let url be the value of the href attribute of this element, if it has one, and the empty string otherwise.
118        let url = self
119            .upcast::<Element>()
120            .get_attribute_string_value(&local_name!("href"))
121            .unwrap_or_default();
122
123        // Step 3. Let urlRecord be the result of parsing url with document's fallback base URL,
124        // and document's character encoding. (Thus, the base element isn't affected by other base elements or itself.)
125        let url_record = document.fallback_base_url().join(&url);
126
127        match url_record {
128            Err(_) => {
129                // Step 4. If urlRecord is failure, return url.
130                url.into()
131            },
132            Ok(url_record) => {
133                // Step 5. Return the serialization of urlRecord.
134                url_record.into_string().into()
135            },
136        }
137    }
138
139    // https://html.spec.whatwg.org/multipage/#dom-base-href
140    make_setter!(SetHref, "href");
141}
142
143impl VirtualMethods for HTMLBaseElement {
144    fn super_type(&self) -> Option<&dyn VirtualMethods> {
145        Some(self.upcast::<HTMLElement>() as &dyn VirtualMethods)
146    }
147
148    fn attribute_mutated(
149        &self,
150        cx: &mut js::context::JSContext,
151        attr: AttrRef<'_>,
152        mutation: AttributeMutation,
153    ) {
154        self.super_type()
155            .unwrap()
156            .attribute_mutated(cx, attr, mutation);
157
158        // https://html.spec.whatwg.org/multipage/#frozen-base-url
159        if *attr.local_name() == local_name!("href") {
160            // > The base element is the first base element in tree order with an href content attribute in its Document,
161            // > and its href content attribute is changed.
162            if self.frozen_base_url.borrow().is_some() && !mutation.is_removal() {
163                self.set_frozen_base_url();
164            } else {
165                // > The base element becomes the first base element in tree order with an href content attribute in its Document.
166                let document = self.owner_document();
167                document.refresh_base_element();
168            }
169        }
170    }
171
172    fn bind_to_tree(&self, cx: &mut JSContext, context: &BindContext) {
173        self.super_type().unwrap().bind_to_tree(cx, context);
174        // https://html.spec.whatwg.org/multipage/#frozen-base-url
175        // > The base element becomes the first base element in tree order with an href content attribute in its Document.
176        let document = self.owner_document();
177        document.refresh_base_element();
178    }
179
180    fn unbind_from_tree(&self, cx: &mut JSContext, context: &UnbindContext) {
181        self.super_type().unwrap().unbind_from_tree(cx, context);
182        // https://html.spec.whatwg.org/multipage/#frozen-base-url
183        // > The base element becomes the first base element in tree order with an href content attribute in its Document.
184        let document = self.owner_document();
185        document.refresh_base_element();
186    }
187}