servo/components/style
Patrick Walton 30fd28d107 layout: Implement ordered lists, CSS counters, and quotes per CSS 2.1
§ 12.3-12.5.

Only simple alphabetic and numeric counter styles are supported. (This
is most of them though.)

Although this PR adds a sequential pass to layout, I verified that on
pages that contain a reasonable number of ordered lists (Reddit
`/r/rust`), the time spent in generated content resolution is dwarfed by
the time spent in the parallelizable parts of layout. So I don't expect
this to negatively affect our parallelism expect perhaps in pathological
cases.
2015-03-03 17:31:19 +01:00
..
build.rs Upgrade to rustc ba2f13ef0 2015-02-04 2015-02-11 14:48:34 -08:00
Cargo.toml Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
font_face.rs Remove usage of the deprecated .as_slice() in libstyle. 2015-02-13 09:36:01 +01:00
legacy.rs Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
lib.rs Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
Mako-0.9.1.zip Cargoify servo 2014-09-08 20:21:42 -06:00
media_queries.rs Do "computed value" calculation with a trait with an associated type. 2015-02-20 21:32:01 +01:00
node.rs Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
parser.rs Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
properties.mako.rs layout: Implement ordered lists, CSS counters, and quotes per CSS 2.1 2015-03-03 17:31:19 +01:00
README.md Update style/README.md - libcss is gone now 2014-10-23 16:23:54 -05:00
selector_matching.rs Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
stylesheets.rs Move selector matching to an external library, for use outside Servo. 2015-02-23 16:29:34 +01:00
values.rs Do "computed value" calculation with a trait with an associated type. 2015-02-20 21:32:01 +01:00

servo-style

Style system for Servo, using rust-cssparser for parsing.