First checkin of test file for test case 771.
authorJoseph Scheuhammer <clown@alum.mit.edu>
Fri, 22 Mar 2013 15:53:31 -0400
changeset 142 9be08deb2f48
parent 139 267277878240
child 143 3699b4bc012a
First checkin of test file for test case 771.
ARIA/1.0/tests/test-files/roles-plain-concrete/roles-plain-concrete-listbox-parent-combobox.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/roles-plain-concrete/roles-plain-concrete-listbox-parent-combobox.html	Fri Mar 22 15:53:31 2013 -0400
@@ -0,0 +1,36 @@
+<!DOCTYPE html
+  PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+   <head>
+      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+      <title>An element with id=test and role=listbox, which is owned by a combobox</title>
+      <style type="text/css">
+          ul#test {
+            list-style-type: none;
+            width: 5em;
+            height: 3em;
+            border: 1px solid black;
+            margin-top: 0;
+            margin-left: 1em;
+          }
+          
+          ul#test > li {
+            margin-left -10em;
+          }
+      </style>
+   </head>
+   <body>
+       <p>An element with <code>id=test</code> and <code>role=listbox</code>, which is owned by a <code>combobox</code>:</p>
+       <input type="text"
+          aria-label="Label"
+          role="combobox"
+          aria-expanded="true"
+          aria-owns="test"
+          aria-autocomplete="none"
+          aria-activedescendant="selected_option">
+        <ul role="listbox" id="test">
+            <li role="option">Zebra</li>
+            <li role="option" id="selected_option">Zoom</li>
+        </ul>
+   </body>
+</html>
\ No newline at end of file