fixed test case 667 to match testable statement
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Fri, 16 Nov 2012 11:57:47 -0600
changeset 64 df9142e8914e
parent 63 49deb02a9e3b
child 65 c58b93fbf989
fixed test case 667 to match testable statement
ARIA/1.0/tests/test-files/combobox-autocomplete-list/input.html
--- a/ARIA/1.0/tests/test-files/combobox-autocomplete-list/input.html	Thu Nov 15 09:23:33 2012 -0600
+++ b/ARIA/1.0/tests/test-files/combobox-autocomplete-list/input.html	Fri Nov 16 11:57:47 2012 -0600
@@ -5,11 +5,11 @@
       <title>Input with role="combobox" and aria-autocomplete="list"</title>
    </head>
    <body>
-   	<input type="text" id="test" role="combobox" aria-label="Tag" aria-expanded="true"
+   	<input tabindex="0" type="text" id="test" role="combobox" aria-label="Tag" aria-expanded="true"
    		aria-autocomplete="list" aria-owns="owned_listbox" aria-activedescendant="selected_option" />
    	<ul role="listbox" id="owned_listbox">
    		<li role="option">Zebra</li>
-   		<li role="option" id="selected_option">Zoom</li>
+   		<li role="option" id="selected_option" aria-selected="true">Zoom</li>
    	</ul>
    </body>
-</html>
\ No newline at end of file
+</html>