Move util::logical_geometry to style

This commit is contained in:
Anthony Ramine 2016-02-18 02:25:40 +01:00
parent 63dc161b77
commit db8d502f41
27 changed files with 32 additions and 34 deletions

View file

@ -28,12 +28,12 @@ use std::fmt;
use std::ops::Add;
use std::sync::Arc;
use style::computed_values::{border_collapse, table_layout};
use style::logical_geometry::LogicalSize;
use style::properties::ComputedValues;
use style::values::CSSFloat;
use style::values::computed::LengthOrPercentageOrAuto;
use table::{ColumnComputedInlineSize, ColumnIntrinsicInlineSize};
use table_row;
use util::logical_geometry::LogicalSize;
use util::print_tree::PrintTree;
#[derive(Copy, Clone, RustcEncodable, Debug)]