fixing the aria-describedby tests 772, 773, and 774 so they only test aria-describedby, not the labeling algorithm and presentational heuristics for images in each rendering engine.
--- a/ARIA/1.0/tests/test-files/aria-describedby/772.html Sun Apr 21 15:02:15 2013 -0400
+++ b/ARIA/1.0/tests/test-files/aria-describedby/772.html Mon Apr 22 11:55:10 2013 -0500
@@ -7,10 +7,8 @@
</title>
</head>
<body>
- <img src="foo.jpg" id="test" aria-describedby="t1">
- <div id="t1">
- foo
- </div>
+ <img src="foo.jpg" id="test" alt="test" aria-describedby="t1">
+ <div id="t1">foo</div>
</body>
</html
--- a/ARIA/1.0/tests/test-files/aria-describedby/773.html Sun Apr 21 15:02:15 2013 -0400
+++ b/ARIA/1.0/tests/test-files/aria-describedby/773.html Mon Apr 22 11:55:10 2013 -0500
@@ -7,10 +7,8 @@
</title>
</head>
<body>
- <img src="foo.jpg" id="test" aria-describedby="t1">
- <div id="t1" style="display:none">
- foo
- </div>
+ <img src="foo.jpg" id="test" alt="test" aria-describedby="t1">
+ <div id="t1" style="display:none">foo</div>
</body>
</html
--- a/ARIA/1.0/tests/test-files/aria-describedby/774.html Sun Apr 21 15:02:15 2013 -0400
+++ b/ARIA/1.0/tests/test-files/aria-describedby/774.html Mon Apr 22 11:55:10 2013 -0500
@@ -7,10 +7,8 @@
</title>
</head>
<body>
- <img src="foo.jpg" id="test" aria-describedby="t1">
- <div id="t1" role="presentation">
- foo
- </div>
+ <img src="foo.jpg" id="test" alt="test" aria-describedby="t1">
+ <div id="t1" role="presentation">foo</div>
</body>
</html