Skip to content

Commit

Permalink
accessibleAudit -> pdomAudit, #997
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Dec 15, 2021
1 parent 0c7b1fb commit 838d671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/accessibility/pdom/ParallelDOM.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ const ParallelDOM = {
* and labelContent declared
* @public (only called by Screen.js)
*/
accessibleAudit: function() {
pdomAudit: function() {

if ( this.hasPDOMContent && assert ) {

Expand All @@ -582,7 +582,7 @@ const ParallelDOM = {
}

for ( let i = 0; i < this.children.length; i++ ) {
this.children[ i ].accessibleAudit();
this.children[ i ].pdomAudit();
}
},

Expand Down

0 comments on commit 838d671

Please sign in to comment.