(domElement, updatePayload, type, oldProps, newProps, internalInstanceHandle)
| 7669 | } |
| 7670 | } |
| 7671 | function commitUpdate(domElement, updatePayload, type, oldProps, newProps, internalInstanceHandle) { |
| 7672 | // Update the props handle so that we know which props are the ones with |
| 7673 | // with current event handlers. |
| 7674 | updateFiberProps(domElement, newProps); // Apply the diff to the DOM node. |
| 7675 | |
| 7676 | updateProperties(domElement, updatePayload, type, oldProps, newProps); |
| 7677 | } |
| 7678 | function resetTextContent(domElement) { |
| 7679 | setTextContent(domElement, ''); |
| 7680 | } |
no test coverage detected