(key)
| 117 | return this.getAttributeNS(null, key); |
| 118 | } |
| 119 | removeAttribute(key) { |
| 120 | this.removeAttributeNS(null, key); |
| 121 | } |
| 122 | |
| 123 | setAttributeNS(ns, name, value) { |
| 124 | let attr = findWhere(this.attributes, createAttributeFilter(ns, name)); |
nothing calls this directly
no test coverage detected