Trait HTMLIFrameElementMethods 
Source pub trait HTMLIFrameElementMethods<D>{
Show 19 methods
    // Required methods
    fn Src(&self) -> USVString;
    fn SetSrc(&self, value: USVString);
    fn Srcdoc(&self) -> TrustedHTMLOrString<D>;
    fn SetSrcdoc(
        &self,
        value: TrustedHTMLOrString<D>,
        _can_gc: CanGc,
    ) -> Result<(), Error>;
    fn Name(&self) -> DOMString;
    fn SetName(&self, value: DOMString);
    fn Sandbox(
        &self,
        _can_gc: CanGc,
    ) -> Root<Dom<<D as DomTypes>::DOMTokenList>>;
    fn AllowFullscreen(&self) -> bool;
    fn SetAllowFullscreen(&self, value: bool);
    fn Width(&self) -> DOMString;
    fn SetWidth(&self, value: DOMString);
    fn ReferrerPolicy(&self) -> DOMString;
    fn SetReferrerPolicy(&self, value: DOMString);
    fn Height(&self) -> DOMString;
    fn SetHeight(&self, value: DOMString);
    fn GetContentDocument(&self) -> Option<Root<Dom<<D as DomTypes>::Document>>>;
    fn GetContentWindow(
        &self,
    ) -> Option<Root<Dom<<D as DomTypes>::WindowProxy>>>;
    fn FrameBorder(&self) -> DOMString;
    fn SetFrameBorder(&self, value: DOMString);
 }