mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
Convert as many of Page's RefCell fields to Cell as possible (fixes #1990).
This commit is contained in:
parent
eb67f69b2d
commit
04c807dd53
3 changed files with 32 additions and 30 deletions
|
@ -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.deref().borrow();
|
||||
let next_subpage_id: SubpageId = page.next_subpage_id.deref().get();
|
||||
// Spawn a CSS parser to receive links to CSS style sheets.
|
||||
|
||||
let (discovery_chan, discovery_port) = channel();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue