(node)
| 3172 | |
| 3173 | // Get a node's text content. |
| 3174 | function eltText(node) { |
| 3175 | return node.textContent || node.innerText || node.nodeValue || ""; |
| 3176 | } |
| 3177 | function selectInput(node) { |
| 3178 | if (ios) { // Mobile Safari apparently has a bug where select() is broken. |
| 3179 | node.selectionStart = 0; |