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

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 Blink test.# with '#' will be ignored, and an empty message aborts the commit. 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 cb9713c0ad483477ddc5d844f3b336796b25a52e..b2ddb3b076d46865374140936746d03c6c2d214d 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