Test files created while copying over test cases from wiki
authorMichael Cooper <cooper@w3.org>
Tue, 14 Aug 2012 10:06:50 -0400
changeset 7 83e9e6b7b4e9
parent 6 d66dacd2eb82
child 8 81c347dedceb
Test files created while copying over test cases from wiki
ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-combobox.html
ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-menu.html
ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-select.html
ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-slider.html
ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-spinbutton.html
ARIA/1.0/tests/test-files/accessible-name-input/checkbox-title.html
ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-combobox.html
ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-menu.html
ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-select.html
ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-slider.html
ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-spinbutton.html
ARIA/1.0/tests/test-files/accessible-name-input/file-title.html
ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-combobox.html
ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-menu.html
ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-select.html
ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-slider.html
ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-spinbutton.html
ARIA/1.0/tests/test-files/accessible-name-input/password-title.html
ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-combobox.html
ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-menu.html
ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-select.html
ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-slider.html
ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-spinbutton.html
ARIA/1.0/tests/test-files/accessible-name-input/radio-title.html
ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-combobox.html
ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-menu.html
ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-select.html
ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-slider.html
ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-spinbutton.html
ARIA/1.0/tests/test-files/accessible-name-input/text-title.html
ARIA/1.0/tests/test-files/combobox-autocomplete-list/div.html
ARIA/1.0/tests/test-files/combobox-autocomplete-list/input.html
ARIA/1.0/tests/test-files/noaria.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-combobox.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,21 @@
+<!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>Checkbox with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="checkbox" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="combobox">
+   			<div role="textbox"></div>
+   			<ul role="listbox">
+   				<li role="lisitem" aria-selected="true">1</li>
+   				<li role="listitem">2</li>
+   				<li role="listitem">3</li>
+   			</ul>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-menu.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Checkbox with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="checkbox" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="menu">
+   			<span role="menuitem" aria-selected="true">1</span>
+   			<span role="menuitem">2</span>
+   			<span role="menuitem">3</span>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-select.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Checkbox with explicit label containing embedded select</title>
+   </head>
+   <body>
+   	<input type="checkbox" id="test" />
+   	<label for="test">Flash the screen 
+   		<select size="1">
+   			<option selected="selected">1</option>
+   			<option>2</option>
+   			<option>3</option>
+   		</select>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-slider.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Checkbox with explicit label containing embedded slider role</title>
+   </head>
+   <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>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-label-embedded-spinbutton.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Checkbox with explicit label containing embedded spinbutton role</title>
+   </head>
+   <body>
+   	<input type="checkbox" id="test" />
+   	<label for="test">Flash the screen 
+   		<label for="test">foo <input role="spinbutton" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/checkbox-title.html	Tue Aug 14 10:06:50 2012 -0400
@@ -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>Checkbox with title attribute and no other labeling mechanism</title>
+   </head>
+   <body>
+   	<input type="checkbox" id="test" title="foo" />
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-combobox.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,21 @@
+<!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>File input with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="file" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="combobox">
+   			<div role="textbox"></div>
+   			<ul role="listbox">
+   				<li role="lisitem" aria-selected="true">1</li>
+   				<li role="listitem">2</li>
+   				<li role="listitem">3</li>
+   			</ul>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-menu.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>File input with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="file" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="menu">
+   			<span role="menuitem" aria-selected="true">1</span>
+   			<span role="menuitem">2</span>
+   			<span role="menuitem">3</span>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-select.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>File input with explicit label containing embedded select</title>
+   </head>
+   <body>
+   	<input type="file" id="test" />
+   	<label for="test">Flash the screen 
+   		<select size="1">
+   			<option selected="selected">1</option>
+   			<option>2</option>
+   			<option>3</option>
+   		</select>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-slider.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>File input with explicit label containing embedded slider role</title>
+   </head>
+   <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>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-label-embedded-spinbutton.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>File input with explicit label containing embedded spinbutton role</title>
+   </head>
+   <body>
+   	<input type="file" id="test" />
+   	<label for="test">Flash the screen 
+   		<label for="test">foo <input role="spinbutton" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/file-title.html	Tue Aug 14 10:06:50 2012 -0400
@@ -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>File input with title attribute and no other labeling mechanism</title>
+   </head>
+   <body>
+   	<input type="file" id="test" title="foo" />
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-combobox.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,21 @@
+<!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>Password input with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="password" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="combobox">
+   			<div role="textbox"></div>
+   			<ul role="listbox">
+   				<li role="lisitem" aria-selected="true">1</li>
+   				<li role="listitem">2</li>
+   				<li role="listitem">3</li>
+   			</ul>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-menu.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Password input with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="password" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="menu">
+   			<span role="menuitem" aria-selected="true">1</span>
+   			<span role="menuitem">2</span>
+   			<span role="menuitem">3</span>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-select.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Password input with explicit label containing embedded select</title>
+   </head>
+   <body>
+   	<input type="password" id="test" />
+   	<label for="test">Flash the screen 
+   		<select size="1">
+   			<option selected="selected">1</option>
+   			<option>2</option>
+   			<option>3</option>
+   		</select>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-slider.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Password input with explicit label containing embedded slider role</title>
+   </head>
+   <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>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-label-embedded-spinbutton.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Password input with explicit label containing embedded spinbutton role</title>
+   </head>
+   <body>
+   	<input type="password" id="test" />
+   	<label for="test">Flash the screen 
+   		<label for="test">foo <input role="spinbutton" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/password-title.html	Tue Aug 14 10:06:50 2012 -0400
@@ -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>Password input with title attribute and no other labeling mechanism</title>
+   </head>
+   <body>
+   	<input type="password" id="test" title="foo" />
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-combobox.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,21 @@
+<!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>Radio button with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="radio" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="combobox">
+   			<div role="textbox"></div>
+   			<ul role="listbox">
+   				<li role="lisitem" aria-selected="true">1</li>
+   				<li role="listitem">2</li>
+   				<li role="listitem">3</li>
+   			</ul>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-menu.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Radio button with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="radio" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="menu">
+   			<span role="menuitem" aria-selected="true">1</span>
+   			<span role="menuitem">2</span>
+   			<span role="menuitem">3</span>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-select.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Radio button with explicit label containing embedded select</title>
+   </head>
+   <body>
+   	<input type="radio" id="test" />
+   	<label for="test">Flash the screen 
+   		<select size="1">
+   			<option selected="selected">1</option>
+   			<option>2</option>
+   			<option>3</option>
+   		</select>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-slider.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Radio button with explicit label containing embedded slider role</title>
+   </head>
+   <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>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-label-embedded-spinbutton.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Radio button with explicit label containing embedded spinbutton role</title>
+   </head>
+   <body>
+   	<input type="radio" id="test" />
+   	<label for="test">Flash the screen 
+   		<label for="test">foo <input role="spinbutton" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/radio-title.html	Tue Aug 14 10:06:50 2012 -0400
@@ -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>Radio button with title attribute and no other labeling mechanism</title>
+   </head>
+   <body>
+   	<input type="radio" id="test" title="foo" />
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-combobox.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,21 @@
+<!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>Text input with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="text" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="combobox">
+   			<div role="textbox"></div>
+   			<ul role="listbox">
+   				<li role="lisitem" aria-selected="true">1</li>
+   				<li role="listitem">2</li>
+   				<li role="listitem">3</li>
+   			</ul>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-menu.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Text input with explicit label containing embedded menu role</title>
+   </head>
+   <body>
+   	<input type="text" id="test" />
+   	<label for="test">Flash the screen 
+   		<div role="menu">
+   			<span role="menuitem" aria-selected="true">1</span>
+   			<span role="menuitem">2</span>
+   			<span role="menuitem">3</span>
+   		</div>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-select.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,18 @@
+<!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>Text input with explicit label containing embedded select</title>
+   </head>
+   <body>
+   	<input type="text" id="test" />
+   	<label for="test">Flash the screen 
+   		<select size="1">
+   			<option selected="selected">1</option>
+   			<option>2</option>
+   			<option>3</option>
+   		</select>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-slider.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Text input with explicit label containing embedded slider role</title>
+   </head>
+   <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>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-label-embedded-spinbutton.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,14 @@
+<!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>Text input with explicit label containing embedded spinbutton role</title>
+   </head>
+   <body>
+   	<input type="text" id="test" />
+   	<label for="test">Flash the screen 
+   		<label for="test">foo <input role="spinbutton" type="text" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz</label>
+   		times.
+   	</label>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/accessible-name-input/text-title.html	Tue Aug 14 10:06:50 2012 -0400
@@ -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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/combobox-autocomplete-list/div.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,17 @@
+<!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 role="combobox" and aria-autocomplete="list"</title>
+   </head>
+   <body>
+   	<div role="combobox" aria-expanded="true" aria-label="Tag"
+   		aria-autocomplete="list" aria-activedescendant="selected_option"></div>
+   	<input type="text" role="textbox" aria-owns="owned_listbox" />
+   	<ul role="listbox" id="owned_listbox">
+   		<li role="option">Zebra</li>
+   		<li role="option" id="selected_option">Zoom</li>
+   	</ul>
+   	</div>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/combobox-autocomplete-list/input.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,15 @@
+<!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>Input with role="combobox" and aria-autocomplete="list"</title>
+   </head>
+   <body>
+   	<input 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>
+   	</ul>
+   </body>
+</html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/noaria.html	Tue Aug 14 10:06:50 2012 -0400
@@ -0,0 +1,11 @@
+<!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>No ARIA markup</title>
+   </head>
+   <body>
+      <div id="test">Placeholder content</div>
+   </body>
+</html>
\ No newline at end of file