mirror of
https://github.com/servo/servo.git
synced 2025-06-14 19:34:29 +00:00
This commit doesn't implement any flexbox behavior at all. It just constructs FlexFlow's, which act just like the BlockFlow from which they "inherit."
105 lines
2.1 KiB
Rust
105 lines
2.1 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#![feature(append)]
|
|
#![feature(arc_unique)]
|
|
#![feature(arc_weak)]
|
|
#![feature(box_str)]
|
|
#![feature(box_syntax)]
|
|
#![feature(cell_extras)]
|
|
#![feature(custom_derive)]
|
|
#![feature(hashmap_hasher)]
|
|
#![feature(mpsc_select)]
|
|
#![feature(plugin)]
|
|
#![feature(raw)]
|
|
#![feature(step_by)]
|
|
#![feature(str_char)]
|
|
#![feature(unsafe_no_drop_flag)]
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
#![plugin(string_cache_plugin)]
|
|
#![plugin(plugins)]
|
|
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
extern crate bitflags;
|
|
|
|
#[macro_use]
|
|
#[no_link]
|
|
extern crate plugins as servo_plugins;
|
|
extern crate net_traits;
|
|
#[macro_use]
|
|
extern crate profile_traits;
|
|
|
|
#[macro_use]
|
|
extern crate util;
|
|
|
|
extern crate azure;
|
|
extern crate canvas_traits;
|
|
extern crate clock_ticks;
|
|
extern crate cssparser;
|
|
extern crate encoding;
|
|
extern crate fnv;
|
|
extern crate euclid;
|
|
extern crate gfx;
|
|
extern crate gfx_traits;
|
|
extern crate ipc_channel;
|
|
extern crate layout_traits;
|
|
extern crate libc;
|
|
extern crate msg;
|
|
extern crate rustc_serialize;
|
|
extern crate script;
|
|
extern crate script_traits;
|
|
extern crate selectors;
|
|
extern crate serde;
|
|
extern crate serde_json;
|
|
extern crate smallvec;
|
|
extern crate string_cache;
|
|
extern crate style;
|
|
extern crate unicode_bidi;
|
|
extern crate url;
|
|
|
|
// Listed first because of macro definitions
|
|
pub mod layout_debug;
|
|
|
|
pub mod animation;
|
|
pub mod block;
|
|
pub mod construct;
|
|
pub mod context;
|
|
pub mod data;
|
|
pub mod display_list_builder;
|
|
pub mod flex;
|
|
pub mod floats;
|
|
pub mod flow;
|
|
pub mod flow_list;
|
|
pub mod flow_ref;
|
|
pub mod fragment;
|
|
pub mod generated_content;
|
|
pub mod layout_task;
|
|
pub mod incremental;
|
|
pub mod inline;
|
|
pub mod list_item;
|
|
pub mod model;
|
|
pub mod multicol;
|
|
pub mod opaque_node;
|
|
pub mod parallel;
|
|
pub mod query;
|
|
pub mod sequential;
|
|
pub mod table_wrapper;
|
|
pub mod table;
|
|
pub mod table_caption;
|
|
pub mod table_colgroup;
|
|
pub mod table_rowgroup;
|
|
pub mod table_row;
|
|
pub mod table_cell;
|
|
pub mod text;
|
|
pub mod traversal;
|
|
pub mod wrapper;
|
|
|
|
pub mod css {
|
|
pub mod matching;
|
|
}
|