* (For IE <=9) Handles a propertychange event, sending a `change` event if * the value of the active element has changed.
(nativeEvent)
| 4912 | * the value of the active element has changed. |
| 4913 | */ |
| 4914 | function handlePropertyChange(nativeEvent) { |
| 4915 | if (nativeEvent.propertyName !== 'value') { |
| 4916 | return; |
| 4917 | } |
| 4918 | if (getInstIfValueChanged(activeElementInst)) { |
| 4919 | manualDispatchChangeEvent(nativeEvent); |
| 4920 | } |
| 4921 | } |
| 4922 | |
| 4923 | function handleEventsForInputEventPolyfill(topLevelType, target, targetInst) { |
| 4924 | if (topLevelType === 'topFocus') { |
nothing calls this directly
no test coverage detected