/* This Source Code Form is subject to the terms of the Mozilla Public * 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, ErrorResult}; use dom::htmlelement::HTMLElement; pub struct HTMLParamElement { htmlelement: HTMLElement } impl HTMLParamElement { pub fn Name(&self) -> DOMString { None } pub fn SetName(&mut self, _name: &DOMString) -> ErrorResult { Ok(()) } pub fn Value(&self) -> DOMString { None } pub fn SetValue(&mut self, _value: &DOMString) -> ErrorResult { Ok(()) } pub fn Type(&self) -> DOMString { None } pub fn SetType(&mut self, _type: &DOMString) -> ErrorResult { Ok(()) } pub fn ValueType(&self) -> DOMString { None } pub fn SetValueType(&mut self, _value_type: &DOMString) -> ErrorResult { Ok(()) } }