diff options
author | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2013-11-09 03:55:30 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2013-11-14 20:35:36 +0900 |
commit | f5ef4365f46d31cb4aa85474345a5d2c20e86590 (patch) | |
tree | e4ac7016de573cfc179e1121d93eb384b3ef2fd7 /src/components/script/dom/htmltablecellelement.rs | |
parent | b1762655e6ce7e9ff8a79710a5b10bef34a3c26b (diff) | |
download | servo-f5ef4365f46d31cb4aa85474345a5d2c20e86590.tar.gz servo-f5ef4365f46d31cb4aa85474345a5d2c20e86590.zip |
Stop passing DOMStrings via borrowed pointer. (#1201)
Diffstat (limited to 'src/components/script/dom/htmltablecellelement.rs')
-rw-r--r-- | src/components/script/dom/htmltablecellelement.rs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/components/script/dom/htmltablecellelement.rs b/src/components/script/dom/htmltablecellelement.rs index 9d594493ac1..2e448c7e8ec 100644 --- a/src/components/script/dom/htmltablecellelement.rs +++ b/src/components/script/dom/htmltablecellelement.rs @@ -40,7 +40,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetHeaders(&self, _headers: &DOMString) -> ErrorResult { + pub fn SetHeaders(&self, _headers: DOMString) -> ErrorResult { Ok(()) } @@ -56,7 +56,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetAbbr(&self, _abbr: &DOMString) -> ErrorResult { + pub fn SetAbbr(&self, _abbr: DOMString) -> ErrorResult { Ok(()) } @@ -64,7 +64,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetScope(&self, _abbr: &DOMString) -> ErrorResult { + pub fn SetScope(&self, _abbr: DOMString) -> ErrorResult { Ok(()) } @@ -72,7 +72,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetAlign(&self, _align: &DOMString) -> ErrorResult { + pub fn SetAlign(&self, _align: DOMString) -> ErrorResult { Ok(()) } @@ -80,7 +80,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetAxis(&self, _axis: &DOMString) -> ErrorResult { + pub fn SetAxis(&self, _axis: DOMString) -> ErrorResult { Ok(()) } @@ -88,7 +88,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetHeight(&self, _height: &DOMString) -> ErrorResult { + pub fn SetHeight(&self, _height: DOMString) -> ErrorResult { Ok(()) } @@ -96,7 +96,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetWidth(&self, _width: &DOMString) -> ErrorResult { + pub fn SetWidth(&self, _width: DOMString) -> ErrorResult { Ok(()) } @@ -104,7 +104,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetCh(&self, _ch: &DOMString) -> ErrorResult { + pub fn SetCh(&self, _ch: DOMString) -> ErrorResult { Ok(()) } @@ -112,7 +112,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetChOff(&self, _ch_off: &DOMString) -> ErrorResult { + pub fn SetChOff(&self, _ch_off: DOMString) -> ErrorResult { Ok(()) } @@ -128,7 +128,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetVAlign(&self, _valign: &DOMString) -> ErrorResult { + pub fn SetVAlign(&self, _valign: DOMString) -> ErrorResult { Ok(()) } @@ -136,7 +136,7 @@ impl HTMLTableCellElement { ~"" } - pub fn SetBgColor(&self, _bg_color: &DOMString) -> ErrorResult { + pub fn SetBgColor(&self, _bg_color: DOMString) -> ErrorResult { Ok(()) } } |