@@ -401,7 +401,7 @@ QUnit.test( "mouse", function( assert ) {
401
401
} ) ;
402
402
403
403
QUnit . test ( "ARIA" , function ( assert ) {
404
- assert . expect ( 15 ) ;
404
+ assert . expect ( 12 ) ;
405
405
406
406
var id = this . element . attr ( "id" ) ,
407
407
headerId = id + "-title" ,
@@ -426,17 +426,11 @@ QUnit.test( "ARIA", function( assert ) {
426
426
427
427
assert . equal ( table . children ( "thead" ) . attr ( "role" ) , "presentation" ,
428
428
"Table head role attribute" ) ;
429
- assert . equal ( table . find ( "thead tr" ) . attr ( "role" ) , "row" ,
430
- "Table head row role attribute" ) ;
431
429
assert . equal ( table . find ( "thead th" ) . first ( ) . attr ( "role" ) , "columnheader" ,
432
430
"Table head cell role attribute" ) ;
433
431
434
432
assert . equal ( table . children ( "tbody" ) . attr ( "role" ) , "presentation" ,
435
433
"Table body role attribute" ) ;
436
- assert . equal ( table . find ( "tbody tr" ) . attr ( "role" ) , "row" ,
437
- "Table body row role attribute" ) ;
438
- assert . equal ( table . find ( "tbody td" ) . first ( ) . attr ( "role" ) , "gridcell" ,
439
- "Table body cell role attribute" ) ;
440
434
assert . equal ( table . find ( "tbody td" ) . first ( ) . attr ( "aria-describedby" ) ,
441
435
monthLabelId , "Table body cell ARIA describedby attribute" ) ;
442
436
} ) ;
0 commit comments