()
| 158 | return [createElementStub()]; |
| 159 | }, |
| 160 | createRange() { |
| 161 | return makeNoopProxy({ |
| 162 | setStart() {}, |
| 163 | setEnd() {}, |
| 164 | getBoundingClientRect() { |
| 165 | return { width: 100, height: 20 }; |
| 166 | }, |
| 167 | }); |
| 168 | }, |
| 169 | querySelector() { |
| 170 | return createElementStub(); |
| 171 | }, |
nothing calls this directly
no test coverage detected