mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
layout: Dump damage as well as part of the flow tree debug spew.
This commit is contained in:
parent
3ae5f04bd1
commit
34611f126d
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue