AttrValue's s/from_tokenlist/from_serialized_tokenlist/

This commit is contained in:
Bruno de Oliveira Abinader 2014-12-15 12:33:49 -04:00
parent 0e6304dcf7
commit eb3678fa28
5 changed files with 6 additions and 6 deletions

View file

@ -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),
}
}