diff options
Diffstat (limited to 'components/layout/table_colgroup.rs')
-rw-r--r-- | components/layout/table_colgroup.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/layout/table_colgroup.rs b/components/layout/table_colgroup.rs index 270f55970b2..ab206c5da18 100644 --- a/components/layout/table_colgroup.rs +++ b/components/layout/table_colgroup.rs @@ -9,6 +9,7 @@ use context::LayoutContext; use flow::{BaseFlow, TableColGroupFlowClass, FlowClass, Flow}; use fragment::{Fragment, TableColumnFragment}; +use layout_debug; use model::{MaybeAuto}; use wrapper::ThreadSafeLayoutNode; @@ -53,6 +54,9 @@ impl Flow for TableColGroupFlow { } fn bubble_inline_sizes(&mut self, _: &LayoutContext) { + let _scope = layout_debug_scope!("table_colgroup::bubble_inline_sizes {:s}", + self.base.debug_id()); + for fragment in self.cols.iter() { // get the specified value from inline-size property let inline_size = MaybeAuto::from_style(fragment.style().content_inline_size(), |