4 <script src=
"../../../resources/js-test.js"></script>
5 <script src=
"../../forms/resources/picker-common.js"></script>
6 <p id=
"description"></p>
7 <div id=
"console"></div>
10 <option selected
>bar
</option>
16 description('Tests if typing an arrow key dispatches a |MenuListItemSelected| a11y event.');
18 window
.accessibilityController
.setNotificationListener(function(axnode
, type
) {
19 if (type
== 'MenuListItemSelected') {
20 testPassed('Received MenuListItemSelected');
24 var menu
= document
.getElementById('menu');
25 openPicker(menu
, test1
, function () {
26 testFailed('picker didn\'t open')
31 eventSender
.keyDown('downArrow');