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

Side by Side Diff: content/test/data/accessibility/aria-combobox.html

Issue 175613002: Include relationship ARIA objects in serialized accessibility tree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reuse MAYBE(x) for failing android test Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 @WIN-DENY:description* 2 @WIN-DENY:description*
3 @MAC-ALLOW:AXFocused='1'
4 @MAC-ALLOW:AXLinkedUIElements*
5 @MAC-ALLOW:AXTitleUIElement*
3 --> 6 -->
4 <html> 7 <html>
5 <body> 8 <body>
6 <span id="state_label">State</span> 9 <div id="state_label">State</div>
7 <input type="text" 10 <input type="text"
8 role="combobox" 11 role="combobox"
9 aria-labelledby="state_label" 12 aria-labelledby="state_label"
10 aria-autocomplete="list" 13 aria-autocomplete="list"
11 aria-owns="state_list" 14 aria-owns="state_list"
12 aria-readonly="true" 15 aria-readonly="true"
13 aria-activedescendant="state2"/> 16 aria-activedescendant="state2"
17 autofocus="true"/>
14 <ul id="state_list" role="listbox" aria-expanded="true"> 18 <ul id="state_list" role="listbox" aria-expanded="true">
15 <li id="state1" role="option" tabindex="-1">Alabama</li> 19 <li id="state1" role="option" tabindex="-1">Alabama</li>
16 <li id="state2" role="option" tabindex="-1">Alaska</li> 20 <li id="state2" role="option" tabindex="-1">Alaska</li>
17 </ul> 21 </ul>
18 </body> 22 </body>
19 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698