hpx_browser/css_selectors/mod.rs
1//! CSS Selectors Level 4 parser and matching engine.
2
3pub mod ast;
4pub mod element;
5pub mod error;
6pub mod matching;
7pub mod nth;
8pub mod parser;
9pub mod specificity;
10
11pub use ast::*;
12pub use element::Element;
13pub use error::SelectorParseError;
14pub use matching::{matches_any, matches_selector, query_selector, query_selector_all};
15pub use parser::{parse_selector_list, parse_selector_list_forgiving};
16pub use specificity::compute_specificity;