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