diff options
author | bors-servo <release+servo@mozilla.com> | 2014-04-17 18:04:10 -0400 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2014-04-17 18:04:10 -0400 |
commit | 0b1c8bf8d6a628c9483e94f048d1ff95e65d5da8 (patch) | |
tree | 8e57ee15d3eff05941be473202b72d55d3b6ffac /src/components/script/html | |
parent | b3bc44913717a632bfb1787e391aa5a407f8d98b (diff) | |
parent | 742f73ded59eb9e9f4208642e053ddbfc48bce73 (diff) | |
download | servo-0b1c8bf8d6a628c9483e94f048d1ff95e65d5da8.tar.gz servo-0b1c8bf8d6a628c9483e94f048d1ff95e65d5da8.zip |
auto merge of #2147 : jdm/servo/untraceable, r=Ms2ger
...actices, and replace ad-hoc Untraceable structs with empty Encodable implementations.
Diffstat (limited to 'src/components/script/html')
-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 c7c4e79b165..b9dd26311ff 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -252,7 +252,7 @@ pub fn parse_html(page: &Page, resource_task: ResourceTask) -> HtmlParserResult { debug!("Hubbub: parsing {:?}", url); - let next_subpage_id: SubpageId = *page.next_subpage_id.borrow(); + let next_subpage_id: SubpageId = *page.next_subpage_id.deref().borrow(); // Spawn a CSS parser to receive links to CSS style sheets. let resource_task2 = resource_task.clone(); |