diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:35:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:35:49 +0000 |
commit | d8bbc7858622b6d9c278469aab701ca0b609cddf (patch) | |
tree | eff41dc61d9f714852212739e6b3738b82a2af87 /accessible/interfaces | |
parent | Releasing progress-linux version 125.0.3-1~progress7.99u1. (diff) | |
download | firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip |
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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; }; |