(par, child)
| 19 | } |
| 20 | |
| 21 | function insAtTop(par, child) { |
| 22 | if (par.childNodes.length) par.insertBefore(child, par.childNodes[0]); |
| 23 | else par.appendChild(child); |
| 24 | } |
| 25 | |
| 26 | function countCols(tab) { |
| 27 | var nCols, i; |
no outgoing calls
no test coverage detected