(key)
| 520 | } |
| 521 | |
| 522 | removeAttribute(key) { |
| 523 | this.setAttribute(key, null); |
| 524 | } |
| 525 | |
| 526 | removeEventListener(type, listener, options = {}) { |
| 527 | if(typeof options === 'boolean') options = {capture: options}; |
nothing calls this directly
no test coverage detected