From d70ee108183c110769dabe39f87f3f66542e5fb5 Mon Sep 17 00:00:00 2001
From: Scott O'Hara <scottaohara@users.noreply.github.com>
Date: Wed, 17 Jul 2024 15:06:23 -0400
Subject: [PATCH 1/2] correction: allow role=math on img element

closes #523

includes allowance of `role=math` on `img` elements.

Per the ARIA specification:
>While it is not ideal to use an image of a mathematical expression, there exists a significant amount of legacy content where images are used to represent mathematical expressions. Authors SHOULD ensure that images of math are labeled by text that describes the mathematical expression as it might be spoken.

so this role should be allowed for such instances, and any further accessibility gaps caused by the use of the img element would be for authors to resolve beyond the scope of what this spec covers.
---
 index.html | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/index.html b/index.html
index ac91868..7a21846 100644
--- a/index.html
+++ b/index.html
@@ -1585,6 +1585,9 @@ <h2 id="docconformance">
                 <a href="#index-aria-button">`button`</a>,
                 <a href="#index-aria-checkbox">`checkbox`</a>,
                 <a href="#index-aria-link">`link`</a>,
+                <span class="correction">
+                  <a href="#index-aria-math">`math`</a>,
+                </span>
                 <a href="#index-aria-menuitem">`menuitem`</a>,
                 <a href="#index-aria-menuitemcheckbox">`menuitemcheckbox`</a>,
                 <a href="#index-aria-menuitemradio">`menuitemradio`</a>,
@@ -1601,7 +1604,8 @@ <h2 id="docconformance">
                 <a href="#index-aria-slider">`slider`</a>,
                 <a href="#index-aria-switch">`switch`</a>,
                 <a href="#index-aria-tab">`tab`</a> or
-                <a href="#index-aria-treeitem">`treeitem`</a>. (<code><a href="#index-aria-img">img</a></code> is also allowed, but NOT RECOMMENDED.)
+                <a href="#index-aria-treeitem">`treeitem`</a>. 
+                (<code><a href="#index-aria-img">img</a></code> is also allowed, but NOT RECOMMENDED.)
               </p>
               <p>
                 DPub Role:

From e922c05f9bb667d5f05fabd4ba1ab687033b4b79 Mon Sep 17 00:00:00 2001
From: Scott O'Hara <scottaohara@users.noreply.github.com>
Date: Mon, 23 Dec 2024 14:06:04 -0500
Subject: [PATCH 2/2] update changelog

---
 index.html | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/index.html b/index.html
index 33516d8..c7cf366 100644
--- a/index.html
+++ b/index.html
@@ -64,6 +64,10 @@
         the following substantive additions and/or corrections have been proposed:
       </p>
       <ul>
+        <li>
+          <a href="https://github.com/w3c/html-aria/pull/525">23 December 2024 - Addition:</a>
+          Update the <a href="#el-img">`img`</a> element to allow the `math` role.
+        </li>
         <li>
           <a href="https://github.com/w3c/html-aria/pull/533">13 December 2024 - Addition:</a>
           Update to include the `image` role as preferred synonym to the `img` role.