Skip to content

Commit

Permalink
Add IA2_ROLE_BLOCK_QUOTE role. (LinuxA11y#6)
Browse files Browse the repository at this point in the history
Currently, IA2 clients detect web blockquote elements using the "tag" object attribute, but this is ugly at best.
Furthermore, this method cannot be used to detect the new ARIA blockquote role.
Thus, we need a dedicated IA2 role.

Signed-off-by: James Teh <[email protected]>
  • Loading branch information
jcsteh authored Jun 7, 2018
1 parent c15cfc1 commit 21bbb17
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 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, 2018 Linux Foundation
* Copyright (c) 2007-2018 Linux Foundation
* Copyright (c) 2006 IBM Corporation
* Copyright (c) 2000, 2006 Sun Microsystems, Inc.
* All rights reserved.
Expand Down Expand Up @@ -312,5 +312,8 @@ enum IA2Role {
/** Content previously inserted or proposed for insertion, e.g. in revision
history or a content view providing suggestions from reviewers.
*/
IA2_ROLE_CONTENT_INSERTION
IA2_ROLE_CONTENT_INSERTION,

/// A section of content that is quoted from another source.
IA2_ROLE_BLOCK_QUOTE
};

0 comments on commit 21bbb17

Please sign in to comment.