diff options
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r-- | src/components/script/html/hubbub_html_parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs index de396368206..baacfcef52c 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -379,7 +379,7 @@ pub fn parse_html(page: &Page, SvgNs => namespace::SVG, ns => fail!("Not expecting namespace {:?}", ns), }; - let mut element: Root<Element> = build_element_from_tag(tag.name.clone(), namespace, *tmp).root(); + let element: Root<Element> = build_element_from_tag(tag.name.clone(), namespace, *tmp).root(); debug!("-- attach attrs"); for attr in tag.attributes.iter() { |