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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/aria/aria-row-attr.html
diff --git a/content/test/data/accessibility/aria/aria-row-attr.html b/content/test/data/accessibility/aria/aria-row-attr.html
new file mode 100644
index 0000000000000000000000000000000000000000..67e64ac029a4008b3d1e412aa096a7fcb0ac7319
--- /dev/null
+++ b/content/test/data/accessibility/aria/aria-row-attr.html
@@ -0,0 +1,17 @@
+<!--
+@WIN-ALLOW:rowcount*
+@WIN-ALLOW:rowindex*
+@WIN-ALLOW:rowspan*
+@MAC-ALLOW:AXARIARow*
+-->
+<div role="grid" aria-rowcount="5">
+ <div role="row">
+ <span role="columnheader" aria-rowindex="3">cell 2</span>
+ <span role="columnheader" aria-rowindex="3">cell 3</span>
+ <span role="columnheader" aria-rowindex="3" aria-rowspan="2">cell 4</span>
+ </div>
+ <div role="row" aria-rowindex="4">
+ <span role="gridcell">cell 2</span>
+ <span role="gridcell">cell 3</span>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698