Table of Contents

behavior: frame

Standard behavior of <frame> element.

After loading of document into the frame its root element (html) will be set as a single child of the frame element as if it was declared this way:

  ...
  <frame src="something.htm"> 
     <html> <!-- root node of something.htm -->
       ... 
     </html>
  </frame>
  ...

Elements

that have this behavior applied by default (see master_style_sheet):

Attributes

that this behavior knows about:

While loading frame element gets :busy flags that can be used for presenting load-in-progress state.

Methods

The frame behavior supports following xcall() methods (see dom::element::xcall() function):

Note that in CSSS! or TIScript/Sciter you can access these methods simply as:

theFrame.load("http://something.com");