diff options
Diffstat (limited to 'src/components/script/dom/htmltablesectionelement.rs')
-rw-r--r-- | src/components/script/dom/htmltablesectionelement.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/components/script/dom/htmltablesectionelement.rs b/src/components/script/dom/htmltablesectionelement.rs index 8133e768ea3..90a1d0f0bcb 100644 --- a/src/components/script/dom/htmltablesectionelement.rs +++ b/src/components/script/dom/htmltablesectionelement.rs @@ -31,35 +31,35 @@ impl HTMLTableSectionElement { Ok(()) } - pub fn Align(&self) -> DOMString { + pub fn Align(&self) -> Option<DOMString> { None } - pub fn SetAlign(&mut self, _align: &DOMString) -> ErrorResult { + pub fn SetAlign(&mut self, _align: &Option<DOMString>) -> ErrorResult { Ok(()) } - pub fn Ch(&self) -> DOMString { + pub fn Ch(&self) -> Option<DOMString> { None } - pub fn SetCh(&mut self, _ch: &DOMString) -> ErrorResult { + pub fn SetCh(&mut self, _ch: &Option<DOMString>) -> ErrorResult { Ok(()) } - pub fn ChOff(&self) -> DOMString { + pub fn ChOff(&self) -> Option<DOMString> { None } - pub fn SetChOff(&mut self, _ch_off: &DOMString) -> ErrorResult { + pub fn SetChOff(&mut self, _ch_off: &Option<DOMString>) -> ErrorResult { Ok(()) } - pub fn VAlign(&self) -> DOMString { + pub fn VAlign(&self) -> Option<DOMString> { None } - pub fn SetVAlign(&mut self, _v_align: &DOMString) -> ErrorResult { + pub fn SetVAlign(&mut self, _v_align: &Option<DOMString>) -> ErrorResult { Ok(()) } } |