Skip to content

Commit

Permalink
introduce new relations to express semantics of aria-details and aria…
Browse files Browse the repository at this point in the history
…-errormessage
  • Loading branch information
asurkov committed Sep 14, 2016
1 parent 1135ce0 commit 249313d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/AccessibleRelation.idl
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,18 @@ const WCHAR *const IA2_RELATION_PREVIOUS_TABBABLE = L"previousTabbable";
/** This object is a sub window of a target object. */
const WCHAR *const IA2_RELATION_SUBWINDOW_OF = L"subwindowOf";

/** This object is a details for a target object. */
const WCHAR *const IA2_RELATION_DETAILS = L"details";

/** The target object is a details for this object. */
const WCHAR *const IA2_RELATION_DETAILS_FOR = L"detailsFor";

/** This object is an error for a target object. */
const WCHAR *const IA2_RELATION_ERROR = L"error";

/** The target object is an error for this object. */
const WCHAR *const IA2_RELATION_ERROR_FOR = L"errorFor";

///@}

/** This interface gives access to an object's set of relations.
Expand Down

0 comments on commit 249313d

Please sign in to comment.