Fix insert-adjacent error

This commit is contained in:
Guillaume Gomez 2016-06-23 15:06:27 +02:00
parent 0fb5d634a0
commit fc88f81de3
5 changed files with 3 additions and 73 deletions

View file

@ -2069,14 +2069,14 @@ impl ElementMethods for Element {
let context = match context.downcast::<Element>() {
Some(elem) if elem.local_name() != &atom!("html") ||
!elem.html_element_in_html_document() => Root::from_ref(elem),
_ => Root::upcast(HTMLBodyElement::new(atom!("body"), None, &*context.owner_doc()))
_ => Root::upcast(HTMLBodyElement::new(atom!("body"), None, &*context.owner_doc())),
};
// Step 3.
let fragment = try!(context.upcast::<Node>().parse_fragment(text));
// Step 4.
context.insert_adjacent(position, fragment.upcast()).map(|_| ())
self.insert_adjacent(position, fragment.upcast()).map(|_| ())
}
}