<!-- Please describe your changes on the following line: --> This PR allows different `Window` objects in the same browsing context to share a `BrowsingContext` object. SpiderMonkey requires a `WindowProxy` object to be in the same compartment as its `Window`, so when a `WindowProxy` changes `Window`, we have to brain-transplant it. In turn this requires the reflector of a `BrowsingContext` to be mutable. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #13608 and #14843 - [X] These changes do not require tests because an existing test catches this (`/html/browsers/the-window-object/Window-document.html` is now `PASS`) <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: 67c182638253211553161495cd2e4570002fd5bc
98 lines
4.3 KiB
Rust
98 lines
4.3 KiB
Rust
/* 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
use document_loader::DocumentLoader;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::DOMParserMethods;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Application_xhtml_xml;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Application_xml;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Text_html;
|
|
use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedType::Text_xml;
|
|
use dom::bindings::codegen::Bindings::DocumentBinding::DocumentReadyState;
|
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
|
use dom::bindings::error::Fallible;
|
|
use dom::bindings::js::{JS, Root};
|
|
use dom::bindings::reflector::{Reflector, reflect_dom_object};
|
|
use dom::bindings::str::DOMString;
|
|
use dom::document::{Document, HasBrowsingContext, IsHTMLDocument};
|
|
use dom::document::DocumentSource;
|
|
use dom::servoparser::ServoParser;
|
|
use dom::window::Window;
|
|
use script_traits::DocumentActivity;
|
|
|
|
#[dom_struct]
|
|
pub struct DOMParser {
|
|
reflector_: Reflector,
|
|
window: JS<Window>, // XXXjdm Document instead?
|
|
}
|
|
|
|
impl DOMParser {
|
|
fn new_inherited(window: &Window) -> DOMParser {
|
|
DOMParser {
|
|
reflector_: Reflector::new(),
|
|
window: JS::from_ref(window),
|
|
}
|
|
}
|
|
|
|
pub fn new(window: &Window) -> Root<DOMParser> {
|
|
reflect_dom_object(box DOMParser::new_inherited(window),
|
|
window,
|
|
DOMParserBinding::Wrap)
|
|
}
|
|
|
|
pub fn Constructor(window: &Window) -> Fallible<Root<DOMParser>> {
|
|
Ok(DOMParser::new(window))
|
|
}
|
|
}
|
|
|
|
impl DOMParserMethods for DOMParser {
|
|
// https://w3c.github.io/DOM-Parsing/#the-domparser-interface
|
|
fn ParseFromString(&self,
|
|
s: DOMString,
|
|
ty: DOMParserBinding::SupportedType)
|
|
-> Fallible<Root<Document>> {
|
|
let url = self.window.get_url();
|
|
let content_type =
|
|
DOMString::from(DOMParserBinding::SupportedTypeValues::strings[ty as usize]);
|
|
let doc = self.window.Document();
|
|
let loader = DocumentLoader::new(&*doc.loader());
|
|
match ty {
|
|
Text_html => {
|
|
let document = Document::new(&self.window,
|
|
HasBrowsingContext::No,
|
|
Some(url.clone()),
|
|
doc.origin().alias(),
|
|
IsHTMLDocument::HTMLDocument,
|
|
Some(content_type),
|
|
None,
|
|
DocumentActivity::Inactive,
|
|
DocumentSource::FromParser,
|
|
loader,
|
|
None,
|
|
None);
|
|
ServoParser::parse_html_document(&document, s, url);
|
|
document.set_ready_state(DocumentReadyState::Complete);
|
|
Ok(document)
|
|
}
|
|
Text_xml | Application_xml | Application_xhtml_xml => {
|
|
// FIXME: this should probably be FromParser when we actually parse the string (#3756).
|
|
let document = Document::new(&self.window,
|
|
HasBrowsingContext::No,
|
|
Some(url.clone()),
|
|
doc.origin().alias(),
|
|
IsHTMLDocument::NonHTMLDocument,
|
|
Some(content_type),
|
|
None,
|
|
DocumentActivity::Inactive,
|
|
DocumentSource::NotFromParser,
|
|
loader,
|
|
None,
|
|
None);
|
|
ServoParser::parse_xml_document(&document, s, url);
|
|
Ok(document)
|
|
}
|
|
}
|
|
}
|
|
}
|