--- a/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-both.html Fri Jun 07 17:49:53 2013 -0500
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-both.html Fri Jun 07 17:51:59 2013 -0500
@@ -8,8 +8,11 @@
</title>
</head>
<body>
- <div id="test" role="combobox" aria-autocomplete="both">Placeholder content</div>
- <div id="obj1">obj1</div>
- <div id="obj2">obj2</div>
+ <input type="text" aria-label="Tag" role="combobox"
+ aria-autocomplete="both" 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>