()
| 3577 | if (!optionExists) { |
| 3578 | const option = document.createElement('option'); |
| 3579 | option.value = currentValue; |
| 3580 | option.textContent = currentValue; |
| 3581 | newElement.appendChild(option); |
| 3582 | } |
| 3583 | newElement.value = currentValue; |
| 3584 | console.log('Designer value after clone:', newElement.value); |
| 3585 | } |
| 3586 | } else { |
| 3587 | const newElement = element.cloneNode(true); |
nothing calls this directly
no outgoing calls
no test coverage detected