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