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