(current)
| 27219 | |
| 27220 | |
| 27221 | function removeExcessElements(current) { |
| 27222 | var next; |
| 27223 | while (current) { |
| 27224 | next = current.nextSibling; |
| 27225 | jqLiteRemove(current); |
| 27226 | current = next; |
| 27227 | } |
| 27228 | } |
| 27229 | |
| 27230 | |
| 27231 | function skipEmptyAndUnknownOptions(current) { |
no test coverage detected