diff options
Diffstat (limited to 'components/layout_2020/layout_debug.rs')
-rw-r--r-- | components/layout_2020/layout_debug.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout_2020/layout_debug.rs b/components/layout_2020/layout_debug.rs index 21636f32a89..549075c7595 100644 --- a/components/layout_2020/layout_debug.rs +++ b/components/layout_2020/layout_debug.rs @@ -5,7 +5,8 @@ //! Supports writing a trace file created during each layout scope //! that can be viewed by an external tool to make layout debugging easier. -use crate::flow::{BoxTree, FragmentTree}; +use crate::flow::BoxTree; +use crate::fragment_tree::FragmentTree; #[cfg(not(debug_assertions))] use serde::ser::{Serialize, Serializer}; use serde_json::{to_string, to_value, Value}; |