after merge with 31
authorgzimmerm
Tue, 30 Oct 2012 16:45:07 +0100
changeset 32 d2e156c792b4
parent 31 daed0e73b768 (current diff)
parent 30 66f3888113e6 (diff)
child 33 8984e3bc00cc
after merge with 31
--- a/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-slider.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-slider.html	Tue Oct 30 16:45:07 2012 +0100
@@ -7,7 +7,7 @@
    <body>
    	<input type="checkbox" id="test" />
    	<label for="test">Flash the screen 
-   		<label for="test">foo <input role="slider" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		<label for="test">foo <input role="slider" type="range" value="5" min="1" max="10" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
    		times.
    	</label>
    </body>
--- a/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-slider.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-slider.html	Tue Oct 30 16:45:07 2012 +0100
@@ -7,7 +7,7 @@
    <body>
    	<input type="file" id="test" />
    	<label for="test">Flash the screen 
-   		<label for="test">foo <input role="slider" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		<label for="test">foo <input role="slider" type="range" value="5" min="1" max="10" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
    		times.
    	</label>
    </body>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/image-title.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,10 @@
+<!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>Image input with title attribute and no other labeling mechanism</title>
+   </head>
+   <body>
+   	<input type="image" src="test.png" id="test" title="foo" />
+   </body>
+</html>
\ No newline at end of file
--- a/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-slider.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-slider.html	Tue Oct 30 16:45:07 2012 +0100
@@ -7,7 +7,7 @@
    <body>
    	<input type="password" id="test" />
    	<label for="test">Flash the screen 
-   		<label for="test">foo <input role="slider" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		<label for="test">foo <input role="slider" type="range" value="5" min="1" max="10" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
    		times.
    	</label>
    </body>
--- a/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-slider.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-slider.html	Tue Oct 30 16:45:07 2012 +0100
@@ -7,7 +7,7 @@
    <body>
    	<input type="radio" id="test" />
    	<label for="test">Flash the screen 
-   		<label for="test">foo <input role="slider" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		<label for="test">foo <input role="slider" type="range" value="5" min="1" max="10" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
    		times.
    	</label>
    </body>
--- a/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-slider.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-slider.html	Tue Oct 30 16:45:07 2012 +0100
@@ -7,7 +7,7 @@
    <body>
    	<input type="text" id="test" />
    	<label for="test">Flash the screen 
-   		<label for="test">foo <input role="slider" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		<label for="test">foo <input role="slider" type="range" value="5" min="1" max="10" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
    		times.
    	</label>
    </body>
--- a/ARIA/1.0/tests/test-files/accessible-name-input/text-title.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-title.html	Tue Oct 30 16:45:07 2012 +0100
@@ -2,9 +2,9 @@
 <html>
    <head>
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-      <title>Image input with title attribute and no other labeling mechanism</title>
+      <title>Text input with title attribute and no other labeling mechanism</title>
    </head>
    <body>
-   	<input type="image" src="test.png" id="test" title="foo" />
+   	<input type="text" id="test" title="foo" />
    </body>
 </html>
\ No newline at end of file
--- a/ARIA/1.0/tests/test-files/name-computation-general/599.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-general/599.html	Tue Oct 30 16:45:07 2012 +0100
@@ -1,13 +1,13 @@
-<!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>DIV with id="ID0" and aria-labelledby="ID0 ID1" and aria-label="Tag" and title is not specified.</title>
-  </head>
-  <body>
-    <div id="test" aria-aria-labelledby="ID0 ID1" aria-label='Tag'>aria-labelledby="ID0 ID1" aria-label='Tag'</div>
-    <span id="ID0">Element with id='ID0'</span>
-    <span id="ID1">Element with id='ID1'</span>
-  </body>
-</html>
+<!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>DIV with id="ID0" and aria-labelledby="ID0 ID1" and aria-label="Tag" and title is not specified.</title>
+              </head>
+                <body>
+                    <div id="test" aria-labelledby="ID0 ID1" aria-label="Tag">aria-labelledby="ID0 ID1" aria-label='Tag'</div>
+                        <span id="ID0">Element with id='ID0'</span>
+                            <span id="ID1">Element with id='ID1'</span>
+                              </body>
+                              </html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-general/603.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,2 @@
+<!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>&lt; href="test.html" aria-labelledby="ID1"&gt; ABC &lt;/A&gt; and aria-label is not specified and title is not specified.</title>
  </head>
  <body>
+    <div id="ID1">Nifty</div>
    <a reft="test.html" aria-labelledby="ID1">ABC</a>
  </body>
</html>
\ No newline at end of file
--- a/ARIA/1.0/tests/test-files/name-computation-input/547.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/547.html	Tue Oct 30 16:45:07 2012 +0100
@@ -7,7 +7,7 @@
 foo
 <input type="text" value="David"/>
 </label>
-<input type=text id="ID0" value="baz"/>
+<input type="text" id="ID0" value="baz"/>
 </body>
 </html>
 
--- a/ARIA/1.0/tests/test-files/name-computation-input/548.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/548.html	Tue Oct 30 16:45:07 2012 +0100
@@ -1,6 +1,6 @@
 <html>
 <head>
-<title>Test 548An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
+<title>Test 548 An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
 </head>
 <body>
 <label for="ID0">
@@ -10,7 +10,7 @@
       <option role="menuitem" value="scuba">rich</option>
    </select>
 </label> 
-<input type=text id="ID0" value="baz"/>
+<input type="text" id="ID0" value="baz"/>
 </body>
 </html>
 
--- a/ARIA/1.0/tests/test-files/name-computation-input/549.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/549.html	Tue Oct 30 16:45:07 2012 +0100
@@ -1,6 +1,6 @@
 <html>
 <head>
-<title>Test 549 An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
+<title>Test 549 An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
 </head>
 <body>
 <label for="ID0">
@@ -8,7 +8,7 @@
    <div role="spinbutton" aria-valuetext="Monday" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
    </div>
 </label>
-<input type=text id="ID0" value="baz"/>
+<input type="text" id="ID0" value="baz"/>
 
 </body>
 </html>
--- a/ARIA/1.0/tests/test-files/name-computation-input/550.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/550.html	Tue Oct 30 16:45:07 2012 +0100
@@ -8,7 +8,7 @@
    <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
    </div>
 </label>
-<input type=text id="ID0" value="baz"/>
+<input type="text" id="ID0" value="baz"/>
 
 </body>
 </html>
--- a/ARIA/1.0/tests/test-files/name-computation-input/551.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/551.html	Tue Oct 30 16:45:07 2012 +0100
@@ -3,7 +3,7 @@
 <title>Test 551 An INPUT type=text, password, checkbox, radio, file, or image , with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, is not referenced by a LABEL element, and has a title.</title>
 </head>
 <body>
-<input type=text id="test" title="crazy" value="baz"/>
+<input type="text" id="test" title="crazy" value="baz"/>
 </body>
 </html>
 
--- a/ARIA/1.0/tests/test-files/name-computation-input/552.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/552.html	Tue Oct 30 16:45:07 2012 +0100
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-<title>Test 552  An INPUT type=text with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
+<title>Test 552  An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
 <style>
 
 label:before
@@ -12,7 +12,7 @@
 </head>
 <body>
 <label for="test"></label>
-<input type="text id="test"/>
+<input type="text" aria-label="fruit" id="test"/>
 </body>
 </html>
 
--- a/ARIA/1.0/tests/test-files/name-computation-input/553.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/name-computation-input/553.html	Tue Oct 30 16:45:07 2012 +0100
@@ -1,7 +1,7 @@
 <!DOCTYPE html>
 <html>
 <head>
-<title>Test 553 An INPUT type=text with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
+<title>Test 553 An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
 <style>
 
 label:after
@@ -11,8 +11,8 @@
 </style>
 </head>
 <body>
-<label for="test">big and</label>
-<input type="text id="test"/>
+<label for="test">fruit</label>
+<input type="text" id="test"/>
 </body>
 </html>
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/721.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,10 @@
+<html>
+<head>
+<title>Test 546a An INPUT type=text, password, checkbox, radio, file, or img, with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, and is referenced by a LABEL element.</title>
+</head>
+<body>
+<label for="test">States:</label>
+<input type="password" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/723.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,10 @@
+<html>
+<head>
+<title>Test 546b An INPUT type=text, password, checkbox, radio, file, or img, with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, and is referenced by a LABEL element.</title>
+</head>
+<body>
+<label for="test">States:</label>
+<input type="checkbox" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/724.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,10 @@
+<html>
+<head>
+<title>Test 546c An INPUT type=text, password, checkbox, radio, file, or img, with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, and is referenced by a LABEL element.</title>
+</head>
+<body>
+<label for="test">States:</label>
+<input type="radio" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/725.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,10 @@
+<html>
+<head>
+<title>Test 546d An INPUT type=text, password, checkbox, radio, file, or img, with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, and is referenced by a LABEL element.</title>
+</head>
+<body>
+<label for="test">File:</label>
+<input type="file" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/726.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,10 @@
+<html>
+<head>
+<title>Test 546e An INPUT type=text, password, checkbox, radio, file, or img, with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, and is referenced by a LABEL element.</title>
+</head>
+<body>
+<label for="test">States:</label>
+<input type="image" id="test" src="foo.jpg"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/727.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,13 @@
+<html>
+<head>
+<title>Test 547a An INPUT type=text, password, checkbox, radio, or file, with id="ID0" referenced by a LABEL with an embedded INPUT type=text.</title>
+</head>
+<body>
+<label for="ID0">
+foo
+<input type="text" value="David"/>
+</label>
+<input type="password" id="ID0" value="baz"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/728.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,13 @@
+<html>
+<head>
+<title>Test 547b An INPUT type=text, password, checkbox, radio, or file, with id="ID0" referenced by a LABEL with an embedded INPUT type=text.</title>
+</head>
+<body>
+<label for="ID0">
+foo
+<input type="text" value="David"/>
+</label>
+<input type="checkbox" id="ID0"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/729.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,13 @@
+<html>
+<head>
+<title>Test 547c An INPUT type=text, password, checkbox, radio, or file, with id="ID0" referenced by a LABEL with an embedded INPUT type=text.</title>
+</head>
+<body>
+<label for="ID0">
+foo
+<input type="text" value="David"/>
+</label>
+<input type="radio" id="ID0"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/730.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,13 @@
+<html>
+<head>
+<title>Test 547d An INPUT type=text, password, checkbox, radio, or file, with id="ID0" referenced by a LABEL with an embedded INPUT type=text.</title>
+</head>
+<body>
+<label for="ID0">
+foo
+<input type="text" value="David"/>
+</label>
+<input type="file" id="ID0"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/731.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,13 @@
+<html>
+<head>
+<title>Test 547e An INPUT type=text, password, checkbox, radio, file, or image with id="ID0" referenced by a LABEL with an embedded INPUT type=text.</title>
+</head>
+<body>
+<label for="ID0">
+foo
+<input type="text" value="David"/>
+</label>
+<input type="image" id="ID0" src="foo.jpg"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/733.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,16 @@
+<html>
+<head>
+<title>Test 548a An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
+</head>
+<body>
+<label for="ID0">
+crazy
+   <select name="member" size="1" "role="menu" tabindex="0">
+      <option role="menuitem" value="beard" selected="true">clown</option>
+      <option role="menuitem" value="scuba">rich</option>
+   </select>
+</label> 
+<input type="password" id="ID0" value="baz"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/734.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,16 @@
+<html>
+<head>
+<title>Test 548b An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
+</head>
+<body>
+<label for="ID0">
+crazy
+   <select name="member" size="1" "role="menu" tabindex="0">
+      <option role="menuitem" value="beard" selected="true">clown</option>
+      <option role="menuitem" value="scuba">rich</option>
+   </select>
+</label> 
+<input type="checkbox" id="ID0"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/735.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,16 @@
+<html>
+<head>
+<title>Test 548c An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
+</head>
+<body>
+<label for="ID0">
+crazy
+   <select name="member" size="1" "role="menu" tabindex="0">
+      <option role="menuitem" value="beard" selected="true">clown</option>
+      <option role="menuitem" value="scuba">rich</option>
+   </select>
+</label> 
+<input type="radio" id="ID0"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/736.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,16 @@
+<html>
+<head>
+<title>Test 548d An INPUT type=text, password, checkbox, radio, or file, image with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
+</head>
+<body>
+<label for="ID0">
+crazy
+   <select name="member" size="1" "role="menu" tabindex="0">
+      <option role="menuitem" value="beard" selected="true">clown</option>
+      <option role="menuitem" value="scuba">rich</option>
+   </select>
+</label> 
+<input type="file" id="ID0"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/737.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,16 @@
+<html>
+<head>
+<title>Test 548e An INPUT type=text, password, checkbox, radio, or file, image with id="ID0", referenced by a LABEL with an embedded SELECT, role=combobox, or role=menu.</title>
+</head>
+<body>
+<label for="ID0">
+crazy
+   <select name="member" size="1" "role="menu" tabindex="0">
+      <option role="menuitem" value="beard" selected="true">clown</option>
+      <option role="menuitem" value="scuba">rich</option>
+   </select>
+</label> 
+<input type="image" id="ID0" src="foo.jpg"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/738.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuetext="Monday" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="password" value="baz" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/739.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuetext="Monday" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="checkbox" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/740.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuetext="Monday" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="radio" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/741.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuetext="Monday" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="file" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/742.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has an aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuetext="Monday" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="image" src="foo.jpg" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/743.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has no aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="password" id="ID0" value="baz"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/744.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, or file, with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has no aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="checkbox" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/745.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has no aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="radio" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/746.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has no aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="file" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/747.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,15 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image with id="ID0", referenced by a LABEL with an embedded role=spinbutton or role=slider that has no aria-valuetext.</title>
+</head>
+<body>
+<label for="ID0">
+   crazy
+   <div role="spinbutton" aria-valuemin="1" aria-valuemax="7" aria-valuenow="4">
+   </div>
+</label>
+<input type="image" src="foo.jpg" id="ID0"/>
+
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/748.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,9 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image , with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, is not referenced by a LABEL element, and has a title.</title>
+</head>
+<body>
+<input type="password" id="test" title="crazy" value="baz"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/749.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,9 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image , with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, is not referenced by a LABEL element, and has a title.</title>
+</head>
+<body>
+<input type="checkbox" id="test" title="crazy"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/750.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,9 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image , with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, is not referenced by a LABEL element, and has a title.</title>
+</head>
+<body>
+<input type="radio" id="test" title="crazy"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/751.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,9 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image , with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, is not referenced by a LABEL element, and has a title.</title>
+</head>
+<body>
+<input type="file" id="test" title="crazy"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/752.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,9 @@
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image , with id="test", with no aria-labelledby and no aria-label, does not have a role=presentation, is not referenced by a LABEL element, and has a title.</title>
+</head>
+<body>
+<input type="image" src="foo.jpg" id="test" title="crazy"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/753.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
+<style>
+
+label:before
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="password" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/754.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
+<style>
+
+label:before
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="checkbox" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/755.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
+<style>
+
+label:before
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="radio" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/756.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
+<style>
+
+label:before
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="file" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/757.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :before content rule.</title>
+<style>
+
+label:before
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="image" src="foo.jpg" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/758.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
+<style>
+
+label:after
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="password" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/759.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
+<style>
+
+label:after
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="checkbox" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/760.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
+<style>
+
+label:after
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="radio" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/761.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
+<style>
+
+label:after
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="file" id="test"/>
+</body>
+</html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/762.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>An INPUT type=text, password, checkbox, radio, file, or image, with id="test", with no aria-labelledby and no aria-label, but is referenced by a LABEL element that has an associated CSS :after content rule. </title>
+<style>
+
+label:after
+{
+content:"fancy";
+}
+</style>
+</head>
+<body>
+<label for="test">fruit</label>
+<input type="image" src="foo.jpg" id="test"/>
+</body>
+</html>
+
Binary file ARIA/1.0/tests/test-files/name-computation-input/foo.jpg has changed
--- a/ARIA/1.0/tests/test-files/presentation-role/496.html	Tue Oct 30 16:34:59 2012 +0100
+++ b/ARIA/1.0/tests/test-files/presentation-role/496.html	Tue Oct 30 16:45:07 2012 +0100
@@ -1,10 +1,9 @@
 <html>
 <head>
-<title>Test 496 Image element with role="presentation" but controlled by an button </title>
+<title>Test 496 Button element with role="presentation" that 'controls' an image.</title>
 </head>
 <body>
-<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" id="foo"/>
-<input type="button" value="I control the Image" aria-controls="foo"/>
+<img src="foo.jpg" alt="test1" width="40" height="40" id="foo">
+<input role="presentation" type="button" value="I control the Image" aria-controls="foo">
 </body>
 </html>
-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/setsize-posinset-level/setsize-posinset-level-1.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,43 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
+<html>
+  <head>
+    <title>ARIA 1.0 Test Case A</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  </head>
+  <body>
+    <h1>ARIA 1.0 Test Case A</h1>
+    
+    <div role="listbox" id="ID_LISTBOX">
+      <div id="ID_OPTION_1" role="option" tabindex="-1">Option 1</div> 
+      <div id="ID_OPTION_2" role="option" tabindex="-1">Option 2</div> 
+      <div id="ID_OPTION_3" role="option" tabindex="-1">Option 3</li> 
+    </div>
+    
+    <h2>Description</h2>
+    <p>A div element with the role='listbox' has three child div elements each with role='option'.
+      When focus is on the second child div element, the structure of the accessibility tree will 
+      be represented in the accessibility tree using the following table:</p>
+    
+    <p><a href="http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table">http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table</a></p>
+
+      <h2>Accessibility API Information</h2>
+      <ul>
+      <li>set size: 3</li>
+      <li>position in set: 2</li>
+      <li>level of set in the hierarchy: 1</li>
+    </ul>
+    
+    <script type="text/javascript">  
+      
+     function setFocus() {
+       var node = document.getElementById('ID_OPTION_2');  
+       node.focus();
+     }
+     
+     window.addEventListener('load', setFocus);
+    </script>
+  </body>
+  
+</html>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/setsize-posinset-level/setsize-posinset-level-2.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,43 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
+<html>
+  <head>
+    <title>ARIA 1.0 Test Case B</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  </head>
+  <body>
+    <h1>ARIA 1.0 Test Case B</h1>
+    
+    <ul role="tree" id="ID_LISTBOX">
+      <li id="ID_TREEITEM_1" role="treeitem" tabindex="-1">Tree item 1</li> 
+      <li id="ID_TREEITEM_2" role="treeitem" tabindex="-1">Tree item 2</li> 
+      <li id="ID_TREEITEM_3" role="treeitem" tabindex="-1">Tree item 3</li> 
+    </ul>
+    
+    <h2>Description</h2>
+    <p>A div element with the role='tree' has three child div elements each with role='treeitem'.
+      When focus is on the third child div element, the structure of the accessibility tree will 
+      be represented in the accessibility tree using the following table:</p>
+    
+    <p><a href="http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table">http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table</a></p>
+
+    <h2>Accessibility API Information</h2>
+    <ul>
+      <li>set size: 3</li>
+      <li>position in set: 2</li>
+      <li>level of set in the hierarchy: 1</li>
+    </ul>
+    
+    <script type="text/javascript">  
+      
+     function setFocus() {
+       var node = document.getElementById('ID_TREEITEM_3');  
+       node.focus();
+     }
+     
+     window.addEventListener('load', setFocus);
+    </script>
+  </body>
+  
+</html>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/setsize-posinset-level/setsize-posinset-level-3.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,59 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
+<html>
+  <head>
+    <title>ARIA 1.0 Test Case C</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  </head>
+  <body>
+    <h1>ARIA 1.0 Test Case C</h1>
+    
+    <ul role="tree" id="ID_LISTBOX">
+      <li id="ID_TREEITEM_1" role="treeitem" tabindex="-1">Tree item 1
+        <ul role="tree">
+          <li id="ID_TREEITEM_11" role="treeitem" tabindex="-1">Tree item 11</li> 
+          <li id="ID_TREEITEM_12" role="treeitem" tabindex="-1">Tree item 12</li>           
+        </ul>
+      </li> 
+      <li id="ID_TREEITEM_2" role="treeitem" tabindex="-1">Tree item 2
+        <ul role="tree">
+          <li id="ID_TREEITEM_21" role="treeitem" tabindex="-1">Tree item 21</li> 
+          <li id="ID_TREEITEM_22" role="treeitem" tabindex="-1">Tree item 22</li>           
+        </ul>
+      </li> 
+      <li id="ID_TREEITEM_3" role="treeitem" tabindex="-1">Tree item 3
+        <ul role="tree">
+          <li id="ID_TREEITEM_31" role="treeitem" tabindex="-1">Tree item 31</li> 
+          <li id="ID_TREEITEM_32" role="treeitem" tabindex="-1">Tree item 32</li>           
+        </ul>
+      </li> 
+    </ul>
+    
+    <h2>Description</h2>
+    <p>A div element with the role='tree' has three child div elements with role='treeitem'.
+      Each of the child div elements contains a div element with the role of tree with two child div elements with the role='treeitem'. 
+      When focus is on the fifth div element with a role of "treeitem" in document order 
+      will be represented in the accessibility tree using the following table:</p>
+    
+    <p><a href="http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table">http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table</a></p>
+
+    <h2>Accessibility API Information</h2>
+    <ul>
+      <li>set size: 2</li>
+      <li>position in set: 1</li>
+      <li>level of set in the hierarchy: 2</li>
+    </ul>
+    
+    <script type="text/javascript">  
+      
+     function setFocus() {
+       var node = document.getElementById('ID_TREEITEM_21');  
+       node.focus();
+     }
+     
+     window.addEventListener('load', setFocus);
+    </script>
+  </body>
+  
+</html>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/setsize-posinset-level/setsize-posinset-level-4.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
+<html>
+  <head>
+    <title>ARIA 1.0 Test Case D</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  </head>
+  <body>
+    <h1>ARIA 1.0 Test Case D</h1>
+    
+    <ul role="listbox" id="ID_LISTBOX">
+      <li id="ID_OPTION_1" role="option" tabindex="-1" aria-setsize="12" aria-level="1" aria-posinset="7">Option 7</li> 
+      <li id="ID_OPTION_2" role="option" tabindex="-1" aria-setsize="12" aria-level="1" aria-posinset="8">Option 8</li> 
+      <li id="ID_OPTION_3" role="option" tabindex="-1" aria-setsize="12" aria-level="1" aria-posinset="9">Option 9</li> 
+    </ul>
+    
+    <h2>Description</h2>
+    <p>A ul element with the role='listbox' has three child li elements each with role='option'.
+      Each of the li elements with the role='option' have aria-setsize='12' attribute, aria-level='1' 
+      attribute and aria-posinset attribute numbered consecuatively from 7 to 9. When focus is on the 
+      second li element, the structure of the accessibility tree will be represented in the 
+      accessibility tree using the following table:</p>
+    
+    <p><a href="http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table">http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table</a></p>
+
+    <h2>Accessibility API Information</h2>
+    <ul>
+      <li>set size: 12</li>
+      <li>position in set: 8</li>
+      <li>level of set in the hierarchy: 1</li>
+    </ul>
+    
+    <script type="text/javascript">  
+      
+     function setFocus() {
+       var node = document.getElementById('ID_OPTION_2');  
+       node.focus();
+     }
+     
+     window.addEventListener('load', setFocus);
+    </script>
+  </body>
+  
+</html>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/setsize-posinset-level/setsize-posinset-level-5.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
+<html>
+  <head>
+    <title>ARIA 1.0 Test Case E</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  </head>
+  <body>
+    <h1>ARIA 1.0 Test Case E</h1>
+    
+    <ul role="tree" id="ID_LISTBOX">
+      <li id="ID_TREEITEM_1" role="treeitem" tabindex="-1" aria-setsize="10" aria-level="2" aria-posinset="5">Tree item 5</li> 
+      <li id="ID_TREEITEM_2" role="treeitem" tabindex="-1" aria-setsize="10" aria-level="2" aria-posinset="6">Tree item 6</li> 
+      <li id="ID_TREEITEM_3" role="treeitem" tabindex="-1" aria-setsize="10" aria-level="2" aria-posinset="7">Tree item 7</li> 
+    </ul>
+    
+    <h2>Description</h2>
+    <p>A ul element with the role='tree' has three child li elements each with role='option'.
+      Each of the li elements with the role='treeitem' have aria-setsize='10' attribute, aria-level='2' atrribute and aria-posinset attribute 
+      numbered consecuatively from 5 to 7.
+      When focus is on the third li element, the structure of the accessibility tree will 
+      be represented in the accessibility tree using the following table:</p>
+    
+    <p><a href="http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table">http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table</a></p>
+
+    <h2>Accessibility API Information</h2>
+    <ul>
+      <li>set size: 10</li>
+      <li>position in set: 7</li>
+      <li>level of set in the hierarchy: 2</li>
+    </ul>
+    
+    <script type="text/javascript">  
+      
+     function setFocus() {
+       var node = document.getElementById('ID_TREEITEM_3');  
+       node.focus();
+     }
+     
+     window.addEventListener('load', setFocus);
+    </script>
+  </body>
+  
+</html>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/setsize-posinset-level/setsize-posinset-level-6.html	Tue Oct 30 16:45:07 2012 +0100
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
+<html>
+  <head>
+    <title>ARIA 1.0 Test Case F</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  </head>
+  <body>
+    <h1>ARIA 1.0 Test Case F</h1>
+    
+    <ul role="tree" id="ID_LISTBOX">
+      <li role="treeitem" tabindex="-1" aria-setsize="10" aria-level="2" aria-posinset="5">Tree item 5
+        <ul role="tree">
+          <li role="treeitem" tabindex="-1" aria-setsize="8" aria-level="3" aria-posinset="3">Tree item 53</li>
+          <li role="treeitem" tabindex="-1" aria-setsize="8" aria-level="3" aria-posinset="4">Tree item 54</li>
+          <li role="treeitem" tabindex="-1" aria-setsize="8" aria-level="3" aria-posinset="5">Tree item 55</li>
+        </ul>
+      </li> 
+      <li role="treeitem" tabindex="-1" aria-setsize="10" aria-level="2" aria-posinset="6">Tree item 6
+        <ul role="tree">
+          <li role="treeitem" tabindex="-1" aria-setsize="7" aria-level="3" aria-posinset="2">Tree item 62</li>
+          <li role="treeitem" tabindex="-1" aria-setsize="7" aria-level="3" aria-posinset="3">Tree item 63</li>
+          <li id="ID_TREEITEM_TARGET" role="treeitem" tabindex="-1" aria-setsize="7" aria-level="3" aria-posinset="4">Tree item 64</li>
+        </ul>
+      </li> 
+      <li role="treeitem" tabindex="-1" aria-setsize="10" aria-level="2" aria-posinset="7">Tree item 7
+        <ul role="tree">
+          <li role="treeitem" tabindex="-1" aria-setsize="9" aria-level="3" aria-posinset="6">Tree item 76</li>
+          <li role="treeitem" tabindex="-1" aria-setsize="9" aria-level="3" aria-posinset="7">Tree item 77</li>
+          <li role="treeitem" tabindex="-1" aria-setsize="9" aria-level="3" aria-posinset="8">Tree item 78</li>
+        </ul>
+      </li> 
+    </ul>
+    
+    <h2>Description</h2>
+    <p>A ul element with the role='tree' has three child li elements each with role='option'.
+      Each of the li elements with the role='treeitem' have aria-setsize='10' attribute, aria-level='2' 
+      atrribute and aria-posinset attribute numbered consecuatively from 5 to 7.
+      Each of the li elements also contains a nested tree widget using ul and li elements with each nested tree 
+      containing three li elements with aria-setsize and aria-posinset to values that are greater than the 3 elements 
+      in the list and aria-level='3' attribute. The eighth li element in the document will have aria-sertzie='7', aria-posinset='4'.
+      When focus is on the eighth li element, the structure of the accessibility tree will 
+      be represented in the accessibility tree using the following table:</p>
+    
+    <p><a href="http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table">http://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/#mapping_state-property_table</a></p>
+
+    <h2>Accessibility API Information</h2>
+    <ul>
+      <li>set size: 7</li>
+      <li>position in set: 4</li>
+      <li>level of set in the hierarchy: 3</li>
+    </ul>
+    
+    <script type="text/javascript">  
+      
+     function setFocus() {
+       var node = document.getElementById('ID_TREEITEM_TARGET');  
+       node.focus();
+     }
+     
+     window.addEventListener('load', setFocus);
+    </script>
+  </body>
+  
+</html>
+
+