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