Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add IA2_ROLE_CONTENT_DELETION/INSERTION roles #5

Merged
merged 2 commits into from
May 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions api/AccessibleRole.idl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* IAccessible2 IDL Specification
*
* Copyright (c) 2007, 2013 Linux Foundation
* Copyright (c) 2007, 2013, 2018 Linux Foundation
* Copyright (c) 2006 IBM Corporation
* Copyright (c) 2000, 2006 Sun Microsystems, Inc.
* All rights reserved.
Expand Down Expand Up @@ -302,5 +302,15 @@ enum IA2Role {
* A bar that serves as a level indicator to, for instance, show
* the strength of a password or the charge of a battery.
*/
IA2_ROLE_LEVEL_BAR
IA2_ROLE_LEVEL_BAR,

/** Content previously deleted or proposed for deletion, e.g. in revision
history or a content view providing suggestions from reviewers.
*/
IA2_ROLE_CONTENT_DELETION,

/** Content previously inserted or proposed for insertion, e.g. in revision
history or a content view providing suggestions from reviewers.
*/
IA2_ROLE_CONTENT_INSERTION
};