diff --git a/index.html b/index.html
index 20bf3ae..16692f5 100644
--- a/index.html
+++ b/index.html
@@ -9449,6 +9449,63 @@
Special Events for Menus
+
+ Algorithms
+ Some APIs, provide methods which require...
+ ARIANotifyMixin Algorithm Mapping Tables
+ ariaNotify
+ To aria notify
given node, announcement, priority, interrupt, and id:
+
+
+
+ ARIA Specification |
+
+ aria notify
+ |
+
+
+ MSAA + IAccessible2 |
+ |
+
+
+ UIA |
+
+ Let notificationProcessing be null .
+ If interrupt is "none " and priority is "none " set notificationProcessing to NotificationProcessing_All .
+ If interrupt is "none " and priority is "important " set notificationProcessing to NotificationProcessing_ImportantAll .
+ If interrupt is "all " and priority is "none " set notificationProcessing to NotificationProcessing_MostRecent .
+ If interrupt is "all " and priority is "important " set notificationProcessing to NotificationProcessing_ImportantMostRecent .
+ If interrupt is "pending " and priority is "none " set notificationProcessing to NotificationProcessing_CurrentThenMostRecent .
+ If interrupt is "pending " and priority is "important " set notificationProcessing to NotificationProcessing_ImportantMostRecent .
+ Assert: notificationProcessing is not null .
+ Call UiaRaiseNotificationEvent with given node, NotificationKind_ActionCompleted , notificationProcessing, announcement, and id.
+ |
+
+
+ ATK/AT-SPI |
+
+
+ |
+
+
+ AX API |
+
+ Let document be node's associated document.
+ Let window be document's associated window.
+ Let notification be NSAccessibilityAnnouncementRequestedNotification .
+ Let mapped_priority be NSAccessibilityPriorityHigh if priority is "important", otherwise NSAccessibilityPriorityMedium .
+ Let userInfo be a NSDictionary with the following keys:
+
+ NSAccessibilityAnnouncementKey as announcement
+ NSAccessibilityPriorityKey as mapped_priority
+
+
+ Call NSAccessibilityPostNotificationWithUserInfo with given window, notification, and userInfo.
+ |
+
+
+
+