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

Unified Diff: content/test/data/accessibility/aria/aria-col-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-col-attr.html
diff --git a/content/test/data/accessibility/aria/aria-col-attr.html b/content/test/data/accessibility/aria/aria-col-attr.html
new file mode 100644
index 0000000000000000000000000000000000000000..4a9e76c0c28a155665b5751a9d6a7e4a7caff21b
--- /dev/null
+++ b/content/test/data/accessibility/aria/aria-col-attr.html
@@ -0,0 +1,19 @@
+<!--
+@WIN-ALLOW:colcount*
+@WIN-ALLOW:colindex*
+@WIN-ALLOW:colspan*
+@MAC-ALLOW:AXARIAColumn*
+-->
+<div role="grid" aria-colcount="5">
+ <div role="row">
+ <span role="columnheader" aria-colindex="2" aria-colspan="2">cell 2</span>
+ <span role="columnheader" aria-colindex="4">cell 4</span>
+ <span role="columnheader" aria-colindex="5">cell 5</span>
+ </div>
+ <div role="row" aria-colindex="2">
+ <span role="gridcell">cell 2</span>
+ <span role="gridcell">cell 3</span>
+ <span role="gridcell">cell 4</span>
+ <span role="gridcell">cell 5</span>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698