blob: 54164172dd3eb89d3ed8385a42bad95987d5576d [file] [log] [blame]
eric@webkit.orge77f4dd2009-11-04 20:22:13 +00001<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2<html>
3<head>
4<link rel="stylesheet" href="../fast/js/resources/js-test-style.css">
5<script>
6var successfullyParsed = false;
7</script>
8<script src="../fast/js/resources/js-test-pre.js"></script>
9</head>
10<body id="body">
11
12<div id="combo" tabindex=0 role="combobox" aria-expanded="false" aria-label="Test">
13<div role="listbox">
14<div role="option">option 1</div>
15<div role="option">option 2</div>
16</div>
17</div>
18
19
20<p id="description"></p>
21<div id="console"></div>
22
23<script>
24
25 description("This tests that the aria roles for combobox and aria-expanded work correctly in conjunction.");
26
27 if (window.accessibilityController) {
28
29 var combobox = document.getElementById("combo");
30 combobox.focus();
31
32 combobox = accessibilityController.focusedElement;
33
mario@webkit.org386e6e72011-04-26 23:20:39 +000034 debug("Role: " + combobox.role);
eric@webkit.orge77f4dd2009-11-04 20:22:13 +000035 shouldBe("combobox.isExpanded", "false");
36
37 combobox.showMenu();
38
cfleizach@apple.com58bc5d72011-04-22 05:01:14 +000039 // As of now, the isExpanded value won't be updated through an AX call.
40 shouldBe("combobox.isExpanded", "false");
eric@webkit.orge77f4dd2009-11-04 20:22:13 +000041
42 var firstChild = combobox.childAtIndex(0);
mario@webkit.org386e6e72011-04-26 23:20:39 +000043 debug("Role: " + firstChild.role);
eric@webkit.orge77f4dd2009-11-04 20:22:13 +000044 }
45
46 successfullyParsed = true;
47</script>
48
49<script src="../fast/js/resources/js-test-post.js"></script>
50</body>
51</html>