OLD | NEW |
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> |
OLD | NEW |