diff --git a/components/layout/flow.rs b/components/layout/flow.rs index 5be4533dc6a..e316d5f3b76 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -940,11 +940,12 @@ pub struct BaseFlow { impl fmt::Debug for BaseFlow { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, - "@ {:?}, CC {}, ADC {}, Ovr {:?}", + "@ {:?}, CC {}, ADC {}, Ovr {:?}, Dmg {:?}", self.position, self.parallel.children_count.load(Ordering::SeqCst), self.abs_descendants.len(), - self.overflow) + self.overflow, + self.restyle_damage) } }