Skip to content

Commit 4025719

Browse files
committed
GH-ISSUE-563: Corrected AX API mappings of aria-colindex and aria-rowindex.
AXARIAColumnIndex and AXARIARowIndex are 1-based, unlike the related zero-based location member of the AXColumuIndexRange and AXRowIndexRange properties.
1 parent e2f7857 commit 4025719

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

core-aam/core-aam.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -1895,7 +1895,7 @@ <h4>Not Mapped</h4>
18951895
<th><a class="property-reference" href="#aria-colindex"><code>aria-colindex</code></a> [ARIA 1.1]</th>
18961896
<td>
18971897
<ul>
1898-
<li>Expose the value of <code>aria-colindex</code> in object attribute <code>colindex:&lt;value&gt;</code>.</li>
1898+
<li>Expose the value of <code>aria-colindex</code> in object attribute <code>colindex:&lt;value&gt;</code></li>
18991899
<li>Expose via <a href="#mapping_group_position"><code>groupPosition()</code></a> on cell and gridcell</li>
19001900
</ul>
19011901

@@ -1913,7 +1913,7 @@ <h4>Not Mapped</h4>
19131913

19141914
</td>
19151915
<td>
1916-
<code>AXARIAColumnIndex: &lt;value&gt;</code>, 0-based (<code>aria-colindex</code> is 1-based).
1916+
<code>AXARIAColumnIndex: &lt;value&gt;</code>
19171917
</td>
19181918
</tr>
19191919
<tr id="ariaColSpan">
@@ -1936,7 +1936,7 @@ <h4>Not Mapped</h4>
19361936
</td>
19371937
<td><code>AXColumnIndexRange:<br />
19381938
location=&lt;column index&gt;<br />
1939-
length=&lt;colspan value&gt;</code>,<br />
1939+
length=&lt;colspan value&gt;</code>,
19401940
where <code>location</code> is 0-based.
19411941
</td>
19421942
</tr>
@@ -2585,14 +2585,14 @@ <h4>Not Mapped</h4>
25852585
</ul>
25862586
</td>
25872587
<td>
2588-
<code>AXARIARowIndex: &lt;value&gt;</code>, 0-based (<code>aria-rowindex</code> is 1-based).
2588+
<code>AXARIARowIndex: &lt;value&gt;</code>
25892589
</td>
25902590
</tr>
25912591
<tr id="ariaRowSpan">
25922592
<th><a class="property-reference" href="#aria-rowspan"><code>aria-rowspan</code></a> [ARIA 1.1]</th>
25932593
<td>
25942594
<ul>
2595-
<li>Expose the value of <code>aria-rowspan</code> in object attribute <code>rowspan:&lt;value&gt;</code>.</li>
2595+
<li>Expose the value of <code>aria-rowspan</code> in object attribute <code>rowspan:&lt;value&gt;</code></li>
25962596
<li>Expose via <code>IAccessibleTableCell::rowExtent</code></li>
25972597
</ul>
25982598
</td>
@@ -2602,7 +2602,7 @@ <h4>Not Mapped</h4>
26022602
</ul></td>
26032603
<td>
26042604
<ul>
2605-
<li>Expose the value of <code>aria-rowspan</code> in object attribute <code>rowspan:&lt;value&gt;</code>.</li>
2605+
<li>Expose the value of <code>aria-rowspan</code> in object attribute <code>rowspan:&lt;value&gt;</code></li>
26062606
<li>Expose via <code>AccessibleTableCell</code> interface method <code>atk_table_cell_get_row_column_span()</code></li>
26072607
</ul>
26082608
</td>

0 commit comments

Comments
 (0)