(selector)
| 380 | } |
| 381 | |
| 382 | querySelectorAll(selector) { |
| 383 | if (typeof selector !== 'string') return [] |
| 384 | |
| 385 | return this.$_tree.query(selector, this.documentElement) |
| 386 | } |
| 387 | |
| 388 | createElement(tagName) { |
| 389 | if (typeof tagName !== 'string') return |
no test coverage detected