(domElement, updatePayload, type, oldProps, newProps, internalInstanceHandle)
| 11053 | } |
| 11054 | } |
| 11055 | function commitUpdate(domElement, updatePayload, type, oldProps, newProps, internalInstanceHandle) { |
| 11056 | // Apply the diff to the DOM node. |
| 11057 | updateProperties(domElement, updatePayload, type, oldProps, newProps); // Update the props handle so that we know which props are the ones with |
| 11058 | // with current event handlers. |
| 11059 | |
| 11060 | updateFiberProps(domElement, newProps); |
| 11061 | } |
| 11062 | function resetTextContent(domElement) { |
| 11063 | setTextContent(domElement, ''); |
| 11064 | } |
no test coverage detected
searching dependent graphs…