diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-09-13 16:11:54 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-09-13 23:17:38 -0400 |
commit | 768993f03f338171e58ba7214bcdb6da75df6b26 (patch) | |
tree | 2847f82c66b940de4e7ad5ba9e57977e0e10799e /components/script/dom/htmlfontelement.rs | |
parent | d5ee58caf269779e86b2efc50ddf37d3e4eba9b9 (diff) | |
download | servo-768993f03f338171e58ba7214bcdb6da75df6b26.tar.gz servo-768993f03f338171e58ba7214bcdb6da75df6b26.zip |
Fix incorrect indentation
Diffstat (limited to 'components/script/dom/htmlfontelement.rs')
-rw-r--r-- | components/script/dom/htmlfontelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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() })); |