orinium_browser/engine/mod.rs
1//! The engine module contains the core components of the Orinium engine,
2//! including the bridge, CSS handling, HTML parsing, input processing,
3//! layout management, rendering model, and tree structure.
4
5pub mod background_worker;
6pub mod bridge;
7pub mod css;
8pub mod html;
9pub mod image_decoder;
10pub mod input;
11pub mod js;
12pub mod layouter;
13pub mod origin;
14pub mod renderer_model;
15pub mod tree;
16pub mod ui;