diff options
Diffstat (limited to 'components/script/dom/htmlstyleelement.rs')
-rw-r--r-- | components/script/dom/htmlstyleelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlstyleelement.rs b/components/script/dom/htmlstyleelement.rs index c298db7398e..002e4e8a9c2 100644 --- a/components/script/dom/htmlstyleelement.rs +++ b/components/script/dom/htmlstyleelement.rs @@ -225,7 +225,7 @@ impl VirtualMethods for HTMLStyleElement { } fn unbind_from_tree(&self, context: &UnbindContext) { - if let Some(ref s) = self.super_type() { + if let Some(s) = self.super_type() { s.unbind_from_tree(context); } |