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

@ -24,12 +24,12 @@ use std::ops::Deref;
use std::sync::{Arc, Mutex};
use string_cache::Atom;
use style::computed_values;
use style::logical_geometry::WritingMode;
use style::properties::longhands::{display, position};
use style::properties::style_structs;
use style::selector_impl::PseudoElement;
use style::values::AuExtensionMethods;
use style_traits::cursor::Cursor;
use util::logical_geometry::WritingMode;
use wrapper::{LayoutNode, ThreadSafeLayoutNode};
pub struct LayoutRPCImpl(pub Arc<Mutex<LayoutThreadData>>);