pub trait TransitionEventMethods {
    // Required methods
    fn PropertyName(&self) -> DOMString;
    fn ElapsedTime(&self) -> Finite<f32>;
    fn PseudoElement(&self) -> DOMString;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        type_: DOMString,
        transitionEventInitDict: &TransitionEventInit,
    ) -> Result<Root<Dom<TransitionEvent>>, Error>;
}

Required Methods§

source

fn PropertyName(&self) -> DOMString

source

fn ElapsedTime(&self) -> Finite<f32>

source

fn PseudoElement(&self) -> DOMString

source

fn IsTrusted(&self) -> bool

source

fn Constructor( global: &Window, proto: Option<HandleObject<'_>>, can_gc: CanGc, type_: DOMString, transitionEventInitDict: &TransitionEventInit, ) -> Result<Root<Dom<TransitionEvent>>, Error>

Object Safety§

This trait is not object safe.

Implementors§