From 22b3990090ea05bf5a1034eea543a7326c9a464e Mon Sep 17 00:00:00 2001 From: Scott O'Hara Date: Wed, 19 Oct 2022 10:59:11 -0400 Subject: [PATCH 1/2] update s element mapping closes #416 revises the `` element to map to ARIA's `deletion` role, rather than having no implicit ARIA mapping. Introducing this mapping would allow for browsers to expose this role, and thus AT to better communicate that the content is marked as no longer relevant. Presently authors need to employ visually hidden content to programmatically convey what the element visually represents with its default UA CSS strike-through. --- index.html | 32 ++++++-------------------------- 1 file changed, 6 insertions(+), 26 deletions(-) diff --git a/index.html b/index.html index 4de61127..e51ca235 100644 --- a/index.html +++ b/index.html @@ -2659,33 +2659,13 @@

HTML Element Role Mappings

`s` - No corresponding role - -
No accessible object.
-
- Text attributes: `text-line-through-style:solid` on the text container -
- - -
No accessible object. Styles used are exposed by UIA text attribute identifiers of the `TextRange` Control Pattern implemented on a parent accessible object. -
- - -
No accessible object. Exposed as - "text-line-through-style:solid" text attribute on the text container. -
- - -
- AXRole: `AXGroup` -
-
- AXSubrole: `(nil)` -
-
- AXRoleDescription: `"group"` -
+ + `deletion` role +
Use WAI-ARIA mapping
+
Use WAI-ARIA mapping
+
Use WAI-ARIA mapping
+
Use WAI-ARIA mapping
From 599960a04b14bb996a4a85908f26de57b437b737 Mon Sep 17 00:00:00 2001 From: Scott O'Hara Date: Mon, 12 Dec 2022 12:40:36 -0500 Subject: [PATCH 2/2] update changelog --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 0f6c8a71..f1030c1d 100644 --- a/index.html +++ b/index.html @@ -6128,6 +6128,7 @@

Change Log

Substantive changes since moving to the Accessible Rich Internet Applications Working Group (03-Nov-2019)

    +
  • 12-Dec-2022: Revise mapping for `s` element to be `role=deletion`. See GitHub PR 442.
  • 28-Nov-2022: Simplify accessible description computation section. See GitHub PR 444.
  • 19-Jul-2022: Update `address` element to be mapped to `role=group`. See GitHub PR 420.
  • 03-Apr-2022: Update `aside` mappings based on its nesting context. See GitHub PR 350.