nsIXFormsNSInstanceElement is implemented by all XForms <instance/> elements, defining Mozilla extensions.
[scriptable, uuid(80669b92-8331-4f92-aaf8-06e80e6827b3)]
interface nsIXFormsNSInstanceElement : nsISupports
{
nsIDOMDocument getInstanceDocument();
};
nsIDOMDocument getInstanceDocument();
getInstanceDocument returns a DOM Document that corresponds to the instance data associated with the instance element. Essentially it is just a shortcut to nsIXFormsModelElement::getInstanceDocument() for the given instance element.
None.