diff --git a/js/accessibility/pdom/ParallelDOM.js b/js/accessibility/pdom/ParallelDOM.js index 2d4b65c11..7f9fe969b 100644 --- a/js/accessibility/pdom/ParallelDOM.js +++ b/js/accessibility/pdom/ParallelDOM.js @@ -2208,7 +2208,7 @@ const ParallelDOM = { * (unlike Node.wasDisplayed()). * @public */ - isAccessibleDisplayed: function() { + isPDOMDisplayed: function() { for ( let i = 0; i < this._accessibleInstances.length; i++ ) { if ( this._accessibleInstances[ i ].isGloballyVisible() ) { return true; @@ -2216,7 +2216,7 @@ const ParallelDOM = { } return false; }, - get accessibleDisplayed() { return this.isAccessibleDisplayed(); }, + get pdomDisplayed() { return this.isPDOMDisplayed(); }, /** * Set the value of an input element. Element must be a form element to support the value attribute. The input