<!--
@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>