An interface used by in-process accessibility clients to get style, window, markup and other information about a DOM node. When accessibility is active in Gecko, every DOM node can have one nsIAccessNode for each pres shell the DOM node is rendered in. The nsIAccessNode implementations are instantiated lazily. The nsIAccessNode tree for a given dom window has a one to one relationship to the DOM tree. If the DOM node for this access node is "accessible", then a QueryInterface to nsIAccessible will succeed. @status UNDER_REVIEW
[scriptable, uuid(46820f9b-3088-4046-ab0f-56fdacdc7a82)]
Attributes
The DOM node this nsIAccessNode is associated with.
The nsIAccessibleDocument that this nsIAccessNode resides in.
The first nsIAccessNode child
The innerHTML for the DOM node This is a text string of all the markup inside the DOM node, not including the start and end tag for the node.
The last nsIAccessNode child
The next nsIAccessNode sibling
The number of DOM children for the DOM node, which matches the number of nsIAccessNode children for this nsIAccessNode.
The OS window handle for the window this node is being displayed in.
The parent nsIAccessNode
The previous nsIAccessNode sibling
Methods
Get the nth child of this node @param childNum Zero-based child index @return The nth nsIAccessNode child
Retrieve the computed style value for this DOM node, if it is a DOM element.
Note: the meanings of width, height and other size measurements depend
on the version of CSS being used. Therefore, for bounds information,
it is better to use nsIAccessible::accGetBounds.
@param pseudoElt The pseudo element to retrieve style for, or NULL
for general computed style information for this node.
@param propertyName Retrieve the computed style value for this property name,
for example "border-bottom".
