aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmltablesectionelement.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2013-09-18 19:39:47 -0700
committerbors-servo <release+servo@mozilla.com>2013-09-18 19:39:47 -0700
commit7ffcc29d54659cea63dd2769db469473343246c4 (patch)
treef5b6f454390c5905ec37529dd9f1bc6a552112bd /src/components/script/dom/htmltablesectionelement.rs
parent849ff1b754009625243d5abe80f87d24aeab2b40 (diff)
parent73c1a12f3014289002bdc637b7f3c3fc6bf0fb0d (diff)
downloadservo-7ffcc29d54659cea63dd2769db469473343246c4.tar.gz
servo-7ffcc29d54659cea63dd2769db469473343246c4.zip
auto merge of #955 : kmcallister/servo/bindings, r=metajack
Diffstat (limited to 'src/components/script/dom/htmltablesectionelement.rs')
-rw-r--r--src/components/script/dom/htmltablesectionelement.rs25
1 files changed, 15 insertions, 10 deletions
diff --git a/src/components/script/dom/htmltablesectionelement.rs b/src/components/script/dom/htmltablesectionelement.rs
index bf0bda484d6..d42f4cb514a 100644
--- a/src/components/script/dom/htmltablesectionelement.rs
+++ b/src/components/script/dom/htmltablesectionelement.rs
@@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-use dom::bindings::utils::{DOMString, null_string, ErrorResult};
+use dom::bindings::utils::{DOMString, ErrorResult};
use dom::htmlelement::HTMLElement;
pub struct HTMLTableSectionElement {
@@ -10,34 +10,39 @@ pub struct HTMLTableSectionElement {
}
impl HTMLTableSectionElement {
- pub fn DeleteRow(&mut self, _index: i32, _rv: &mut ErrorResult) {
+ pub fn DeleteRow(&mut self, _index: i32) -> ErrorResult {
+ Ok(())
}
pub fn Align(&self) -> DOMString {
- null_string
+ None
}
- pub fn SetAlign(&mut self, _align: &DOMString, _rv: &mut ErrorResult) {
+ pub fn SetAlign(&mut self, _align: &DOMString) -> ErrorResult {
+ Ok(())
}
pub fn Ch(&self) -> DOMString {
- null_string
+ None
}
- pub fn SetCh(&mut self, _ch: &DOMString, _rv: &mut ErrorResult) {
+ pub fn SetCh(&mut self, _ch: &DOMString) -> ErrorResult {
+ Ok(())
}
pub fn ChOff(&self) -> DOMString {
- null_string
+ None
}
- pub fn SetChOff(&mut self, _ch_off: &DOMString, _rv: &mut ErrorResult) {
+ pub fn SetChOff(&mut self, _ch_off: &DOMString) -> ErrorResult {
+ Ok(())
}
pub fn VAlign(&self) -> DOMString {
- null_string
+ None
}
- pub fn SetVAlign(&mut self, _v_align: &DOMString, _rv: &mut ErrorResult) {
+ pub fn SetVAlign(&mut self, _v_align: &DOMString) -> ErrorResult {
+ Ok(())
}
}