| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 2 @WIN-DENY:description* | |
| 3 @MAC-ALLOW:AXFocused='1' | |
| 4 @MAC-ALLOW:AXLinkedUIElements* | |
| 5 @MAC-ALLOW:AXTitleUIElement* | |
| 6 --> | |
| 7 <html> | |
| 8 <body> | |
| 9 <div id="state_label">State</div> | |
| 10 <input type="text" | |
| 11 role="combobox" | |
| 12 aria-labelledby="state_label" | |
| 13 aria-autocomplete="list" | |
| 14 aria-owns="state_list" | |
| 15 aria-readonly="true" | |
| 16 aria-activedescendant="state2" | |
| 17 autofocus="true"/> | |
| 18 <ul id="state_list" role="listbox" aria-expanded="true"> | |
| 19 <li id="state1" role="option" tabindex="-1">Alabama</li> | |
| 20 <li id="state2" role="option" tabindex="-1">Alaska</li> | |
| 21 </ul> | |
| 22 </body> | |
| 23 </html> | |
| OLD | NEW |