summaryrefslogtreecommitdiffstats
path: root/accessible/interfaces
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
commitdef92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch)
tree2ef34b9ad8bb9a9220e05d60352558b15f513894 /accessible/interfaces
parentAdding debian version 125.0.3-1. (diff)
downloadfirefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz
firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.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.idl4
-rw-r--r--accessible/interfaces/nsIAccessibleMacInterface.idl2
-rw-r--r--accessible/interfaces/nsIAccessibleRole.idl7
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;
};