(xpath)
| 4573 | } |
| 4574 | |
| 4575 | function isXPath(xpath) { |
| 4576 | if (!xpath) { |
| 4577 | return false; |
| 4578 | } |
| 4579 | return /^\(*(descendant::|\.\/|\/|id\()/.test(xpath); |
| 4580 | } |
| 4581 | |
| 4582 | function getAllElements(sel, doc, contextNode) { |
| 4583 | try { |
no outgoing calls
no test coverage detected