fune/servo/components/selectors
Emilio Cobos Álvarez abf264d604 servo: Merge #19822 - style: More tiny selector-matching cleanup (from emilio:less-match-public); r=KiChjang
See each commit individually.

Source-Repo: https://github.com/servo/servo
Source-Revision: 6fc71a7644bd7afcccf83f67cfdaf01897e1a3bc

--HG--
extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear
extra : subtree_revision : 61fb59e354c7ad8307d6f76b93bd365abc575c85
2018-01-19 23:05:18 -06:00
..
attr.rs servo: Merge #19162 - Allow unused imports for AsciiExt in style code (from emilio:ascii-ext); r=emilio 2017-11-09 06:49:29 -06:00
bloom.rs servo: Merge #18854 - Make optional the usage of some unstable features (from servo:servo-unstable-feature); r=nox 2017-10-13 12:26:39 -05:00
build.rs servo: Merge #18971 - Use env::var_os to read paths from the environment (from mbrubeck:var); r=emilio 2017-10-21 08:09:22 -05:00
builder.rs servo: Merge #19721 - style: Support ::slotted better (from emilio:slotted); r=heycam 2018-01-09 07:26:28 -06:00
Cargo.toml servo: Merge #19751 - Clean up the selectors crate for a new crates.io release (from servo:selectors); r=bholley 2018-01-12 16:55:12 -06:00
context.rs servo: Merge #19822 - style: More tiny selector-matching cleanup (from emilio:less-match-public); r=KiChjang 2018-01-19 23:05:18 -06:00
lib.rs servo: Merge #19751 - Clean up the selectors crate for a new crates.io release (from servo:selectors); r=bholley 2018-01-12 16:55:12 -06:00
matching.rs servo: Merge #19822 - style: More tiny selector-matching cleanup (from emilio:less-match-public); r=KiChjang 2018-01-19 23:05:18 -06:00
nth_index_cache.rs servo: Merge #18595 - Implement an nth-index cache (from bholley:nth_index_cache); r=emilio 2017-09-21 18:10:05 -05:00
parser.rs servo: Merge #19813 - selectors: Simplify SelectorIter::next (from emilio:tidy); r=nox 2018-01-19 06:49:54 -06:00
README.md
sink.rs
tree.rs servo: Merge #19817 - style: Track the visited-handling-mode on the MatchingContext (from emilio:matching-context-visited); r=nox 2018-01-19 12:50:00 -06:00
visitor.rs servo: Merge #19751 - Clean up the selectors crate for a new crates.io release (from servo:selectors); r=bholley 2018-01-12 16:55:12 -06:00

rust-selectors

CSS Selectors library for Rust. Includes parsing and serilization of selectors, as well as matching against a generic tree of elements. Pseudo-elements and most pseudo-classes are generic as well.

Warning: breaking changes are made to this library fairly frequently (13 times in 2016, for example). However you can use this crate without updating it that often, old versions stay available on crates.io and Cargo will only automatically update to versions that are numbered as compatible.

To see how to use this library with your own tree representation, see Kuchikis src/select.rs. (Note however that Kuchiki is not always up to date with the latest rust-selectors version, so that code may need to be tweaked.) If you dont already have a tree data structure, consider using Kuchiki itself.