(domElement, tag, props)
| 6746 | } |
| 6747 | } |
| 6748 | function restoreControlledState$3(domElement, tag, props) { |
| 6749 | switch (tag) { |
| 6750 | case 'input': |
| 6751 | restoreControlledState(domElement, props); |
| 6752 | return; |
| 6753 | |
| 6754 | case 'textarea': |
| 6755 | restoreControlledState$2(domElement, props); |
| 6756 | return; |
| 6757 | |
| 6758 | case 'select': |
| 6759 | restoreControlledState$1(domElement, props); |
| 6760 | return; |
| 6761 | } |
| 6762 | } |
| 6763 | |
| 6764 | function getActiveElement(doc) { |
| 6765 | doc = doc || (typeof document !== 'undefined' ? document : undefined); |
nothing calls this directly
no test coverage detected