diff options
Diffstat (limited to 'components/script/html/hubbub_html_parser.rs')
-rw-r--r-- | components/script/html/hubbub_html_parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/html/hubbub_html_parser.rs b/components/script/html/hubbub_html_parser.rs index 4b943a4409a..27f37984517 100644 --- a/components/script/html/hubbub_html_parser.rs +++ b/components/script/html/hubbub_html_parser.rs @@ -503,7 +503,7 @@ pub fn parse_html(page: &Page, for child in scriptnode.children() { debug!("child = {:?}", child); let text: JSRef<Text> = TextCast::to_ref(child).unwrap(); - data.push_str(text.characterdata.data.borrow().as_slice()); + data.push_str(text.characterdata().data().as_slice()); } debug!("script data = {:?}", data); |