* (For IE <=9) Handles a propertychange event, sending a `change` event if * the value of the active element has changed.
(nativeEvent)
| 4135 | * the value of the active element has changed. |
| 4136 | */ |
| 4137 | function handlePropertyChange(nativeEvent) { |
| 4138 | if (nativeEvent.propertyName !== 'value') { |
| 4139 | return; |
| 4140 | } |
| 4141 | if (getInstIfValueChanged(activeElementInst)) { |
| 4142 | manualDispatchChangeEvent(nativeEvent); |
| 4143 | } |
| 4144 | } |
| 4145 | |
| 4146 | function handleEventsForInputEventPolyfill(topLevelType, target, targetInst) { |
| 4147 | if (topLevelType === 'topFocus') { |
nothing calls this directly
no test coverage detected