summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-none.html
blob: 33be42e05f55c451de24d63f5b7ef392f4c6e71c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <title>&lt;div&gt; with role combobox; supported state or property "aria-autocomplete" value of
         "none"
      </title>
   </head>
   <body>
     <input type="text" aria-label="Tag" role="combobox"
      aria-autocomplete="none" aria-owns="owned_listbox" aria-activedescendant="selected_option" aria-expanded="true">
     <ul role="listbox" id="owned_listbox">
         <li role="option">Zebra</li>
         <li role="option" id="selected_option">Zoom</li>
     </ul>
   </body>
</html>