Make Attr::SetValue uses the internal setter.

This commit is contained in:
Tetsuharu OHZEKI 2014-04-11 00:04:31 +09:00
parent 2b0e77945d
commit a74397432e

View file

@ -69,7 +69,7 @@ impl Attr {
}
pub fn SetValue(&mut self, value: DOMString) {
self.value = value;
self.set_value(value);
}
pub fn Name(&self) -> DOMString {