()
| 40 | if (p) return p.childNodes[findWhere(p.childNodes, this, true) + 1]; |
| 41 | } |
| 42 | get previousSibling() { |
| 43 | let p = this.parentNode; |
| 44 | if (p) return p.childNodes[findWhere(p.childNodes, this, true) - 1]; |
| 45 | } |
| 46 | get firstChild() { |
| 47 | return this.childNodes[0]; |
| 48 | } |
nothing calls this directly
no test coverage detected