Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2593)

Unified Diff: chrome/test/data/extensions/api_test/automation/sites/attributes.html

Issue 2799443002: Implemented ARIA colindex, rowindex, colcount and rowcount for Chromevox. (Closed)
Patch Set: Fixed automation test. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/automation/sites/attributes.html
diff --git a/chrome/test/data/extensions/api_test/automation/sites/attributes.html b/chrome/test/data/extensions/api_test/automation/sites/attributes.html
index 22e85b7f8c5eee9492bf2a870b26192732b65b10..b723015cd68966214a3b30c4f9ea0cc518a5dcec 100644
--- a/chrome/test/data/extensions/api_test/automation/sites/attributes.html
+++ b/chrome/test/data/extensions/api_test/automation/sites/attributes.html
@@ -53,18 +53,19 @@
<div id="main" aria-label="main">Content for scrollbar to control</div>
<!-- table and cell attributes -->
- <table id="table" role="grid">
+ <!-- The first 100 rows and the first 50 columns are missing. -->
+ <table id="table" role="grid" aria-rowcount="103" aria-colcount="53">
<tr role="row">
- <td role="cell">Cell spanning one column</td>
- <td role="cell">Cell spanning one column</td>
- <td role="cell">Cell spanning one column</td>
+ <td role="cell" aria-rowindex="101" aria-colindex="51">Cell spanning one column</td>
+ <td role="cell" aria-rowindex="101" aria-colindex="52">Cell spanning one column</td>
+ <td role="cell" aria-rowindex="101" aria-colindex="53">Cell spanning one column</td>
<tr role="row">
- <td colspan="2" role="cell">Cell spanning two columns</td>
- <td rowspan="2" role="cell">Cell spanning two rows</td>
+ <td colspan="2" role="cell" aria-rowindex="102" aria-colindex="51">Cell spanning two columns</td>
+ <td rowspan="2" role="cell" aria-rowindex="102" aria-colindex="53">Cell spanning two rows</td>
</tr>
<tr role="row">
- <td role="cell">Cell spanning one column</td>
- <td role="cell">Cell spanning one column</td>
+ <td role="cell" aria-rowindex="103" aria-colindex="51">Cell spanning one column</td>
+ <td role="cell" aria-rowindex="103" aria-colindex="52">Cell spanning one column</td>
</tr>
</table>

Powered by Google App Engine
This is Rietveld 408576698