Hi.
Just to ensure. Are indexes used in IAccessibleTable calculated from
left to right always and they do not depend on table direction. So if
we have HTML table
<table>
<tr>
<td>cell1</td><td>cell2</td>
</tr>
</table>
which is rendered as
|------------------|
| cell1 | cell2 |
|------------------|
with ta...@dir="ltr"
and
|------------------|
| cell2 | cell1 |
|------------------|
with ta...@dir="rtl"
then IAccessibleTable::accessibleAt(0, 0) returns "cell1" for 1th
table and "cell2" for 2nd table, table-cell-index object attribute on
cell1 of 1th table is 0, table-cell-index on cell2 of 2nd table is 0.
Is it correct?
Alex.
_______________________________________________
Accessibility-ia2 mailing list
[email protected]
https://lists.linux-foundation.org/mailman/listinfo/accessibility-ia2