aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmltablesectionelement.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-05-04 01:01:21 -0400
committerbors-servo <release+servo@mozilla.com>2014-05-04 01:01:21 -0400
commit660f7a016ee75a418afda9e92d45b79eff6ba540 (patch)
tree64dcd6f6eace86d63688100c37de00ea238262de /src/components/script/dom/htmltablesectionelement.rs
parent731e66ff132e41cdc49bc5324c0e15be19c46ec2 (diff)
parent243814022e06c35c9bcdd99ccd281cb6ed180db0 (diff)
downloadservo-660f7a016ee75a418afda9e92d45b79eff6ba540.tar.gz
servo-660f7a016ee75a418afda9e92d45b79eff6ba540.zip
auto merge of #2311 : Ms2ger/servo/empty-owned, r=jdm
Diffstat (limited to 'src/components/script/dom/htmltablesectionelement.rs')
-rw-r--r--src/components/script/dom/htmltablesectionelement.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/script/dom/htmltablesectionelement.rs b/src/components/script/dom/htmltablesectionelement.rs
index def03af4bb2..200c10e649d 100644
--- a/src/components/script/dom/htmltablesectionelement.rs
+++ b/src/components/script/dom/htmltablesectionelement.rs
@@ -58,7 +58,7 @@ impl<'a> HTMLTableSectionElementMethods for JSRef<'a, HTMLTableSectionElement> {
}
fn Align(&self) -> DOMString {
- ~""
+ "".to_owned()
}
fn SetAlign(&mut self, _align: DOMString) -> ErrorResult {
@@ -66,7 +66,7 @@ impl<'a> HTMLTableSectionElementMethods for JSRef<'a, HTMLTableSectionElement> {
}
fn Ch(&self) -> DOMString {
- ~""
+ "".to_owned()
}
fn SetCh(&mut self, _ch: DOMString) -> ErrorResult {
@@ -74,7 +74,7 @@ impl<'a> HTMLTableSectionElementMethods for JSRef<'a, HTMLTableSectionElement> {
}
fn ChOff(&self) -> DOMString {
- ~""
+ "".to_owned()
}
fn SetChOff(&mut self, _ch_off: DOMString) -> ErrorResult {
@@ -82,7 +82,7 @@ impl<'a> HTMLTableSectionElementMethods for JSRef<'a, HTMLTableSectionElement> {
}
fn VAlign(&self) -> DOMString {
- ~""
+ "".to_owned()
}
fn SetVAlign(&mut self, _v_align: DOMString) -> ErrorResult {