pub trait WebGLContextEventMethods {
    // Required methods
    fn StatusMessage(&self) -> DOMString;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        type_: DOMString,
        eventInit: &WebGLContextEventInit,
    ) -> Result<Root<Dom<WebGLContextEvent>>, Error>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§