mirror of
https://github.com/servo/servo.git
synced 2025-10-15 16:00:28 +01:00
95 lines
2.4 KiB
Rust
95 lines
2.4 KiB
Rust
/* 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::codegen::HTMLEmbedElementBinding;
|
|
use dom::bindings::codegen::InheritTypes::HTMLEmbedElementDerived;
|
|
use dom::bindings::js::JS;
|
|
use dom::bindings::error::ErrorResult;
|
|
use dom::document::Document;
|
|
use dom::element::HTMLEmbedElementTypeId;
|
|
use dom::eventtarget::{EventTarget, NodeTargetTypeId};
|
|
use dom::htmlelement::HTMLElement;
|
|
use dom::node::{Node, ElementNodeTypeId};
|
|
use servo_util::str::DOMString;
|
|
|
|
#[deriving(Encodable)]
|
|
pub struct HTMLEmbedElement {
|
|
htmlelement: HTMLElement
|
|
}
|
|
|
|
impl HTMLEmbedElementDerived for EventTarget {
|
|
fn is_htmlembedelement(&self) -> bool {
|
|
match self.type_id {
|
|
NodeTargetTypeId(ElementNodeTypeId(HTMLEmbedElementTypeId)) => true,
|
|
_ => false
|
|
}
|
|
}
|
|
}
|
|
|
|
impl HTMLEmbedElement {
|
|
pub fn new_inherited(localName: DOMString, document: JS<Document>) -> HTMLEmbedElement {
|
|
HTMLEmbedElement {
|
|
htmlelement: HTMLElement::new_inherited(HTMLEmbedElementTypeId, localName, document)
|
|
}
|
|
}
|
|
|
|
pub fn new(localName: DOMString, document: &JS<Document>) -> JS<HTMLEmbedElement> {
|
|
let element = HTMLEmbedElement::new_inherited(localName, document.clone());
|
|
Node::reflect_node(~element, document, HTMLEmbedElementBinding::Wrap)
|
|
}
|
|
}
|
|
|
|
impl HTMLEmbedElement {
|
|
pub fn Src(&self) -> DOMString {
|
|
~""
|
|
}
|
|
|
|
pub fn SetSrc(&mut self, _src: DOMString) -> ErrorResult {
|
|
Ok(())
|
|
}
|
|
|
|
pub fn Type(&self) -> DOMString {
|
|
~""
|
|
}
|
|
|
|
pub fn SetType(&mut self, _type: DOMString) -> ErrorResult {
|
|
Ok(())
|
|
}
|
|
|
|
pub fn Width(&self) -> DOMString {
|
|
~""
|
|
}
|
|
|
|
pub fn SetWidth(&mut self, _width: DOMString) -> ErrorResult {
|
|
Ok(())
|
|
}
|
|
|
|
pub fn Height(&self) -> DOMString {
|
|
~""
|
|
}
|
|
|
|
pub fn SetHeight(&mut self, _height: DOMString) -> ErrorResult {
|
|
Ok(())
|
|
}
|
|
|
|
pub fn Align(&self) -> DOMString {
|
|
~""
|
|
}
|
|
|
|
pub fn SetAlign(&mut self, _type: DOMString) -> ErrorResult {
|
|
Ok(())
|
|
}
|
|
|
|
pub fn Name(&self) -> DOMString {
|
|
~""
|
|
}
|
|
|
|
pub fn SetName(&mut self, _type: DOMString) -> ErrorResult {
|
|
Ok(())
|
|
}
|
|
|
|
pub fn GetSVGDocument(&self) -> Option<JS<Document>> {
|
|
None
|
|
}
|
|
}
|