Fix incorrect indentation

This commit is contained in:
Corey Farwell 2015-09-13 16:11:54 -04:00
parent d5ee58caf2
commit 768993f03f

View file

@ -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()
}));