diff options
Diffstat (limited to 'src/components/script/dom/htmlelement.rs')
-rw-r--r-- | src/components/script/dom/htmlelement.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/script/dom/htmlelement.rs b/src/components/script/dom/htmlelement.rs index a5291e5b575..cdffbae1611 100644 --- a/src/components/script/dom/htmlelement.rs +++ b/src/components/script/dom/htmlelement.rs @@ -32,21 +32,21 @@ impl HTMLElement { ~"" } - pub fn SetTitle(&mut self, _title: &DOMString) { + pub fn SetTitle(&mut self, _title: DOMString) { } pub fn Lang(&self) -> DOMString { ~"" } - pub fn SetLang(&mut self, _lang: &DOMString) { + pub fn SetLang(&mut self, _lang: DOMString) { } pub fn Dir(&self) -> DOMString { ~"" } - pub fn SetDir(&mut self, _dir: &DOMString) -> ErrorResult { + pub fn SetDir(&mut self, _dir: DOMString) -> ErrorResult { Ok(()) } @@ -89,7 +89,7 @@ impl HTMLElement { ~"" } - pub fn SetAccessKey(&self, _key: &DOMString) -> ErrorResult { + pub fn SetAccessKey(&self, _key: DOMString) -> ErrorResult { Ok(()) } @@ -109,7 +109,7 @@ impl HTMLElement { ~"" } - pub fn SetContentEditable(&mut self, _val: &DOMString) -> ErrorResult { + pub fn SetContentEditable(&mut self, _val: DOMString) -> ErrorResult { Ok(()) } @@ -129,7 +129,7 @@ impl HTMLElement { ~"" } - pub fn SetClassName(&self, _class: &DOMString) { + pub fn SetClassName(&self, _class: DOMString) { } pub fn GetOffsetParent(&self) -> Option<AbstractNode<ScriptView>> { |