mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
56 lines
1.7 KiB
Rust
56 lines
1.7 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::InheritTypes::HTMLMediaElementDerived;
|
|
use dom::document::Document;
|
|
use dom::eventtarget::{EventTarget, EventTargetTypeId};
|
|
use dom::element::ElementTypeId;
|
|
use dom::htmlelement::{HTMLElement, HTMLElementTypeId};
|
|
use dom::node::NodeTypeId;
|
|
use util::str::DOMString;
|
|
|
|
#[dom_struct]
|
|
pub struct HTMLMediaElement {
|
|
htmlelement: HTMLElement,
|
|
}
|
|
|
|
impl HTMLMediaElementDerived for EventTarget {
|
|
fn is_htmlmediaelement(&self) -> bool {
|
|
match *self.type_id() {
|
|
EventTargetTypeId::Node(
|
|
NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLMediaElement(_)))) => true,
|
|
_ => false
|
|
}
|
|
}
|
|
}
|
|
|
|
impl HTMLMediaElement {
|
|
pub fn new_inherited(type_id: HTMLMediaElementTypeId, tag_name: DOMString,
|
|
prefix: Option<DOMString>, document: &Document)
|
|
-> HTMLMediaElement {
|
|
HTMLMediaElement {
|
|
htmlelement:
|
|
HTMLElement::new_inherited(HTMLElementTypeId::HTMLMediaElement(type_id), tag_name, prefix, document)
|
|
}
|
|
}
|
|
|
|
#[inline]
|
|
pub fn htmlelement<'a>(&'a self) -> &'a HTMLElement {
|
|
&self.htmlelement
|
|
}
|
|
}
|
|
|
|
#[derive(JSTraceable, Copy, Clone, Debug)]
|
|
pub enum HTMLMediaElementTypeId {
|
|
HTMLAudioElement = 0,
|
|
HTMLVideoElement = 1,
|
|
}
|
|
|
|
impl PartialEq for HTMLMediaElementTypeId {
|
|
#[inline]
|
|
fn eq(&self, other: &HTMLMediaElementTypeId) -> bool {
|
|
(*self as u8) == (*other as u8)
|
|
}
|
|
}
|
|
|