auto merge of #5131 : aweinstock314/servo/master, r=jdm

...78).
This commit is contained in:
bors-servo 2015-03-03 07:18:53 -07:00
commit 417a932e30

View file

@ -94,7 +94,9 @@ impl<T> DOMRefCell<T> {
impl<T: JSTraceable> JSTraceable for DOMRefCell<T> {
fn trace(&self, trc: *mut JSTracer) {
(*self).borrow().trace(trc)
unsafe {
(*self).borrow_for_gc_trace().trace(trc)
}
}
}