diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-08-11 16:24:21 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-08-15 14:10:44 +0200 |
commit | b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad (patch) | |
tree | 6f19f8562d57258c06ee21ee2bdbd85f9ae2cb64 /components/script/dom/cssstyledeclaration.rs | |
parent | 41fb10c58995781d595a233afae0758427ad5cc5 (diff) | |
download | servo-b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad.tar.gz servo-b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad.zip |
Upgrade to rustc 1.21.0-nightly (13d94d5fa 2017-08-10)
Diffstat (limited to 'components/script/dom/cssstyledeclaration.rs')
-rw-r--r-- | components/script/dom/cssstyledeclaration.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/cssstyledeclaration.rs b/components/script/dom/cssstyledeclaration.rs index 0732c9af9e4..ddf085b3491 100644 --- a/components/script/dom/cssstyledeclaration.rs +++ b/components/script/dom/cssstyledeclaration.rs @@ -238,7 +238,7 @@ impl CSSStyleDeclaration { return Err(Error::NoModificationAllowed); } - self.owner.mutate_associated_block(|ref mut pdb, mut changed| { + self.owner.mutate_associated_block(|pdb, changed| { if value.is_empty() { // Step 3 *changed = pdb.remove_property(&id); @@ -360,7 +360,7 @@ impl CSSStyleDeclarationMethods for CSSStyleDeclaration { _ => return Ok(()), }; - self.owner.mutate_associated_block(|ref mut pdb, mut changed| { + self.owner.mutate_associated_block(|pdb, changed| { // Step 5 & 6 *changed = pdb.set_importance(&id, importance); }); @@ -388,7 +388,7 @@ impl CSSStyleDeclarationMethods for CSSStyleDeclaration { }; let mut string = String::new(); - self.owner.mutate_associated_block(|mut pdb, mut changed| { + self.owner.mutate_associated_block(|pdb, changed| { pdb.property_value_to_css(&id, &mut string).unwrap(); *changed = pdb.remove_property(&id); }); @@ -438,7 +438,7 @@ impl CSSStyleDeclarationMethods for CSSStyleDeclaration { } let quirks_mode = window.Document().quirks_mode(); - self.owner.mutate_associated_block(|mut pdb, mut _changed| { + self.owner.mutate_associated_block(|pdb, _changed| { // Step 3 *pdb = parse_style_attribute(&value, &self.owner.base_url(), |