mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Make Attr::SetValue uses the internal setter.
This commit is contained in:
parent
2b0e77945d
commit
a74397432e
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ impl Attr {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn SetValue(&mut self, value: DOMString) {
|
pub fn SetValue(&mut self, value: DOMString) {
|
||||||
self.value = value;
|
self.set_value(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn Name(&self) -> DOMString {
|
pub fn Name(&self) -> DOMString {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue