Test case 274: Modified test file to have a combobox with a list of options and made the test element focusable with tabindex="0".
authorJoseph Scheuhammer <clown@alum.mit.edu>
Sun, 14 Apr 2013 01:37:15 -0400
changeset 177 d649291bab68
parent 176 5c337f379000
child 178 8cb56c34c248
Test case 274: Modified test file to have a combobox with a list of options and made the test element focusable with tabindex="0".
ARIA/1.0/tests/test-files/roles-properties-supported-inherited/roles-properties-supported-inherited-combobox-aria-activedescendant-obj1.html
--- a/ARIA/1.0/tests/test-files/roles-properties-supported-inherited/roles-properties-supported-inherited-combobox-aria-activedescendant-obj1.html	Sun Apr 14 00:35:25 2013 -0400
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported-inherited/roles-properties-supported-inherited-combobox-aria-activedescendant-obj1.html	Sun Apr 14 01:37:15 2013 -0400
@@ -8,8 +8,11 @@
       </title>
    </head>
    <body>
-      <div id="test" role="combobox" aria-activedescendant="obj1">Placeholder content</div>
-      <div id="obj1">obj1</div>
-      <div id="obj2">obj2</div>
+      <div id="test" role="combobox" aria-expanded="true" aria-activedescendant="obj1" tabindex="0">
+          <div role="listbox">
+            <div id="obj1" role="option">obj1</div>
+            <div id="obj2" role="option">obj2</div>
+          </div>
+      </div>
    </body>
 </html>
\ No newline at end of file