mirror of
https://github.com/servo/servo.git
synced 2025-10-16 08:20:22 +01:00
Upgrade rust.
This commit is contained in:
parent
7ece5f92db
commit
31eee791dd
102 changed files with 724 additions and 839 deletions
|
@ -27,7 +27,7 @@ struct Untraceable {
|
|||
|
||||
impl<S: Encoder> Encodable<S> for Untraceable {
|
||||
fn encode(&self, s: &mut S) {
|
||||
self.page.borrow().encode(s);
|
||||
self.page.encode(s);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@ impl Location {
|
|||
}
|
||||
|
||||
pub fn Href(&self) -> DOMString {
|
||||
self.extra.page.borrow().get_url().to_str()
|
||||
self.extra.page.get_url().to_str()
|
||||
}
|
||||
|
||||
pub fn SetHref(&self, _href: DOMString) -> Fallible<()> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue