diff options
author | Bruno de Oliveira Abinader <bruno.d@partner.samsung.com> | 2014-12-15 12:33:49 -0400 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno.d@partner.samsung.com> | 2014-12-26 13:08:20 -0400 |
commit | eb3678fa286fc2480624c977b1de5b60a971b3f7 (patch) | |
tree | 1c37f0bc5f91d61500cc7f67ccbf334052f60470 /components/script/dom/htmlareaelement.rs | |
parent | 0e6304dcf7fd6712f4455151b55a361de857359d (diff) | |
download | servo-eb3678fa286fc2480624c977b1de5b60a971b3f7.tar.gz servo-eb3678fa286fc2480624c977b1de5b60a971b3f7.zip |
AttrValue's s/from_tokenlist/from_serialized_tokenlist/
Diffstat (limited to 'components/script/dom/htmlareaelement.rs')
-rw-r--r-- | components/script/dom/htmlareaelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlareaelement.rs b/components/script/dom/htmlareaelement.rs index 1ede87d380d..4871f35dc2d 100644 --- a/components/script/dom/htmlareaelement.rs +++ b/components/script/dom/htmlareaelement.rs @@ -58,7 +58,7 @@ impl<'a> VirtualMethods for JSRef<'a, HTMLAreaElement> { fn parse_plain_attribute(&self, name: &Atom, value: DOMString) -> AttrValue { match name { - &atom!("rel") => AttrValue::from_tokenlist(value), + &atom!("rel") => AttrValue::from_serialized_tokenlist(value), _ => self.super_type().unwrap().parse_plain_attribute(name, value), } } |