diff options
Diffstat (limited to 'accessible/interfaces')
-rw-r--r-- | accessible/interfaces/nsIAccessibleCaretMoveEvent.idl | 4 | ||||
-rw-r--r-- | accessible/interfaces/nsIAccessibleMacInterface.idl | 2 | ||||
-rw-r--r-- | accessible/interfaces/nsIAccessibleRole.idl | 7 |
3 files changed, 10 insertions, 3 deletions
diff --git a/accessible/interfaces/nsIAccessibleCaretMoveEvent.idl b/accessible/interfaces/nsIAccessibleCaretMoveEvent.idl index 4cdece16cc..2f750002a2 100644 --- a/accessible/interfaces/nsIAccessibleCaretMoveEvent.idl +++ b/accessible/interfaces/nsIAccessibleCaretMoveEvent.idl @@ -19,12 +19,12 @@ interface nsIAccessibleCaretMoveEvent: nsIAccessibleEvent /** * Return true if there is no selection. */ - readonly attribute bool isSelectionCollapsed; + readonly attribute boolean isSelectionCollapsed; /** * Return true if the caret is at the end of a line. */ - readonly attribute bool isAtEndOfLine; + readonly attribute boolean isAtEndOfLine; /** * Return caret move granularity. diff --git a/accessible/interfaces/nsIAccessibleMacInterface.idl b/accessible/interfaces/nsIAccessibleMacInterface.idl index 384d09d5f0..952ac2a9fe 100644 --- a/accessible/interfaces/nsIAccessibleMacInterface.idl +++ b/accessible/interfaces/nsIAccessibleMacInterface.idl @@ -67,7 +67,7 @@ interface nsIAccessibleMacInterface : nsISupports * Returns true if the given attribute is settable on the object. * Emulates `AXUIElementIsAttributeSettable`. **/ - bool isAttributeSettable(in AString attributeName); + boolean isAttributeSettable(in AString attributeName); /** * Sets the given attribute with the given value on the object. diff --git a/accessible/interfaces/nsIAccessibleRole.idl b/accessible/interfaces/nsIAccessibleRole.idl index 9c3376ab48..192f93f01d 100644 --- a/accessible/interfaces/nsIAccessibleRole.idl +++ b/accessible/interfaces/nsIAccessibleRole.idl @@ -806,4 +806,11 @@ interface nsIAccessibleRole : nsISupports * by using methods of two-dimensional navigation. */ const unsigned long ROLE_GRID = 138; + + /** + * Represents a structure containing one or more row elements in a tabular + * container. It is the structural equivalent to the thead, tfoot, and tbody + * elements in an HTML table element. + */ + const unsigned long ROLE_ROWGROUP = 139; }; |