--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test55.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>img with src and alt=""</title>
+ </head>
+ <body>
+ <p><img src="foo.png" alt="" id="test" /></p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test56.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>img with src and aria-label=""</title>
+ </head>
+ <body>
+ <p><img src="foo.png" aria-label="" id="test" /></p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test57.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>img with src and aria-labelledby=""</title>
+ </head>
+ <body>
+ <p><img src="foo.png" aria-labelledby="" id="test" /></p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test58.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>img with src and title=""</title>
+ </head>
+ <body>
+ <p><img src="foo.png" title="" id="test" /></p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test59.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>img with src and no other attributes</title>
+ </head>
+ <body>
+ <p><img src="foo.png" id="test" /></p>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test60.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>Div with role="spinbutton" with aria-valuenow="5", aria-valuemin="0" and aria-valuemax="10", and aria-valuetext="nurthen"</title>
+ </head>
+ <body>
+ <div id="test" role="spinbutton" aria-valuenow="5" aria-valuemin="0" aria-valuemax="10" aria-valuetext="nurthen"></div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test61.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>Div with role="spinbutton" with aria-valuenow="5", aria-valuemin="0" and aria-valuemax="10", and no aria-valuetext</title>
+ </head>
+ <body>
+ <div id="test" role="spinbutton" aria-valuenow="5" aria-valuemin="0" aria-valuemax="10"></div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test62.html Thu Sep 12 11:00:59 2013 -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>
+ <title>div with role="button" with aria-controls referencing ID of a div with role="document"</title>
+ </head>
+ <body>
+ <div role="button" aria-controls="test" style="border: medium outset; display: inline;">The button</div>
+ <div id="test" role="document">The controlled region</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test63.html Thu Sep 12 11:00:59 2013 -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>
+ <title>div with role="button" with aria-describedby referencing ID of a div with role="document"</title>
+ </head>
+ <body>
+ <div role="button" aria-describedby="test" style="border: medium outset; display: inline;">The button</div>
+ <div id="test" role="document">The describing region</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test64.html Thu Sep 12 11:00:59 2013 -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>
+ <title>div with role="button" with aria-flowto referencing ID of a div with role="document"</title>
+ </head>
+ <body>
+ <div role="button" aria-flowto="test" style="border: medium outset; display: inline;">The button</div>
+ <div id="test" role="document">The flowto region</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test65.html Thu Sep 12 11:00:59 2013 -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>
+ <title>div with role="button" with aria-labelledby referencing ID of a div with role="document"</title>
+ </head>
+ <body>
+ <div role="button" aria-labelledby="test" style="border: medium outset; display: inline;">The button</div>
+ <div id="test" role="document">The labeling region</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test66.html Thu Sep 12 11:00:59 2013 -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>
+ <title>div with role="button" with aria-owns referencing ID of a div with role="document"</title>
+ </head>
+ <body>
+ <div role="button" aria-owns="test" style="border: medium outset; display: inline;">The button</div>
+ <div id="test" role="document">The owned region</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test67.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,12 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>label element with value of "foo" and for attribute referencing an input element with type="text". The input element also has an aria-labelledby that references a div with value of "baz"</title>
+ </head>
+ <body>
+ <form action=".">
+ <p><label for="test">foo</label><input id="test" type="text" aria-labelledby="label" /></p>
+ <div id="label">baz</div>
+ </form>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test68.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,16 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>div element with role="tree" which has a child div with role="treeitem" which in turn has a child div with role="group" which in turn has a child div with role="treeitem"</title>
+ </head>
+ <body>
+ <div role="tree">
+ <div role="treeitem">
+ Level 1 Item
+ <div role="group">
+ <div role="treeitem" id="test">Level 2 Item</div>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test69.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,12 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title> div element with role="tree" which has an aria-owns property referencing ID of another div with role="treeitem" which in turn has an aria-owns property referencing ID of another div with role="group" which in turn has an aria-owns property referencing ID of another div with role="treeitem"</title>
+ </head>
+ <body>
+ <div role="tree" aria-owns="treeitem1"></div>
+ <div role="treeitem" id="treeitem1" aria-owns="group1">Level 1 Item</div>
+ <div role="group" id="group1" aria-owns="test"></div>
+ <div role="treeitem" id="test">Level 2 Item</div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test70.html Thu Sep 12 11:00:59 2013 -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>
+ <title>div element with role="tree" which has a child div with role="treeitem" which in turn has a child div with role="group" which in turn has two child divs with role="treeitem"</title>
+ </head>
+ <body>
+ <div role="tree">
+ <div role="treeitem">
+ Level 1 Item
+ <div role="group" id="test">
+ <div role="treeitem">Level 2 Item 1</div>
+ <div role="treeitem">Level 2 Item 2</div>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test71.html Thu Sep 12 11:00:59 2013 -0400
@@ -0,0 +1,13 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>div element with role="tree" which has an aria-owns property referencing ID of another div with role="treeitem" which in turn has an aria-owns property referencing ID of another div with role="group" which in turn has an aria-owns property referencing IDs of two divs with role="treeitem"</title>
+ </head>
+ <body>
+ <div role="tree" aria-owns="treeitem1"></div>
+ <div role="treeitem" id="treeitem1" aria-owns="test">Level 1 Item</div>
+ <div role="group" id="test" aria-owns="treeitem2_1 treeitem2_2"></div>
+ <div role="treeitem" id="treeitem2_1">Level 2 Item 1</div>
+ <div role="treeitem" id="treeitem2_2">Level 2 Item 2</div>
+ </body>
+</html>
\ No newline at end of file