(current)
| 26329 | |
| 26330 | |
| 26331 | function removeExcessElements(current) { |
| 26332 | var next; |
| 26333 | while (current) { |
| 26334 | next = current.nextSibling; |
| 26335 | jqLiteRemove(current); |
| 26336 | current = next; |
| 26337 | } |
| 26338 | } |
| 26339 | |
| 26340 | |
| 26341 | function skipEmptyAndUnknownOptions(current) { |
no test coverage detected