Definition
HTML Standard defines HTMLFrameElement
[Exposed=Window]
interface HTMLFrameElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString name;
[CEReactions, Reflect] attribute DOMString scrolling;
[CEReactions, ReflectURL] attribute USVString src;
[CEReactions, Reflect] attribute DOMString frameBorder;
[CEReactions, ReflectURL] attribute USVString longDesc;
[CEReactions, Reflect] attribute boolean noResize;
readonly attribute Document? contentDocument;
readonly attribute WindowProxy? contentWindow;
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginHeight;
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginWidth;
};