--- a/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-none.html Fri Jun 07 17:51:59 2013 -0500
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-none.html Fri Jun 07 17:55:22 2013 -0500
@@ -8,6 +8,11 @@
</title>
</head>
<body>
- <input id="test" role="combobox" aria-autocomplete="none" value="Placeholder content" aria-expanded="false">
+ <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>
\ No newline at end of file
+</html>