(current)
| 27671 | |
| 27672 | |
| 27673 | function removeExcessElements(current) { |
| 27674 | var next; |
| 27675 | while (current) { |
| 27676 | next = current.nextSibling; |
| 27677 | jqLiteRemove(current); |
| 27678 | current = next; |
| 27679 | } |
| 27680 | } |
| 27681 | |
| 27682 | |
| 27683 | function skipEmptyAndUnknownOptions(current) { |
no test coverage detected