serval 0.1.0

An experimental Web browser engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_use]
pub mod prelude;

pub mod css;
pub mod dom;
pub mod layout;
pub mod paint;
pub mod style;

pub use crate::dom::parser::parse_html;
pub use crate::layout::dump_layout;
pub use crate::paint::paint_and_save;