HTMLFrameElement Interface
The HTMLFrameElement Interface creates a frame.
IDL Definition
Interface HTMLFrameElement : HTMLElement {
attribute DOMString frameBorder;
attribute DOMString longDesc;
attribute DOMString marginHeight;
attribute DOMString marginWidth;
attribute DOMString name;
attribute boolean noResize;
attribute DOMString scrolling;
attribute DOMString src;
};
Semantic Requirements
- The frameBorder attribute specifies a request for frame borders.
- The longDesc attribute specifies the URI designating a long description of this image or frame.
- The marginHeight attribute specifies the frame's margin height in pixels.
- The marginWidth attribute specifies the frame's margin width in pixels.
- The name attribute specifies the frame name (object of the target attribute).
- The noResize attribute when true, forbid user from resizing frame.
- the scrolling attribute specify whether or not the frame should have scrollbars.
- The src attribute specifies a URI designating the original frame contents.
If you have comments or suggestions, email me at mbrady@nist.gov