Changed 'onkeyup' to 'onkeydown'.
authorJoseph Scheuhammer <clown@alum.mit.edu>
Tue, 15 Oct 2013 11:51:01 -0400
changeset 392 c533c22fa34f
parent 391 e441d6264d15
child 393 bdac17ed10bc
Changed 'onkeyup' to 'onkeydown'.
ARIA-UAIG/1.0/tests/test-files/test85.html
--- a/ARIA-UAIG/1.0/tests/test-files/test85.html	Tue Oct 15 10:07:58 2013 -0500
+++ b/ARIA-UAIG/1.0/tests/test-files/test85.html	Tue Oct 15 11:51:01 2013 -0400
@@ -31,7 +31,7 @@
 	<body>
 		<p>test 85: div element with role="listbox" and child div with role="option" and tabindex="0", set focus to the option by tabbing to Item 1, then press the Down arrow to change selection.</p>
 		<div role="listbox">
-			<div id="el1" role="option" id="test" tabindex="0" aria-selected="true" onkeyup="return changeSelection(event)">Item 1</div>
+			<div id="el1" role="option" id="test" tabindex="0" aria-selected="true" onkeydown="return changeSelection(event)">Item 1</div>
 			<div id="el2" role="option">Item 2</div>
 		</ul>
 	</body>