pub trait HTMLIFrameElementMethods {
Show 17 methods
// Required methods
fn Src(&self) -> USVString;
fn SetSrc(&self, value: USVString);
fn Srcdoc(&self) -> DOMString;
fn SetSrcdoc(&self, value: DOMString);
fn Name(&self) -> DOMString;
fn SetName(&self, value: DOMString);
fn Sandbox(&self) -> Root<Dom<DOMTokenList>>;
fn AllowFullscreen(&self) -> bool;
fn SetAllowFullscreen(&self, value: bool);
fn Width(&self) -> DOMString;
fn SetWidth(&self, value: DOMString);
fn Height(&self) -> DOMString;
fn SetHeight(&self, value: DOMString);
fn GetContentDocument(&self) -> Option<Root<Dom<Document>>>;
fn GetContentWindow(&self) -> Option<Root<Dom<WindowProxy>>>;
fn FrameBorder(&self) -> DOMString;
fn SetFrameBorder(&self, value: DOMString);
}