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

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

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 @WIN-DENY:description* 2 @WIN-DENY:description*
3 @MAC-ALLOW:AXFocused='1' 3 @MAC-ALLOW:AXFocused='1'
4 @MAC-ALLOW:AXLinkedUIElements* 4 @MAC-ALLOW:AXLinkedUIElements*
5 @MAC-ALLOW:AXTitleUIElement* 5 @MAC-ALLOW:AXTitleUIElement*
6 --> 6 -->
7 <html> 7 <html>
8 <body> 8 <body>
9 <div id="state_label">State</div> 9 <div id="state_label">State</div>
10 <input type="text" 10 <input type="text"
11 role="combobox" 11 role="combobox"
12 aria-labelledby="state_label" 12 aria-labelledby="state_label"
13 aria-autocomplete="list" 13 aria-autocomplete="list"
14 aria-owns="state_list" 14 aria-owns="state_list"
15 aria-readonly="true" 15 aria-readonly="true"
16 aria-activedescendant="state2" 16 aria-activedescendant="state2"
17 autofocus="true"/> 17 autofocus="true"/>
18 <ul id="state_list" role="listbox" aria-expanded="true"> 18 <ul id="state_list" role="listbox" aria-expanded="true">
19 <li id="state1" role="option" tabindex="-1">Alabama</li> 19 <li id="state1" role="option" tabindex="-1">Alabama</li>
20 <li id="state2" role="option" tabindex="-1">Alaska</li> 20 <li id="state2" role="option" tabindex="-1">Alaska</li>
21 </ul> 21 </ul>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698