Dart API Referencedart:htmlFrameElement

FrameElement Interface

<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.

Extends

Element

Methods

Code SVGDocument getSVGDocument() #

SVGDocument getSVGDocument();

Fields

Code final Document contentDocument #

final Document contentDocument;

Code final Window contentWindow #

final Window contentWindow;

Code String frameBorder #

String frameBorder;

Code final int height #

final int height;

Code String location #

String location;

Code String longDesc #

String longDesc;

Code String marginHeight #

String marginHeight;

Code String marginWidth #

String marginWidth;

Code String name #

This attribute is used to labeling frames. Without labeling all links will open in the frame that they are in.
String name;

Code bool noResize #

bool noResize;

Code String scrolling #

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.
String scrolling;

Code String src #

This attribute is specify document which will be displayed by frame.
String src;

Code final int width #

final int width;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.