@@ -87,6 +87,7 @@ const entriesList = [
8787 [ { "name" : "option" } , [ "option" ] ] ,
8888 [ { "name" : "p" } , [ "paragraph" ] ] ,
8989 [ { "attributes" : [ { "name" : "alt" , "value" : "" } ] , "name" : "img" } , [ "presentation" ] ] ,
90+ [ { "attributes" : [ { "name" : "alt" , "value" : "" } ] , "name" : "img" } , [ "none" ] ] ,
9091 [ { "name" : "progress" } , [ "progressbar" ] ] ,
9192 [ { "attributes" : [ { "name" : "aria-valuemax" } , { "name" : "aria-valuemin" , "value" : 0 } , { "name" : "aria-valuenow" } ] , "constraints" : [ "the progress bar is determinate" ] , "name" : "progress" } , [ "progressbar" ] ] ,
9293 [ { "attributes" : [ { "name" : "type" , "value" : "radio" } ] , "name" : "input" } , [ "radio" ] ] ,
@@ -230,7 +231,7 @@ describe('elementRolesMap', function () {
230231 } ) ;
231232 describe ( 'spread operator' , function ( ) {
232233 it ( 'should have a specific length' , function ( ) {
233- expect ( [ ...elementRoleMap ] . length ) . toEqual ( 113 ) ;
234+ expect ( [ ...elementRoleMap ] . length ) . toEqual ( 114 ) ;
234235 } ) ;
235236 test . each ( [ ...elementRoleMap ] ) ( 'Testing element: %o' , ( obj , roles ) => {
236237 expect ( entriesList ) . toEqual (
0 commit comments