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) {
resolve::apply::apply_style(layout_ctx, node)
apply::apply_style(layout_ctx, node)
}

View file

@ -46,10 +46,8 @@ pub mod content {
pub mod css {
pub mod styles;
mod resolve {
pub mod apply;
mod matching;
}
mod apply;
mod matching;
}
pub mod layout {