(name)
| 69 | this.attributes[name] = String(value); |
| 70 | }, |
| 71 | getAttribute(name) { |
| 72 | return this.attributes[name] ?? null; |
| 73 | }, |
| 74 | getBoundingClientRect() { |
| 75 | return { width: 300, height: 150, top: 0, left: 0, right: 300, bottom: 150 }; |
| 76 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected