()
| 293 | } |
| 294 | |
| 295 | setFocus() { |
| 296 | if ( |
| 297 | this._dialog && |
| 298 | this._dialog.parentNode && |
| 299 | typeof this._dialog.parentNode.focus === 'function' |
| 300 | ) { |
| 301 | this._dialog.parentNode.focus(); |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | getFocusableChildren() { |
| 306 | return this._element.querySelectorAll(focusableElements.join(', ')); |
no test coverage detected
searching dependent graphs…