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/htmltableelement.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/htmltableelement.rs')
-rw-r--r-- | src/components/script/dom/htmltableelement.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/components/script/dom/htmltableelement.rs b/src/components/script/dom/htmltableelement.rs index 4ab2ef5c1e7..2ecb39d92e9 100644 --- a/src/components/script/dom/htmltableelement.rs +++ b/src/components/script/dom/htmltableelement.rs @@ -54,7 +54,7 @@ impl HTMLTableElement { ~"" } - pub fn SetAlign(&self, _align: &DOMString) -> ErrorResult { + pub fn SetAlign(&self, _align: DOMString) -> ErrorResult { Ok(()) } @@ -62,7 +62,7 @@ impl HTMLTableElement { ~"" } - pub fn SetBorder(&self, _border: &DOMString) -> ErrorResult { + pub fn SetBorder(&self, _border: DOMString) -> ErrorResult { Ok(()) } @@ -70,7 +70,7 @@ impl HTMLTableElement { ~"" } - pub fn SetFrame(&self, _frame: &DOMString) -> ErrorResult { + pub fn SetFrame(&self, _frame: DOMString) -> ErrorResult { Ok(()) } @@ -78,7 +78,7 @@ impl HTMLTableElement { ~"" } - pub fn SetRules(&self, _rules: &DOMString) -> ErrorResult { + pub fn SetRules(&self, _rules: DOMString) -> ErrorResult { Ok(()) } @@ -86,7 +86,7 @@ impl HTMLTableElement { ~"" } - pub fn SetSummary(&self, _summary: &DOMString) -> ErrorResult { + pub fn SetSummary(&self, _summary: DOMString) -> ErrorResult { Ok(()) } @@ -94,7 +94,7 @@ impl HTMLTableElement { ~"" } - pub fn SetWidth(&self, _width: &DOMString) -> ErrorResult { + pub fn SetWidth(&self, _width: DOMString) -> ErrorResult { Ok(()) } @@ -102,7 +102,7 @@ impl HTMLTableElement { ~"" } - pub fn SetBgColor(&self, _bg_color: &DOMString) -> ErrorResult { + pub fn SetBgColor(&self, _bg_color: DOMString) -> ErrorResult { Ok(()) } @@ -110,7 +110,7 @@ impl HTMLTableElement { ~"" } - pub fn SetCellPadding(&self, _cell_padding: &DOMString) -> ErrorResult { + pub fn SetCellPadding(&self, _cell_padding: DOMString) -> ErrorResult { Ok(()) } @@ -118,7 +118,7 @@ impl HTMLTableElement { ~"" } - pub fn SetCellSpacing(&self, _cell_spacing: &DOMString) -> ErrorResult { + pub fn SetCellSpacing(&self, _cell_spacing: DOMString) -> ErrorResult { Ok(()) } } |