OLD | NEW |
1 Link Button | 1 Link Button |
2 Focusable | 2 Focusable |
3 Heading | 3 Heading |
4 | 4 |
5 ARIA button | 5 ARIA button |
6 ARIA toggle button | 6 ARIA toggle button |
7 ARIA link | 7 ARIA link |
8 Button | 8 Button |
9 This tests which elements expose themselves as readonly. Readonly here refers to
whether the item is not editable, not whether a control value can be changed vs
if it's unavailable. | 9 This tests which elements expose themselves as readonly. Readonly here refers to
whether the item is not editable, not whether a control value can be changed vs
if it's unavailable. |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 PASS axElement.isReadOnly is true | 76 PASS axElement.isReadOnly is true |
77 | 77 |
78 contenteditable_root1 | 78 contenteditable_root1 |
79 PASS document.activeElement == element is true | 79 PASS document.activeElement == element is true |
80 PASS axElement.isReadOnly is false | 80 PASS axElement.isReadOnly is false |
81 | 81 |
82 contenteditable_button1 | 82 contenteditable_button1 |
83 PASS document.activeElement == element is true | 83 PASS document.activeElement == element is true |
84 PASS axElement.isReadOnly is false | 84 PASS axElement.isReadOnly is false |
85 | 85 |
| 86 PASS axMenuListPopup.role is "AXRole: AXMenuListPopup" |
| 87 PASS axMenuListPopup.isReadOnly is true |
86 PASS successfullyParsed is true | 88 PASS successfullyParsed is true |
87 | 89 |
88 TEST COMPLETE | 90 TEST COMPLETE |
89 | 91 |
OLD | NEW |