Remove all the children from node and append them to `new_parent`.
(&self, node: &NodeId, new_parent: &NodeId)
| 318 | |
| 319 | /// Remove all the children from node and append them to `new_parent`. |
| 320 | fn reparent_children(&self, node: &NodeId, new_parent: &NodeId) { |
| 321 | self.document |
| 322 | .borrow_mut() |
| 323 | .reparent_children(*node, *new_parent); |
| 324 | } |
| 325 | } |
no outgoing calls
no test coverage detected