* (For IE <=9) Handles a propertychange event, sending a `change` event if * the value of the active element has changed.
(nativeEvent)
| 4007 | * the value of the active element has changed. |
| 4008 | */ |
| 4009 | function handlePropertyChange(nativeEvent) { |
| 4010 | if (nativeEvent.propertyName !== 'value') { |
| 4011 | return; |
| 4012 | } |
| 4013 | if (getInstIfValueChanged(activeElementInst)) { |
| 4014 | manualDispatchChangeEvent(nativeEvent); |
| 4015 | } |
| 4016 | } |
| 4017 | |
| 4018 | function handleEventsForInputEventPolyfill(topLevelType, target, targetInst) { |
| 4019 | if (topLevelType === 'topFocus') { |
nothing calls this directly
no test coverage detected