make 788 and 789 proper comboboxes
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Fri, 07 Jun 2013 17:49:53 -0500
changeset 243 c3d32ee9e0ad
parent 242 36937829c010
child 244 dbb8340546f1
make 788 and 789 proper comboboxes
ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-inline.html
ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-list.html
--- a/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-inline.html	Fri Jun 07 17:43:25 2013 -0500
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-inline.html	Fri Jun 07 17:49:53 2013 -0500
@@ -9,7 +9,7 @@
    </head>
    <body>
      <input type="text" aria-label="Tag" role="combobox"
-      aria-autocomplete="inline" aria-owns="owned_listbox" aria-activedescendant="selected_option">
+      aria-autocomplete="inline" 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>
--- a/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-list.html	Fri Jun 07 17:43:25 2013 -0500
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-combobox-aria-autocomplete-list.html	Fri Jun 07 17:49:53 2013 -0500
@@ -8,8 +8,11 @@
       </title>
    </head>
    <body>
-      <div id="test" role="combobox" aria-autocomplete="list">Placeholder content</div>
-      <div id="obj1">obj1</div>
-      <div id="obj2">obj2</div>
+     <input type="text" aria-label="Tag" role="combobox"
+      aria-autocomplete="list" 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>