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.
authorJames Craig <jcraig@apple.com>
Mon, 22 Apr 2013 11:55:10 -0500
changeset 203 1b219ece3120
parent 202 e9c6cc7d645d
child 204 c890713ef2ee
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.
ARIA/1.0/tests/test-files/aria-describedby/772.html
ARIA/1.0/tests/test-files/aria-describedby/773.html
ARIA/1.0/tests/test-files/aria-describedby/774.html
--- 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