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

Side by Side Diff: content/test/data/accessibility/aria/aria-row-attr.html

Issue 1547643002: ARIA 1.1: implementation for aria-col-* and aria-row-*. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds MODULES_EXPORT Created 5 years 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
(Empty)
1 <!--
2 @WIN-ALLOW:rowcount*
3 @WIN-ALLOW:rowindex*
4 @WIN-ALLOW:rowspan*
5 @MAC-ALLOW:AXARIARow*
6 -->
7 <div role="grid" aria-rowcount="5">
8 <div role="row">
9 <span role="columnheader" aria-rowindex="3">cell 2</span>
10 <span role="columnheader" aria-rowindex="3">cell 3</span>
11 <span role="columnheader" aria-rowindex="3" aria-rowspan="2">cell 4</span>
12 </div>
13 <div role="row" aria-rowindex="4">
14 <span role="gridcell">cell 2</span>
15 <span role="gridcell">cell 3</span>
16 </div>
17 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698