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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <!-- 1 <!DOCTYPE html>
2 @MAC-ALLOW:AXRole* 2 <ul role="tree">
3 @WIN-ALLOW:xml-roles:* 3 <li role="treeitem"><a href="#animals">Animals</a></li>
4 --> 4 <ul role="group">
5 <html> 5 <li role="treeitem"><a href="#domesticated">Domesticated</a></li>
6 <body> 6 <ul role="group">
7 <div role="tree"> 7 <li><a href="#dog">Dog</a></li>
8 </div> 8 <li><a href="#cat">Cat</a></li>
9 </table> 9 </ul>
10 </body> 10 <li role="treeitem"><a href="#wild">Wild</a></li>
11 </html> 11 </ul>
12 <li role="treeitem"><a href="#plants">Plants</a></li>
13 </ul>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698