diff options
Diffstat (limited to 'src/components/script/dom/htmlsourceelement.rs')
-rw-r--r-- | src/components/script/dom/htmlsourceelement.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/script/dom/htmlsourceelement.rs b/src/components/script/dom/htmlsourceelement.rs index 66842feb156..54a83b35d0a 100644 --- a/src/components/script/dom/htmlsourceelement.rs +++ b/src/components/script/dom/htmlsourceelement.rs @@ -31,7 +31,7 @@ impl HTMLSourceElement { ~"" } - pub fn SetSrc(&mut self, _src: &DOMString) -> ErrorResult { + pub fn SetSrc(&mut self, _src: DOMString) -> ErrorResult { Ok(()) } @@ -39,7 +39,7 @@ impl HTMLSourceElement { ~"" } - pub fn SetType(&mut self, _type: &DOMString) -> ErrorResult { + pub fn SetType(&mut self, _type: DOMString) -> ErrorResult { Ok(()) } @@ -47,7 +47,7 @@ impl HTMLSourceElement { ~"" } - pub fn SetMedia(&mut self, _media: &DOMString) -> ErrorResult { + pub fn SetMedia(&mut self, _media: DOMString) -> ErrorResult { Ok(()) } } |