aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlfontelement.rs
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-09-13 16:11:54 -0400
committerCorey Farwell <coreyf@rwell.org>2015-09-13 23:17:38 -0400
commit768993f03f338171e58ba7214bcdb6da75df6b26 (patch)
tree2847f82c66b940de4e7ad5ba9e57977e0e10799e /components/script/dom/htmlfontelement.rs
parentd5ee58caf269779e86b2efc50ddf37d3e4eba9b9 (diff)
downloadservo-768993f03f338171e58ba7214bcdb6da75df6b26.tar.gz
servo-768993f03f338171e58ba7214bcdb6da75df6b26.zip
Fix incorrect indentation
Diffstat (limited to 'components/script/dom/htmlfontelement.rs')
-rw-r--r--components/script/dom/htmlfontelement.rs2
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()
}));