pub(crate) trait HTMLVideoElementMethods<D: DomTypes> {
    // Required methods
    fn VideoWidth(&self) -> u32;
    fn VideoHeight(&self) -> u32;
    fn Poster(&self) -> DOMString;
    fn SetPoster(&self, value: DOMString);
    fn GetOnpostershown(&self) -> Option<Rc<EventHandlerNonNull<D>>>;
    fn SetOnpostershown(&self, value: Option<Rc<EventHandlerNonNull<D>>>);
}

Required Methods§

Implementors§