hpx-browser 2.4.23

Headless browser engine for hpx: HTML parsing, rendering, CDP, and canvas support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CSS Selectors Level 4 parser and matching engine.

pub mod ast;
pub mod element;
pub mod error;
pub mod matching;
pub mod nth;
pub mod parser;
pub mod specificity;

pub use ast::*;
pub use element::Element;
pub use error::SelectorParseError;
pub use matching::{matches_any, matches_selector, query_selector, query_selector_all};
pub use parser::{parse_selector_list, parse_selector_list_forgiving};
pub use specificity::compute_specificity;