pub(crate) trait HTMLDialogElementMethods<D: DomTypes> {
    // Required methods
    fn Open(&self) -> bool;
    fn SetOpen(&self, value: bool);
    fn ReturnValue(&self) -> DOMString;
    fn SetReturnValue(&self, value: DOMString);
    fn Show(&self, _can_gc: CanGc);
    fn Close(&self, returnValue: Option<DOMString>);
}

Required Methods§

Source

fn Open(&self) -> bool

Source

fn SetOpen(&self, value: bool)

Source

fn ReturnValue(&self) -> DOMString

Source

fn SetReturnValue(&self, value: DOMString)

Source

fn Show(&self, _can_gc: CanGc)

Source

fn Close(&self, returnValue: Option<DOMString>)

Implementors§