Flatten the css module

This commit is contained in:
Brian Anderson 2012-10-30 15:58:26 -07:00
parent fbe17a1e36
commit 0b9dfde349
4 changed files with 3 additions and 5 deletions

View file

@ -174,5 +174,5 @@ impl Node : StyleMethods {
} }
fn apply_style(layout_ctx: &LayoutContext, node: Node) { fn apply_style(layout_ctx: &LayoutContext, node: Node) {
resolve::apply::apply_style(layout_ctx, node) apply::apply_style(layout_ctx, node)
} }

View file

@ -46,11 +46,9 @@ pub mod content {
pub mod css { pub mod css {
pub mod styles; pub mod styles;
mod resolve { mod apply;
pub mod apply;
mod matching; mod matching;
} }
}
pub mod layout { pub mod layout {
pub mod block; pub mod block;