mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
auto merge of #2607 : bjz/servo/leeeeeak, r=jdm
Introduced by yours-truly in 7212c3573e
Oopsie.
This commit is contained in:
commit
f1194fc85b
1 changed files with 9 additions and 0 deletions
|
@ -130,6 +130,15 @@ impl NodeFlags {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[unsafe_destructor]
|
||||||
|
impl Drop for Node {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
unsafe {
|
||||||
|
self.reap_layout_data();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// suppress observers flag
|
/// suppress observers flag
|
||||||
/// http://dom.spec.whatwg.org/#concept-node-insert
|
/// http://dom.spec.whatwg.org/#concept-node-insert
|
||||||
/// http://dom.spec.whatwg.org/#concept-node-remove
|
/// http://dom.spec.whatwg.org/#concept-node-remove
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue