giving test cases some more time so there's enought time to test by manually register for these events
authorJames Craig <jcraig@apple.com>
Mon, 21 Oct 2013 20:08:10 -0700
changeset 398 4b3da7a56308
parent 397 42d10b65875f
child 399 9286af211d54
giving test cases some more time so there's enought time to test by manually register for these events
ARIA-UAIG/1.0/tests/test-files/test93.html
ARIA-UAIG/1.0/tests/test-files/test94.html
ARIA-UAIG/1.0/tests/test-files/test96.html
--- a/ARIA-UAIG/1.0/tests/test-files/test93.html	Mon Oct 21 19:29:20 2013 -0700
+++ b/ARIA-UAIG/1.0/tests/test-files/test93.html	Mon Oct 21 20:08:10 2013 -0700
@@ -2,16 +2,16 @@
 <html>
 	<head>
 		<title>div element with role="menubar" and child div with role="menuitem" with aria-haspop="true" and aria-owns with value referencing ID of a div outside the menubar whose role="menu" and style="display:none:" containing two divs with role="menuitem" and text contents, with onload script that sets style="display:block" on the menu</title>
-		<script type="text/javascript"><!--
-			function showMenu(id = "menu") {
-                        document.getElementById(id).style.display = "block";
+		<script type="text/javascript">
+			function showMenu() {
+				document.getElementById("menu").style.display = "block";
 			}
-                  window.setTimeout(showMenu, 3000);
-              --></script>
+            window.setTimeout(showMenu, 10000);
+        </script>
 	</head>
 	<body>
 		<div id="test" role="menubar">
-			<div role="menuitem" aria-haspopup="true" aria-owns="menu">Menu item with sub menu that will open 3 seconds after load</div>
+			<div id="menuitem1" role="menuitem" aria-haspopup="true" aria-owns="menu">Menu item with sub menu that will open 10 seconds after load</div>
 		</div>
 		<div id="menu" role="menu" style="display:none">
 			<div role="menuitem" id="item1" tabindex="0">Menu item 1</div>
--- a/ARIA-UAIG/1.0/tests/test-files/test94.html	Mon Oct 21 19:29:20 2013 -0700
+++ b/ARIA-UAIG/1.0/tests/test-files/test94.html	Mon Oct 21 20:08:10 2013 -0700
@@ -2,17 +2,17 @@
 <html>
 	<head>
 		<title>div element with role="menubar" and child div with role="menuitem" with aria-haspop="true" and aria-owns with value referencing ID of a div outside the menubar whose role="menu" and style="display:none:" containing two divs with role="menuitem" and text contents, with onload script that sets style="display:block" on the menubar and sets focus on the first item in the menu</title>
-		<script type="text/javascript"><!--
+		<script type="text/javascript">
 			function showMenu() {
-                        document.getElementById("menu").style.display = "block";
-                        document.getElementById("item1").focus();
+                document.getElementById("menu").style.display = "block";
+                document.getElementById("item1").focus();
 			}
-                  window.setTimeout(showMenu, 3000);
-              --></script>
+            window.setTimeout(showMenu, 10000);
+            </script>
 	</head>
 	<body>
 		<div id="test" role="menubar">
-			<div role="menuitem" aria-haspopup="true" aria-owns="menu">Menu item with sub menu that will open 3 seconds after load</div>
+			<div role="menuitem" aria-haspopup="true" aria-owns="menu">Menu item with sub menu that will open 10 seconds after load</div>
 		</div>
 		<div id="menu" role="menu" style="display:none">
 			<div role="menuitem" id="item1" tabindex="0">Menu item 1</div>
--- a/ARIA-UAIG/1.0/tests/test-files/test96.html	Mon Oct 21 19:29:20 2013 -0700
+++ b/ARIA-UAIG/1.0/tests/test-files/test96.html	Mon Oct 21 20:08:10 2013 -0700
@@ -7,12 +7,12 @@
                         document.getElementById("menu").style.display = "none";
                         document.getElementById("newfocus").focus();
 			}
-                  window.setTimeout(showMenu, 3000);
+                  window.setTimeout(showMenu, 10000);
               --></script>
 	</head>
 	<body>
 		<div id="test" role="menubar">
-			<div role="menuitem" aria-haspopup="true" aria-owns="menu">Menu item with sub menu that will open 3 seconds after load</div>
+			<div role="menuitem" aria-haspopup="true" aria-owns="menu">Menu item with sub menu that will close 10 seconds after load</div>
 		</div>
 		<div id="menu" role="menu" style="display:block">
 			<div role="menuitem" id="item1" tabindex="0">Menu item 1</div>