OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../fast/js/resources/js-test-pre.js"></script> |
4 </head> | 4 </head> |
5 | 5 |
6 <body id="body"> | 6 <body id="body"> |
7 | 7 |
8 <select id="selectElement" multiple title="selectElement"> | 8 <select id="selectElement" multiple title="selectElement"> |
9 <option SELECTED>Option 1</option> | 9 <option SELECTED>Option 1</option> |
10 <option>Option 2</option> | 10 <option>Option 2</option> |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 shouldBeTrue('accessibilityController.focusedElement.isEnabled'); | 30 shouldBeTrue('accessibilityController.focusedElement.isEnabled'); |
31 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isE
nabled'); | 31 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isE
nabled'); |
32 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(1).isE
nabled'); | 32 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(1).isE
nabled'); |
33 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is
Enabled'); | 33 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is
Enabled'); |
34 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(3).is
Enabled'); | 34 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(3).is
Enabled'); |
35 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(4).isE
nabled'); | 35 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(4).isE
nabled'); |
36 } | 36 } |
37 </script> | 37 </script> |
38 | 38 |
39 <script src="../fast/js/resources/js-test-post.js"></script> | |
40 </body> | 39 </body> |
41 </html> | 40 </html> |
OLD | NEW |