nsIChromeFrameMessageManager

Handles loading of content in a remote chrome frame.
1.0
66
Introduced
Gecko 2.0
Inherits from: nsIFrameMessageManager Last changed in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)

Method overview

void loadFrameScript(in AString aURL, in boolean aAllowDelayedLoad);
void removeDelayedFrameScript(in AString aURL);

Methods

loadFrameScript()

Loads a script into the remote frame.

void loadFrameScript(
  in AString aURL,
  in boolean aAllowDelayedLoad
);
Parameters
aURL
The URL of the script to load into the frame; this must be an absolute URL, but data: URLs are supported.
aAllowDelayedLoad
If true, the script will be loaded when the remote frame becomes available; otherwise, the script will only be loaded if the frame is already available.

removeDelayedFrameScript()

Removes a script from the list of scripts supporting delayed load.

void removeDelayedFrameScript(
  in AString aURL
);
Parameters
aURL
The URL of the script to remove from the list of scripts supporting delayed load.

See also