mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Move util::persistent_list to layout
This commit is contained in:
parent
875f1e92cc
commit
307f2915f2
4 changed files with 2 additions and 2 deletions
|
@ -3,12 +3,12 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use app_units::Au;
|
use app_units::Au;
|
||||||
|
use persistent_list::PersistentList;
|
||||||
use std::cmp::{max, min};
|
use std::cmp::{max, min};
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::i32;
|
use std::i32;
|
||||||
use style::computed_values::float;
|
use style::computed_values::float;
|
||||||
use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode};
|
use style::logical_geometry::{LogicalRect, LogicalSize, WritingMode};
|
||||||
use util::persistent_list::PersistentList;
|
|
||||||
|
|
||||||
/// The kind of float: left or right.
|
/// The kind of float: left or right.
|
||||||
#[derive(Clone, RustcEncodable, Debug, Copy)]
|
#[derive(Clone, RustcEncodable, Debug, Copy)]
|
||||||
|
|
|
@ -85,6 +85,7 @@ mod model;
|
||||||
mod multicol;
|
mod multicol;
|
||||||
mod opaque_node;
|
mod opaque_node;
|
||||||
mod parallel;
|
mod parallel;
|
||||||
|
mod persistent_list;
|
||||||
mod query;
|
mod query;
|
||||||
mod sequential;
|
mod sequential;
|
||||||
mod table;
|
mod table;
|
||||||
|
|
|
@ -58,7 +58,6 @@ pub mod linked_list;
|
||||||
#[cfg(feature = "non-geckolib")]
|
#[cfg(feature = "non-geckolib")]
|
||||||
pub mod non_geckolib;
|
pub mod non_geckolib;
|
||||||
pub mod opts;
|
pub mod opts;
|
||||||
pub mod persistent_list;
|
|
||||||
pub mod prefs;
|
pub mod prefs;
|
||||||
pub mod print_tree;
|
pub mod print_tree;
|
||||||
pub mod range;
|
pub mod range;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue