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