(node)
| 2689 | return eventResult; |
| 2690 | } |
| 2691 | getRootNode(node) { |
| 2692 | if (node && node instanceof Node) { |
| 2693 | var rv = node.getRootNode(); |
| 2694 | if (rv instanceof Document || rv instanceof ShadowRoot) return rv; |
| 2695 | } |
| 2696 | return document; |
| 2697 | } |
| 2698 | escapeSelector(str) { |
| 2699 | return str.replace(/[:&()\[\]\/]/g, function(str2) { |
| 2700 | return "\\" + str2; |
no outgoing calls
no test coverage detected