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

Unified Diff: content/test/data/accessibility/aria/aria-treegrid.html

Issue 2812003004: A treegrid should expose its rows in MSAA/IA2 as outlineitems. (Closed)
Patch Set: Fix test for aria-level 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: content/test/data/accessibility/aria/aria-treegrid.html
diff --git a/content/test/data/accessibility/aria/aria-treegrid.html b/content/test/data/accessibility/aria/aria-treegrid.html
index b5923c5f804592180e19831ff453ac16d7c04ac4..18136c37e2d064e48de5b6aed4805b25e19a4c0f 100644
--- a/content/test/data/accessibility/aria/aria-treegrid.html
+++ b/content/test/data/accessibility/aria/aria-treegrid.html
@@ -14,6 +14,13 @@
<tr role="row" aria-level="2">
<td role="gridcell">Cell at level 2</td>
</tr>
-</table>
+ </table>
+ <table role="treegrid">
+ <tbody role="rowgroup">
+ <tr role="row" aria-level="1">
+ <td role="gridcell">Cell at level 1</td>
+ </tr>
+ </tbody>
+ </table>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698