(node)
| 2678 | return eventResult; |
| 2679 | } |
| 2680 | getRootNode(node) { |
| 2681 | if (node && node instanceof Node) { |
| 2682 | var rv = node.getRootNode(); |
| 2683 | if (rv instanceof Document || rv instanceof ShadowRoot) return rv; |
| 2684 | } |
| 2685 | return document; |
| 2686 | } |
| 2687 | escapeSelector(str) { |
| 2688 | return str.replace(/[:&()\[\]\/]/g, function(str2) { |
| 2689 | return "\\" + str2; |
no outgoing calls
no test coverage detected