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

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

Issue 2165463003: Elements with an ARIA role of treeitem should be able to get their accessible name from their conte… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test expectations. Created 4 years, 5 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-tree.html
diff --git a/content/test/data/accessibility/aria/aria-tree.html b/content/test/data/accessibility/aria/aria-tree.html
index cd745bd38b119ead8877ad64f723edfb3adb66ca..7a100e0856f31cdec5ed9f2c8db45fd5fb3e7420 100644
--- a/content/test/data/accessibility/aria/aria-tree.html
+++ b/content/test/data/accessibility/aria/aria-tree.html
@@ -1,11 +1,13 @@
-<!--
-@MAC-ALLOW:AXRole*
-@WIN-ALLOW:xml-roles:*
--->
-<html>
-<body>
- <div role="tree">
- </div>
-</table>
-</body>
-</html>
+<!DOCTYPE html>
+<ul role="tree">
+ <li role="treeitem"><a href="#animals">Animals</a></li>
+ <ul role="group">
+ <li role="treeitem"><a href="#domesticated">Domesticated</a></li>
+ <ul role="group">
+ <li><a href="#dog">Dog</a></li>
+ <li><a href="#cat">Cat</a></li>
+ </ul>
+ <li role="treeitem"><a href="#wild">Wild</a></li>
+ </ul>
+ <li role="treeitem"><a href="#plants">Plants</a></li>
+</ul>

Powered by Google App Engine
This is Rietveld 408576698