Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upNode::remove_child not dirtying the parent #8135
Closed
Labels
Comments
bors-servo
added a commit
that referenced
this issue
Nov 2, 2015
Dirty parent when removing a child node. In Node::remove_child, dirty both the child and the parent. Fixes #8135 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8139) <!-- Reviewable:end -->
|
Fixed in #8315. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In https://github.com/servo/servo/blob/master/components/script/dom/node.rs, we have:
}
so the child is being dirtied, but the parent isn't.