diff --git a/accname/index.html b/accname/index.html index a685deaad..2c020a2aa 100644 --- a/accname/index.html +++ b/accname/index.html @@ -628,7 +628,8 @@
current node's native markup provides an
[=attribute=] (e.g. alt) or [=element=] (e.g. HTML label or SVG title) that defines a text alternative, return that alternative in the form of
- a flat string as defined by the host language, unless the current node is exposed as presentational (role="presentation" or role="none").
+ a flat string as defined by the host language, unless the current node is exposed as presentational (role="presentation" or
+ role="none").
Some APIs, provide methods which require...
+To aria notify given node, announcement, and priority:
| ARIA Specification | +
+ aria notify
+ |
+
|---|---|
| MSAA + IAccessible2 | +
+
|
+
| UIA | +
+
|
+
| ATK | +
+
|
+
| AT-SPI | +
+
|
+
| AX API | +
+
|
+
diff --git a/index.html b/index.html index 4a6a9186b..51f98921b 100644 --- a/index.html +++ b/index.html @@ -16703,8 +16703,8 @@
Conforming user agents MUST implement the following IDL interface.
+Conforming user agents MUST implement the following IDL interfaces.
@@ -16784,6 +16784,37 @@Interface Mixin ARIAMixin
IDL Attribute Name Notes or Exceptions.
+ enum AriaNotifyPriority { "normal", "high" };
+
+ dictionary AriaNotificationOptions {
+ AriaNotifyPriority priority = "normal";
+ };
+ interface mixin ARIANotifyMixin {
+ undefined ariaNotify(DOMString announcement, optional AriaNotificationOptions options = {});
+ };
+ Element includes ARIANotifyMixin;
+ Document includes ARIANotifyMixin;
+
+
+
+ User Agent processing for the
+ ariaNotify(announcement, options)
+ method steps are:
+
Let priority be options["priority"].
Run the aria notify steps given node, announcement, and priority.
+