* (For IE <=9) Handles a propertychange event, sending a `change` event if * the value of the active element has changed.
(nativeEvent)
| 9298 | |
| 9299 | |
| 9300 | function handlePropertyChange(nativeEvent) { |
| 9301 | if (nativeEvent.propertyName !== 'value') { |
| 9302 | return; |
| 9303 | } |
| 9304 | |
| 9305 | if (getInstIfValueChanged(activeElementInst)) { |
| 9306 | manualDispatchChangeEvent(nativeEvent); |
| 9307 | } |
| 9308 | } |
| 9309 | |
| 9310 | function handleEventsForInputEventPolyfill(topLevelType, target, targetInst) { |
| 9311 | if (topLevelType === TOP_FOCUS) { |
nothing calls this directly
no test coverage detected