@@ -79,8 +79,10 @@ test("data", function() {
79
79
} ) ;
80
80
81
81
test ( "focusable - visible, enabled elements" , function ( ) {
82
- expect ( 16 ) ;
82
+ expect ( 18 ) ;
83
83
84
+ isNotFocusable ( '#formNoTabindex' , 'form' ) ;
85
+ isFocusable ( '#formTabindex' , 'form with tabindex' ) ;
84
86
isFocusable ( '#visibleAncestor-inputTypeNone' , 'input, no type' ) ;
85
87
isFocusable ( '#visibleAncestor-inputTypeText' , 'input, type text' ) ;
86
88
isFocusable ( '#visibleAncestor-inputTypeCheckbox' , 'input, type checkbox' ) ;
@@ -156,8 +158,10 @@ test("focusable - area elements", function() {
156
158
} ) ;
157
159
158
160
test ( "tabbable - visible, enabled elements" , function ( ) {
159
- expect ( 16 ) ;
161
+ expect ( 18 ) ;
160
162
163
+ isNotTabbable ( '#formNoTabindex' , 'form' ) ;
164
+ isTabbable ( '#formTabindex' , 'form with tabindex' ) ;
161
165
isTabbable ( '#visibleAncestor-inputTypeNone' , 'input, no type' ) ;
162
166
isTabbable ( '#visibleAncestor-inputTypeText' , 'input, type text' ) ;
163
167
isTabbable ( '#visibleAncestor-inputTypeCheckbox' , 'input, type checkbox' ) ;
0 commit comments