diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-05-03 22:17:45 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-05-03 22:17:45 +0200 |
commit | 243814022e06c35c9bcdd99ccd281cb6ed180db0 (patch) | |
tree | 64dcd6f6eace86d63688100c37de00ea238262de /src/components/script/dom/htmltableelement.rs | |
parent | 731e66ff132e41cdc49bc5324c0e15be19c46ec2 (diff) | |
download | servo-243814022e06c35c9bcdd99ccd281cb6ed180db0.tar.gz servo-243814022e06c35c9bcdd99ccd281cb6ed180db0.zip |
Replace all ~"" with "".to_owned().
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 b3e040d2098..918cbddf08d 100644 --- a/src/components/script/dom/htmltableelement.rs +++ b/src/components/script/dom/htmltableelement.rs @@ -93,7 +93,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn Align(&self) -> DOMString { - ~"" + "".to_owned() } fn SetAlign(&self, _align: DOMString) -> ErrorResult { @@ -101,7 +101,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn Border(&self) -> DOMString { - ~"" + "".to_owned() } fn SetBorder(&self, _border: DOMString) -> ErrorResult { @@ -109,7 +109,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn Frame(&self) -> DOMString { - ~"" + "".to_owned() } fn SetFrame(&self, _frame: DOMString) -> ErrorResult { @@ -117,7 +117,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn Rules(&self) -> DOMString { - ~"" + "".to_owned() } fn SetRules(&self, _rules: DOMString) -> ErrorResult { @@ -125,7 +125,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn Summary(&self) -> DOMString { - ~"" + "".to_owned() } fn SetSummary(&self, _summary: DOMString) -> ErrorResult { @@ -133,7 +133,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn Width(&self) -> DOMString { - ~"" + "".to_owned() } fn SetWidth(&self, _width: DOMString) -> ErrorResult { @@ -141,7 +141,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn BgColor(&self) -> DOMString { - ~"" + "".to_owned() } fn SetBgColor(&self, _bg_color: DOMString) -> ErrorResult { @@ -149,7 +149,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn CellPadding(&self) -> DOMString { - ~"" + "".to_owned() } fn SetCellPadding(&self, _cell_padding: DOMString) -> ErrorResult { @@ -157,7 +157,7 @@ impl<'a> HTMLTableElementMethods for JSRef<'a, HTMLTableElement> { } fn CellSpacing(&self) -> DOMString { - ~"" + "".to_owned() } fn SetCellSpacing(&self, _cell_spacing: DOMString) -> ErrorResult { |