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

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

Issue 1416873015: Text controls should expose their value instead of their name via IAccessibleText (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed radio menu items test on Android. Created 5 years, 1 month 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 @WIN-DENY:description*
3 @MAC-ALLOW:AXFocused='1' 2 @MAC-ALLOW:AXFocused='1'
4 @MAC-ALLOW:AXLinkedUIElements* 3 @MAC-ALLOW:AXLinkedUIElements*
5 @MAC-ALLOW:AXTitleUIElement* 4 @MAC-ALLOW:AXTitleUIElement*
5 @WIN-DENY:description*
6 @WIN-ALLOW:ia2_hypertext=*
6 --> 7 -->
7 <html> 8 <html>
8 <body> 9 <body>
9 <div id="state_label">State</div> 10 <div id="state_label">State</div>
10 <input type="text" 11 <input type="text"
11 role="combobox" 12 role="combobox"
12 aria-labelledby="state_label" 13 aria-labelledby="state_label"
13 aria-autocomplete="list" 14 aria-autocomplete="list"
14 aria-owns="state_list" 15 aria-owns="state_list"
15 aria-readonly="true" 16 aria-readonly="true"
16 aria-activedescendant="state2" 17 aria-activedescendant="state2"
17 autofocus="true"/> 18 autofocus="true"/>
18 <ul id="state_list" role="listbox" aria-expanded="true"> 19 <ul id="state_list" role="listbox" aria-expanded="true">
19 <li id="state1" role="option" tabindex="-1">Alabama</li> 20 <li id="state1" role="option" tabindex="-1">Alabama</li>
20 <li id="state2" role="option" tabindex="-1">Alaska</li> 21 <li id="state2" role="option" tabindex="-1">Alaska</li>
21 </ul> 22 </ul>
22 </body> 23 </body>
23 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698