--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-general/604.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>aria-label on anchor (without aria-labelledby or title attribute)</title>
+ </head>
+ <body>
+ <a id="test" href="test.html" aria-label="Tag">ABC</a>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-general/605.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,12 @@
+<!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>Aria-label on anchor with aria-labelledby (no title attribute)</title>
+ </head>
+ <body>
+ <a href="test.html" id="test" aria-labelledby="ID1" aria-label="Tag">ABC</a>
+ <p id="ID1">Here is some labelledby text</p>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-general/606.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,13 @@
+<!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>aria-label on anchor with two aria-labelledby ids (no title attribute)</title>
+ </head>
+ <body>
+ <a href="test.html" id="test" aria-labelledby="ID0 ID1" aria-label="Tag">ABC</a>
+ <p id="ID0">Here is some labelledby text for ID0</p>
+ <p id="ID1">Also labelledby text ID1</p>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-general/607.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Anchor with no aria-label, no aria-labelledby, no title attribute</title>
+ </head>
+ <body>
+ <a href="test.html" id="test">ABC</a>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-general/608.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Title attribute, no aria-label, aria-labelledby</title>
+ </head>
+ <body>
+ <a href="test.html" id="test" title="tag">ABC</a>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-img/664.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Image with aria-describedby referring to visible description</title>
+ </head>
+ <body>
+ <div>
+ <img id="test" aria-describedby="ID1" src="test.png">
+ </div>
+ <div id="ID1">foo</div>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-img/665.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Image with aria-describedby referring to invisible description</title>
+ </head>
+ <body>
+ <div>
+ <img id="test" aria-describedby="ID1" src="test.png">
+ </div>
+ <div id="ID1" style="display:none">foo</div>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-img/666.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Image with aria-describedby referring to visible description with role "presentation"</title>
+ </head>
+ <body>
+ <div>
+ <img id="test" aria-describedby="ID1" src="test.png">
+ </div>
+ <div id="ID1" role="presentation">foo</div>
+ </body>
+</html>
Binary file ARIA/1.0/tests/test-files/name-computation-img/test.png has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/609.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Title attribute, no aria-label, aria-labelledby</title>
+ </head>
+ <body>
+ <input id="test" type="text" aria-labelledby="ID1 ID2 ID3">
+ <p id="ID1">Here is some labelledby text for ID1</p>
+ <p id="ID2">Also labelledby text ID2</p>
+ <p id="ID3">Additional labelledby text ID3</p>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/610.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,12 @@
+<!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 element, no wai-aria</title>
+ </head>
+ <body>
+ <input id="test" type="text">
+ <label for="test">foo</label>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/611.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input element with type="text" referenced by a label, no wai aria</title>
+ </head>
+ <body>
+ <input id="test" type="text">That is referenced by a <label for="test">foo</label> element.
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/612.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input with type="password" label/for without wai-aria</title>
+ </head>
+ <body>
+<input type="password" id="test">
+<label for="test">foo</label></body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/613.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input with type="checkbox" label/for without wai-aria</title>
+ </head>
+ <body>
+<input type="checkbox" id="test">
+<label for="test">foo</label></body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/614.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input with type="radio" label/for without wai-aria</title>
+ </head>
+ <body>
+<input type="radio" id="test">
+<label for="test">foo</label></body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/615.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input with type="file" label/for without wai-aria</title>
+ </head>
+ <body>
+<input type="file" id="test">
+<label for="test">foo</label></body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/616.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input with type="image" label/for without wai-aria</title>
+ </head>
+ <body>
+<input type="image" id="test">
+<label for="test">foo</label></body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/617.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Input with type="checkbox" with a label that has an embedded input element, no wai-aria</title>
+ </head>
+ <body>
+<input type="checkbox" id="test">
+<label for="test">foo<input type="text" value="bar">baz</label></body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/618.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,13 @@
+<!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 type="text" with a label that has an embedded input element, no wai-aria</title>
+ </head>
+ <body>
+<input type="text" id="test">
+<label for="test">foo<input type="text" value="bar">baz</label>
+
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/619.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,12 @@
+<!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 type="password" with a label that has an embedded input element, no wai-aria</title>
+ </head>
+ <body>
+<input type="password" id="test">
+<label for="test">foo<input type="text" value="bar">baz</label>
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/620.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,12 @@
+<!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 type="radio" with a label that has an embedded input element, no wai-aria</title>
+ </head>
+ <body>
+<input type="radio" id="test">
+<label for="test">foo<input type="text" value="bar">baz</label>
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/621.html Tue Oct 30 16:34:59 2012 +0100
@@ -0,0 +1,12 @@
+<!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 type="file" with a label that has an embedded input element, no wai-aria</title>
+ </head>
+ <body>
+<input type="file" id="test">
+<label for="test">foo<input type="text" value="bar">baz</label>
+</body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/659.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Text input with @title and :before and :after content rule</title>
+ <style type="text/css">
+ input#test:before { content: "foo"; }
+ input#test:after { content: "baz"; }
+ </style>
+ </head>
+ <body>
+ <form>
+ <input id="test" type="text" name="test" title="bar">
+ </form>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/660.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Password input with @title and :before and :after content rule</title>
+ <style type="text/css">
+ input#test:before { content: "foo"; }
+ input#test:after { content: "baz"; }
+ </style>
+ </head>
+ <body>
+ <form>
+ <input id="test" type="password" name="test" title="bar">
+ </form>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/661.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Checkbox input with @title and :before and :after content rule</title>
+ <style type="text/css">
+ input#test:before { content: "foo"; }
+ input#test:after { content: "baz"; }
+ </style>
+ </head>
+ <body>
+ <form>
+ <input id="test" type="checkbox" name="test" title="bar">
+ </form>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/662.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>Radio input with @title and :before and :after content rule</title>
+ <style type="text/css">
+ input#test:before { content: "foo"; }
+ input#test:after { content: "baz"; }
+ </style>
+ </head>
+ <body>
+ <form>
+ <input id="test" type="radio" name="test" title="bar">
+ </form>
+ </body>
+</html>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA/1.0/tests/test-files/name-computation-input/663.html Tue Oct 30 16:34:59 2012 +0100
@@ -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>File input with @title and :before and :after content rule</title>
+ <style type="text/css">
+ input#test:before { content: "foo"; }
+ input#test:after { content: "baz"; }
+ </style>
+ </head>
+ <body>
+ <form>
+ <input id="test" type="file" name="test" title="bar">
+ </form>
+ </body>
+</html>