From 64579bf08e32466b099d03f647b93261f5e79aee Mon Sep 17 00:00:00 2001
From: Sarah Higley
Date: Wed, 15 Jul 2026 17:07:42 -0700
Subject: [PATCH] add aria-actions focus-handling wording to ARIA and Core AAM
---
core-aam/index.html | 7 ++++++-
index.html | 15 ++++++++++++++-
2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/core-aam/index.html b/core-aam/index.html
index c6c53de05..8b7704544 100644
--- a/core-aam/index.html
+++ b/core-aam/index.html
@@ -6461,7 +6461,12 @@ Not Mapped
aria-actions
-
+
+ After an action is invoked, browsers MUST NOT fire the API's focus event when the referenced action node receives focus.
+ The browser MUST subsequently return DOM focus to the referencing node also without firing an API focus event,
+ unless focus is moved to a different node by a programmatic focus change or a user interaction.
+
+
| ARIA Specification |
diff --git a/index.html b/index.html
index 86e9a4cde..29f9192f7 100644
--- a/index.html
+++ b/index.html
@@ -12197,8 +12197,21 @@ Definitions of States and Properties (all aria-* attributes)
User Agents SHOULD use the accessible names of elements referenced by aria-actions to determine the names of actions that are exposed in a platform accessibility API.
User Agents MUST NOT expose aria-actions if the Author MUST's are not followed.
+ In order to allow users to invoke actions while remaining on the referencing element, browsers MUST do the following steps to manage focus once an action is invoke via the aria-actions API:
+
+ -
+ If the referenced action node is focusable and receives focus as a result of an
aria-actions invocation:
+
+ - Allow the DOM focus events to fire on the referenced action node as a result of invoking it.
+ - Do not fire the desktop focus event.
+
+
+ - If focus is moved either programmatically or via a user interaction, handle that focus change as normal, and do not perform any further
aria-actions focus steps.
+ - If focus has not moved, the browser MUST move DOM focus back to the referencing element, again without firing a desktop focus event.
+ - If the referencing element can no longer be focused, the browser MAY keep focus on the referenced action element and fire a desktop focus event.
+
-