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