--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ARIA-UAIG/1.0/tests/test-files/test89.html Wed Sep 18 16:05:17 2013 -0500
@@ -0,0 +1,23 @@
+CTYPE 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>test 89: Testling selection changes in a listbox</title>
+ <script type="text/javascript">
+ function Select() {
+ testElement = document.getElementById('obj2');
+ testElement.setAtrribute("aria-selected", "true");
+ }
+ </script>
+
+ </head>
+ <body>
+ <div id="test" role="listbox" aria-multiselectable="true">
+ <div id="obj1" aria-selected="true">obj1</div>
+ <div id="obj2" aria-selected="false">obj2</div>
+ </div>
+ <input type="button" value="Select obj2"/ onclick="Select()">
+ </body>
+</html>
+