(name)
| 193 | } |
| 194 | |
| 195 | getAttribute(name) { |
| 196 | const attr = attributes.getAttributeByName(this, name); |
| 197 | if (!attr) { |
| 198 | return null; |
| 199 | } |
| 200 | return attr._value; |
| 201 | } |
| 202 | |
| 203 | getAttributeNS(namespace, localName) { |
| 204 | const attr = attributes.getAttributeByNameNS(this, namespace, localName); |
no outgoing calls
no test coverage detected