* (For IE <=9) Handles a propertychange event, sending a `change` event if * the value of the active element has changed.
(nativeEvent)
| 4774 | * the value of the active element has changed. |
| 4775 | */ |
| 4776 | function handlePropertyChange(nativeEvent) { |
| 4777 | if (nativeEvent.propertyName !== 'value') { |
| 4778 | return; |
| 4779 | } |
| 4780 | if (getInstIfValueChanged(activeElementInst)) { |
| 4781 | manualDispatchChangeEvent(nativeEvent); |
| 4782 | } |
| 4783 | } |
| 4784 | |
| 4785 | function handleEventsForInputEventPolyfill(topLevelType, target, targetInst) { |
| 4786 | if (topLevelType === 'topFocus') { |
nothing calls this directly
no test coverage detected