mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Move util::cursor to style_traits
This commit is contained in:
parent
c929dbe253
commit
290694b27e
27 changed files with 44 additions and 14 deletions
|
@ -38,6 +38,9 @@ path = "../script_traits"
|
|||
[dependencies.style]
|
||||
path = "../style"
|
||||
|
||||
[dependencies.style_traits]
|
||||
path = "../style_traits"
|
||||
|
||||
[dependencies.plugins]
|
||||
path = "../plugins"
|
||||
|
||||
|
|
|
@ -53,9 +53,9 @@ use style::values::computed;
|
|||
use style::values::computed::LinearGradient;
|
||||
use style::values::computed::{LengthOrNone, LengthOrPercentage, LengthOrPercentageOrAuto};
|
||||
use style::values::specified::{AngleOrCorner, HorizontalDirection, VerticalDirection};
|
||||
use style_traits::cursor::Cursor;
|
||||
use table_cell::CollapsedBordersForCell;
|
||||
use url::Url;
|
||||
use util::cursor::Cursor;
|
||||
use util::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize, WritingMode};
|
||||
use util::opts;
|
||||
use util::range::Range;
|
||||
|
|
|
@ -52,6 +52,7 @@ extern crate serde_json;
|
|||
extern crate smallvec;
|
||||
#[macro_use(atom, ns)] extern crate string_cache;
|
||||
extern crate style;
|
||||
extern crate style_traits;
|
||||
extern crate time;
|
||||
extern crate unicode_bidi;
|
||||
extern crate unicode_script;
|
||||
|
|
|
@ -28,7 +28,7 @@ use style::properties::longhands::{display, position};
|
|||
use style::properties::style_structs;
|
||||
use style::selector_impl::PseudoElement;
|
||||
use style::values::AuExtensionMethods;
|
||||
use util::cursor::Cursor;
|
||||
use style_traits::cursor::Cursor;
|
||||
use util::logical_geometry::WritingMode;
|
||||
use wrapper::{LayoutNode, ThreadSafeLayoutNode};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue