(name, value)
| 66 | removeChild() {}, |
| 67 | insertBefore() {}, |
| 68 | setAttribute(name, value) { |
| 69 | this.attributes[name] = String(value); |
| 70 | }, |
| 71 | getAttribute(name) { |
| 72 | return this.attributes[name] ?? null; |
| 73 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected