From 838d67118670cf6523506af6260ce32e04b31511 Mon Sep 17 00:00:00 2001 From: zepumph Date: Tue, 2 Feb 2021 14:04:41 -0900 Subject: [PATCH] accessibleAudit -> pdomAudit, https://github.com/phetsims/scenery/issues/997 --- js/accessibility/pdom/ParallelDOM.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/accessibility/pdom/ParallelDOM.js b/js/accessibility/pdom/ParallelDOM.js index 466b3a830..bd7dc01c9 100644 --- a/js/accessibility/pdom/ParallelDOM.js +++ b/js/accessibility/pdom/ParallelDOM.js @@ -564,7 +564,7 @@ const ParallelDOM = { * and labelContent declared * @public (only called by Screen.js) */ - accessibleAudit: function() { + pdomAudit: function() { if ( this.hasPDOMContent && assert ) { @@ -582,7 +582,7 @@ const ParallelDOM = { } for ( let i = 0; i < this.children.length; i++ ) { - this.children[ i ].accessibleAudit(); + this.children[ i ].pdomAudit(); } },