* Create the global form handler list on the `window` object. * * @private
()
| 1400 | * @private |
| 1401 | */ |
| 1402 | static _createFormHandlerList() { |
| 1403 | window.aNFormHandlerMap = new Map(); // I would have used a `WeakMap` here, but that does not allow using non-object for keys |
| 1404 | } |
| 1405 | |
| 1406 | /** |
| 1407 | * Return `true` if the given form element, or if none are passed, the current `this.parentForm` one has a form handler name. |
no outgoing calls
no test coverage detected