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

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

Issue 2893683002: Selection follows focus/activedescendant in single selection containers (Closed)
Patch Set: Last test to fix we hope Created 3 years, 7 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 <!--
2 @MAC-ALLOW:AXFocused='1' 2 @MAC-ALLOW:AXFocused='1'
3 @MAC-ALLOW:AXLinkedUIElements* 3 @MAC-ALLOW:AXLinkedUIElements*
4 @MAC-ALLOW:AXTitleUIElement* 4 @MAC-ALLOW:AXTitleUIElement*
5 @WIN-DENY:description* 5 @WIN-DENY:description*
6 @WIN-ALLOW:ia2_hypertext=* 6 @WIN-ALLOW:ia2_hypertext=*
7 @WIN-ALLOW:SELECT*
7 --> 8 -->
8 <html> 9 <html>
9 <body> 10 <body>
10 <div id="state_label">State</div> 11 <div id="state_label">State</div>
11 <input type="text" 12 <input type="text"
12 role="combobox" 13 role="combobox"
13 aria-labelledby="state_label" 14 aria-labelledby="state_label"
14 aria-autocomplete="list" 15 aria-autocomplete="list"
15 aria-owns="state_list" 16 aria-owns="state_list"
16 aria-readonly="true" 17 aria-readonly="true"
17 aria-activedescendant="state2" 18 aria-activedescendant="state2"
18 autofocus="true"/> 19 autofocus="true"/>
19 <ul id="state_list" role="listbox" aria-expanded="true"> 20 <ul id="state_list" role="listbox" aria-expanded="true">
20 <li id="state1" role="option" tabindex="-1">Alabama</li> 21 <li id="state1" role="option" tabindex="-1">Alabama</li>
21 <li id="state2" role="option" tabindex="-1">Alaska</li> 22 <li id="state2" role="option" tabindex="-1">Alaska</li>
22 </ul> 23 </ul>
23 </body> 24 </body>
24 </html> 25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698