auto merge of #2616 : Ms2ger/servo/attrvalue, r=jdm

Obsoletes #2073.
This commit is contained in:
bors-servo 2014-06-13 11:41:13 -04:00
commit da668f53d9
11 changed files with 269 additions and 47 deletions

View file

@ -151,7 +151,7 @@ fn serialize_attr(attr: &JSRef<Attr>, html: &mut String) {
html.push_str(attr.deref().name.as_slice());
};
html.push_str("=\"");
escape(attr.deref().value.as_slice(), true, html);
escape(attr.deref().value_ref(), true, html);
html.push_char('"');
}