input.html (583B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 5 <title>Input with role="combobox" and aria-autocomplete="list"</title> 6 </head> 7 <body> 8 <input tabindex="0" type="text" id="test" role="combobox" aria-label="Tag" aria-expanded="true" 9 aria-autocomplete="list" aria-owns="owned_listbox" aria-activedescendant="selected_option"> 10 <ul role="listbox" id="owned_listbox"> 11 <li role="option">Zebra</li> 12 <li role="option" id="selected_option" aria-selected="true">Zoom</li> 13 </ul> 14 </body> 15 </html>