An interface for accessibility events listened to
by in-process accessibility clients, which can be used
to find out how to get accessibility and DOM interfaces for
the event and its target. To listen to in-process accessibility invents,
make your object an nsIObserver, and listen for accessible-event by
using code something like this:
nsCOMPtr<nsIObserverService> observerService =
do_GetService("@mozilla.org/observer-service;1", &rv);
if (NS_SUCCEEDED(rv))
rv = observerService->AddObserver(this, "accessible-event", PR_TRUE);
@status UNDER_REVIEW
[scriptable, uuid(87f29033-c4a6-40a3-ac7a-3ba391f9992d)]
Constants
Attributes
The nsIDOMNode associated with the event May return null if accessible for event has been shut down
The nsIAccessible associated with the event. May return null if no accessible is available
The nsIAccessibleDocument that the event target nsIAccessible resides in. This can be used to get the DOM window, the DOM document and the window handler, among other things.
