Skip to main content

oxibrowser_webapi/
lib.rs

1//! OxiBrowser WebAPI — DOM and Web API implementations.
2//!
3//! Provides DOM parsing via html5ever (from the Servo ecosystem) and
4//! basic WebAPI types needed for browser automation.
5
6pub mod dom;
7
8pub use dom::Document;