/* 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 dom::bindings::codegen::Bindings::DOMParserBinding; use dom::bindings::codegen::Bindings::DOMParserBinding::DOMParserMethods; use dom::bindings::codegen::Bindings::DOMParserBinding::SupportedTypeValues::{Text_html, Text_xml}; use dom::bindings::error::{Fallible, FailureUnknown}; use dom::bindings::global::GlobalRef; use dom::bindings::global; use dom::bindings::js::{JS, JSRef, Temporary}; use dom::bindings::utils::{Reflector, Reflectable, reflect_dom_object}; use dom::document::{Document, HTMLDocument, NonHTMLDocument, NotFromParser}; use dom::window::Window; use servo_util::str::DOMString; #[dom_struct] pub struct DOMParser { window: JS, //XXXjdm Document instead? reflector_: Reflector } impl DOMParser { fn new_inherited(window: JSRef) -> DOMParser { DOMParser { window: JS::from_rooted(window), reflector_: Reflector::new() } } pub fn new(window: JSRef) -> Temporary { reflect_dom_object(box DOMParser::new_inherited(window), &global::Window(window), DOMParserBinding::Wrap) } pub fn Constructor(global: &GlobalRef) -> Fallible> { Ok(DOMParser::new(global.as_window())) } } impl<'a> DOMParserMethods for JSRef<'a, DOMParser> { fn ParseFromString(self, _s: DOMString, ty: DOMParserBinding::SupportedType) -> Fallible> { let window = self.window.root(); //FIXME: these should probably be FromParser when we actually parse the string (#3756). match ty { Text_html => { Ok(Document::new(*window, None, HTMLDocument, Some("text/html".to_string()), NotFromParser)) } Text_xml => { Ok(Document::new(*window, None, NonHTMLDocument, Some("text/xml".to_string()), NotFromParser)) } _ => { Err(FailureUnknown) } } } } impl Reflectable for DOMParser { fn reflector<'a>(&'a self) -> &'a Reflector { &self.reflector_ } }