From 768993f03f338171e58ba7214bcdb6da75df6b26 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sun, 13 Sep 2015 16:11:54 -0400 Subject: [PATCH] Fix incorrect indentation --- components/script/dom/htmlfontelement.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/dom/htmlfontelement.rs b/components/script/dom/htmlfontelement.rs index 30dd8533242..dbd876b1751 100644 --- a/components/script/dom/htmlfontelement.rs +++ b/components/script/dom/htmlfontelement.rs @@ -66,7 +66,7 @@ impl VirtualMethods for HTMLFontElement { fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) { self.super_type().unwrap().attribute_mutated(attr, mutation); match attr.local_name() { - &atom!(color) => { + &atom!(color) => { self.color.set(mutation.new_value(attr).and_then(|value| { str::parse_legacy_color(&value).ok() }));