diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-04 15:47:06 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-04 15:47:06 +0200 |
commit | 51ff916e09ff844eb2a1aa1fe2df9ef4b45af649 (patch) | |
tree | d0fa7a7db899d1d086afc410dace876fdd74475f /components/layout/inline.rs | |
parent | 110fd6861007544b4f5b15d49da4f297c200bd7c (diff) | |
download | servo-51ff916e09ff844eb2a1aa1fe2df9ef4b45af649.tar.gz servo-51ff916e09ff844eb2a1aa1fe2df9ef4b45af649.zip |
Move util::print_tree to gfx_traits
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r-- | components/layout/inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs index af1f6c878cd..6195024f2ca 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -21,6 +21,7 @@ use gfx::display_list::{OpaqueNode, StackingContext}; use gfx::font::FontMetrics; use gfx::font_context::FontContext; use gfx_traits::StackingContextId; +use gfx_traits::print_tree::PrintTree; use layout_debug; use model::IntrinsicISizesContribution; use range::{Range, RangeIndex}; @@ -41,7 +42,6 @@ use style::values::computed::LengthOrPercentage; use text; use unicode_bidi; use util; -use util::print_tree::PrintTree; // From gfxFontConstants.h in Firefox static FONT_SUBSCRIPT_OFFSET_RATIO: f32 = 0.20; |