mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
3e8593199d
--- accessible/base/AccEvent.cpp | 8 +++++ accessible/base/AccEvent.h | 29 ++++++++++++++++- accessible/generic/DocAccessible.cpp | 8 +++-- accessible/interfaces/moz.build | 1 + .../nsIAccessibleObjectAttributeChangedEvent.idl | 21 ++++++++++++ accessible/tests/mochitest/common.js | 2 ++ accessible/tests/mochitest/events.js | 37 ++++++++++++++++++++++ .../tests/mochitest/events/test_aria_objattr.html | 7 ++-- accessible/xpcom/AccEvents.conf | 1 + 9 files changed, 106 insertions(+), 8 deletions(-) create mode 100644 accessible/interfaces/nsIAccessibleObjectAttributeChangedEvent.idl
19 lines
562 B
Python
19 lines
562 B
Python
""" -*- Mode: Python -*-
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
The name of the event which real interface should have nsIAccessible-prefix,
|
|
and should be in nsIAccessible<name>.idl file"""
|
|
|
|
simple_events = [
|
|
'Event',
|
|
'StateChangeEvent',
|
|
'TextChangeEvent',
|
|
'HideEvent',
|
|
'CaretMoveEvent',
|
|
'ObjectAttributeChangedEvent',
|
|
'TableChangeEvent',
|
|
'VirtualCursorChangeEvent'
|
|
]
|