Haxe API Documentation
Back | Index
extern class js.html.FrameElement
extends Element
Available in js

<frame> is an HTML element which defines a particular area in which another HTML document can be displayed. A frame should be used within a <frameset> .

Using the <frame> element is not encouraged because of certain disadvantages such as performance problems and lack of accessibility for users with screen readers. Instead of the <frame> element, <iframe>  may be preferred.



Documentation for this class was provided by MDN.
var contentDocument(default,null) : Document
var contentWindow(default,null) : DOMWindow
var frameBorder : String
var height(default,null) : Int
var location : String
var longDesc : String
var marginHeight : String
var marginWidth : String
var name : String
This attribute is used to labeling frames. Without labeling all links will open in the frame that they are in.
var noResize : Bool
var scrolling : String
This attribute defines existence of scrollbar. If this attribute is not used, browser put a scrollbar when necessary. There are two choices; "yes" for showing a scrollbar even when it is not necessary and "no" for do not showing a scrollbar even when it is necessary.
var src : String
This attribute is specify document which will be displayed by frame.
var width(default,null) : Int
function getSVGDocument() : js.html.svg.Document
Back | Index