Test files 1 through 15
authorMichael Cooper <cooper@w3.org>
Tue, 13 Aug 2013 19:38:35 -0400
changeset 337 c51422fd5d47
parent 336 2189148e9c18
child 338 513abb941d2c
Test files 1 through 15
ARIA-UAIG/1.0/tests/test-files/test1.html
ARIA-UAIG/1.0/tests/test-files/test10.html
ARIA-UAIG/1.0/tests/test-files/test11.html
ARIA-UAIG/1.0/tests/test-files/test12.html
ARIA-UAIG/1.0/tests/test-files/test13.html
ARIA-UAIG/1.0/tests/test-files/test14.html
ARIA-UAIG/1.0/tests/test-files/test15.html
ARIA-UAIG/1.0/tests/test-files/test2.html
ARIA-UAIG/1.0/tests/test-files/test3.html
ARIA-UAIG/1.0/tests/test-files/test4.html
ARIA-UAIG/1.0/tests/test-files/test7.html
ARIA-UAIG/1.0/tests/test-files/test8.html
ARIA-UAIG/1.0/tests/test-files/test9.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test1.html	Tue Aug 13 19:38:35 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>a element with tabindex="-1" and a script button to focus it</title>
+	</head>
+	<body>
+		<p><button onclick="getElementById('test').focus()">Focus test</button></p>
+		<p><a href="http://example.com" tabindex="-1" id="test">Test element</a></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/test10.html	Tue Aug 13 19:38:35 2013 -0400
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>a element with tabindex="0" and script that informs of the element's tabindex value from the DOM element.tabindex property</title>
+	</head>
+	<body>
+		<p><a href="http://example.com" tabindex="0" id="test">Test element</a></p>
+		<p>Script-reported tabindex of test element: 
+			<script type="text/javascript"><!--
+				document.write(document.getElementById('test').tabIndex);
+			//--></script>
+		</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/test11.html	Tue Aug 13 19:38:35 2013 -0400
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>a element with tabindex="1" and script that informs of the element's tabindex value from the DOM element.tabindex property</title>
+	</head>
+	<body>
+		<p><a href="http://example.com" tabindex="1" id="test">Test element</a></p>
+		<p>Script-reported tabindex of test element: 
+			<script type="text/javascript"><!--
+				document.write(document.getElementById('test').tabIndex);
+			//--></script>
+		</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/test12.html	Tue Aug 13 19:38:35 2013 -0400
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>a element with tabindex="-1" and script that informs of the element's tabindex value from the DOM element.tabindex property</title>
+	</head>
+	<body>
+		<p><a href="http://example.com" tabindex="-1" id="test">Test element</a></p>
+		<p>Script-reported tabindex of test element: 
+			<script type="text/javascript"><!--
+				document.write(document.getElementById('test').tabIndex);
+			//--></script>
+		</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/test13.html	Tue Aug 13 19:38:35 2013 -0400
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>span element with tabindex="0" and script that informs of the element's tabindex value from the DOM element.tabindex property</title>
+	</head>
+	<body>
+		<p><span tabindex="0" id="test">Test element</span></p>
+		<p>Script-reported tabindex of test element: 
+			<script type="text/javascript"><!--
+				document.write(document.getElementById('test').tabIndex);
+			//--></script>
+		</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/test14.html	Tue Aug 13 19:38:35 2013 -0400
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>span element with tabindex="1" and script that informs of the element's tabindex value from the DOM element.tabindex property</title>
+	</head>
+	<body>
+		<p><span tabindex="1" id="test">Test element</span></p>
+		<p>Script-reported tabindex of test element: 
+			<script type="text/javascript"><!--
+				document.write(document.getElementById('test').tabIndex);
+			//--></script>
+		</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/test15.html	Tue Aug 13 19:38:35 2013 -0400
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>span element with tabindex="-1" and script that informs of the element's tabindex value from the DOM element.tabindex property</title>
+	</head>
+	<body>
+		<p><span tabindex="-1" id="test">Test element</span></p>
+		<p>Script-reported tabindex of test element: 
+			<script type="text/javascript"><!--
+				document.write(document.getElementById('test').tabIndex);
+			//--></script>
+		</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/test2.html	Tue Aug 13 19:38:35 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>span element with tabindex="-1" and a script button to focus it</title>
+	</head>
+	<body>
+		<p><button onclick="getElementById('test').focus()">Focus test</button></p>
+		<p><span tabindex="-1" id="test">Test element</span></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/test3.html	Tue Aug 13 19:38:35 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>span element with tabindex="0" and a script button to focus it</title>
+	</head>
+	<body>
+		<p><button onclick="getElementById('test').focus()">Focus test</button></p>
+		<p><span tabindex="0" id="test">Test element</span></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/test4.html	Tue Aug 13 19:38:35 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>a element with tabindex="0" and a script button to focus it</title>
+	</head>
+	<body>
+		<p><button onclick="getElementById('test').focus()">Focus test</button></p>
+		<p><a href="http://example.com" tabindex="0" id="test">Test element</a></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/test7.html	Tue Aug 13 19:38:35 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>
+		<title>input button with tabindex="0"</title>
+	</head>
+	<body>
+		<form action=".">
+			<p><input type="button" tabindex="0" id="test" value="Test element" /></p>
+		</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/test8.html	Tue Aug 13 19:38:35 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>
+		<title>input button with tabindex="-1"</title>
+	</head>
+	<body>
+		<form action=".">
+			<p><input type="button" tabindex="-1" id="test" value="Test element" /></p>
+		</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/test9.html	Tue Aug 13 19:38:35 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>a element with tabindex=1 followed by span with tabindex=2 followed by a with tabindex=3</title>
+	</head>
+	<body>
+		<p id="test">
+			<a href="http://example.com" tabindex="1">Element 1</a>
+			<span tabindex="2">Element 2</span>
+			<a href="http://example.com" tabindex="3">Element 3</a>
+		</p>
+	</body>
+</html>
\ No newline at end of file