merging
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Mon, 11 Nov 2013 14:00:13 -0600
changeset 414 008b88ba265c
parent 413 8f5b4c80fb9e (current diff)
parent 408 5eebe096dbda (diff)
child 415 6a00fe844179
merging
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test103.html	Mon Nov 11 14:00:13 2013 -0600
@@ -0,0 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+	<head>
+		<title>Test 103</title>
+	</head>
+	<body>
+		<div id="test">content text</div>
+	</body>
+</html>
--- a/ARIA-UAIG/1.0/tests/test-files/test37.html	Mon Nov 11 11:35:31 2013 -0600
+++ b/ARIA-UAIG/1.0/tests/test-files/test37.html	Mon Nov 11 14:00:13 2013 -0600
@@ -3,10 +3,10 @@
 	<head>
 		<title>div element with role="menuitem" whose ID is referenced by the aria-activedescendant of an ancestor div element with role="menu"</title>
 	</head>
-	<body>
-		<div tabindex="0" role="menu" aria-activedescendant="item2">
+	<body onload="document.getElementById('testMenu').focus();">
+		<div id="testMenu" tabindex="0" role="menu" aria-activedescendant="item2">
 			<div id="item1" role="menuitem">Item 1</div>
-			<div id="test" id="item2" role="menuitem">Focused Item 2</div>
+			<div id="item2" role="menuitem">Focused Item 2</div>
 			<div id="item3" role="menuitem">Item 3</div>
 		</div>
 	</body>
--- a/ARIA-UAIG/1.0/tests/test-files/test53.html	Mon Nov 11 11:35:31 2013 -0600
+++ b/ARIA-UAIG/1.0/tests/test-files/test53.html	Mon Nov 11 14:00:13 2013 -0600
@@ -6,7 +6,7 @@
 	<body>
 		<form action=".">
 			<div id="testlabel">Test element: </div>
-			<p><input id="test" type="text" aria-labelledby="testlabel" /></p>			
+			<p><input id="test" type="checkbox" aria-labelledby="testlabel" /></p>			
 		</form>
 	</body>
 </html>
--- a/ARIA-UAIG/1.0/tests/test-files/test61.html	Mon Nov 11 11:35:31 2013 -0600
+++ b/ARIA-UAIG/1.0/tests/test-files/test61.html	Mon Nov 11 14:00:13 2013 -0600
@@ -4,6 +4,6 @@
 		<title>Div with role="spinbutton" with aria-valuenow="5", aria-valuemin="0" and aria-valuemax="10", and no aria-valuetext</title>
 	</head>
 	<body>
-		<div id="test" role="spinbutton" aria-valuenow="5" aria-valuemin="0" aria-valuemax="10"></div>
+		<div id="test" role="spinbutton" aria-valuenow="5" aria-valuemin="0" aria-valuemax="10">foo</div>
 	</body>
 </html>
\ No newline at end of file
--- a/ARIA-UAIG/1.0/tests/test-files/test92.html	Mon Nov 11 11:35:31 2013 -0600
+++ b/ARIA-UAIG/1.0/tests/test-files/test92.html	Mon Nov 11 14:00:13 2013 -0600
@@ -66,7 +66,7 @@
 	</head>
 	<body>
 		<p>Click on the first option, then shift-click on the third option</p>
-		<div id="test" role="listbox" aria-multiselectabe="true">
+		<div id="test" role="listbox" aria-multiselectable="true">
 			<div role="option" aria-selected="false" id="option1" tabindex="0">Option 1</div>
 			<div role="option" aria-selected="false" id="option2" tabindex="0">Option 2</div>
 			<div role="option" aria-selected="false" id="option3" tabindex="0">Option 3</div>