OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../resources/js-test.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> |
11 <option DISABLED>Option 3</option> | 11 <option DISABLED>Option 3</option> |
12 </select> | 12 </select> |
13 | 13 |
(...skipping 15 matching lines...) Expand all Loading... |
29 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS
electable'); | 29 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS
electable'); |
30 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS
elected'); | 30 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS
elected'); |
31 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(1).isS
electable'); | 31 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(1).isS
electable'); |
32 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(1).is
Selected'); | 32 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(1).is
Selected'); |
33 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is
Selectable'); | 33 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is
Selectable'); |
34 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is
Selected'); | 34 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is
Selected'); |
35 } | 35 } |
36 </script> | 36 </script> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |