Test files for aria-describedby ACTION-891 https://www.w3.org/WAI/PF/Group/track/actions/891
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/describedby/772.html Tue Apr 09 11:19:52 2013 -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>An image with aria-describedby referencing a visible object</title>
+ </head>
+ <body>
+ <img id="test" aria-describedby="ID1">
+ <div id="ID1" style="display: block">foo</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/describedby/773.html Tue Apr 09 11:19:52 2013 -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>An image with aria-describedby referencing a hidden object</title>
+ </head>
+ <body>
+ <img id="test" aria-describedby="ID1">
+ <div id="ID1" style="display: none">foo</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/describedby/774.html Tue Apr 09 11:19:52 2013 -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>An image with aria-describedby referencing a visible object with role=presentation</title>
+ </head>
+ <body>
+ <img id="test" aria-describedby="ID1">
+ <div id="ID1" style="display: block" role="presentation">foo</div>
+ </body>
+</html>
\ No newline at end of file