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

Side by Side Diff: content/test/data/accessibility/aria/aria-col-attr.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 unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 @WIN-ALLOW:colcount* 2 @WIN-ALLOW:colcount*
3 @WIN-ALLOW:colindex* 3 @WIN-ALLOW:colindex*
4 @WIN-ALLOW:colspan* 4 @WIN-ALLOW:colspan*
5 @MAC-ALLOW:AXARIAColumn* 5 @MAC-ALLOW:AXARIAColumn*
6 @BLINK-ALLOW:ariaCol* 6 @BLINK-ALLOW:ariaColumn*
7 @BLINK-ALLOW:ariaCellColumn*
7 --> 8 -->
8 <div role="grid" aria-colcount="5"> 9 <div role="grid" aria-colcount="5">
9 <div role="row"> 10 <div role="row">
10 <span role="columnheader" aria-colindex="2" aria-colspan="2">cell 2</span> 11 <span role="columnheader" aria-colindex="2" aria-colspan="2">cell 2</span>
11 <span role="columnheader" aria-colindex="4">cell 4</span> 12 <span role="columnheader" aria-colindex="4">cell 4</span>
12 <span role="columnheader" aria-colindex="5">cell 5</span> 13 <span role="columnheader" aria-colindex="5">cell 5</span>
13 </div> 14 </div>
14 <div role="row" aria-colindex="2"> 15 <div role="row" aria-colindex="2">
15 <span role="gridcell">cell 2</span> 16 <span role="gridcell">cell 2</span>
16 <span role="gridcell">cell 3</span> 17 <span role="gridcell">cell 3</span>
17 <span role="gridcell">cell 4</span> 18 <span role="gridcell">cell 4</span>
18 <span role="gridcell">cell 5</span> 19 <span role="gridcell">cell 5</span>
19 </div> 20 </div>
20 </div> 21 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698