(selector)
| 374 | } |
| 375 | |
| 376 | querySelector(selector) { |
| 377 | if (typeof selector !== 'string') return |
| 378 | |
| 379 | return this.$_tree.query(selector, this.documentElement)[0] || null |
| 380 | } |
| 381 | |
| 382 | querySelectorAll(selector) { |
| 383 | if (typeof selector !== 'string') return [] |
no test coverage detected