1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20

content / test / data / accessibility / aria / aria-autocomplete.html [blame]

<!--
@WIN-ALLOW:IA2_STATE_SUPPORTS_AUTOCOMPLETION
@WIN-ALLOW:autocomplete:*
@WIN-ALLOW:haspopup*
@BLINK-ALLOW:haspopup*
@AURALINUX-ALLOW:supports-autocompletion
@AURALINUX-ALLOW:autocomplete:*
@AURALINUX-ALLOW:haspopup:*
-->
<html>
<body>
  <input role="combobox" aria-autocomplete="inline" value="autocomplete=inline">
  <input role="combobox" aria-autocomplete="list" value="autocomplete=list">
  <input role="combobox"aria-autocomplete="both" value="autocomplete=both">
  <input role="combobox" aria-autocomplete="none" value="autocomplete=none">

  <!-- Input elements of type text should map to an ARIA role of textbox. -->
  <input type="text" aria-autocomplete="inline" value="No role with autocomplete=inline">
</body>
</html>