diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-03-03 10:42:52 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-03-03 10:42:52 -0700 |
commit | 5cd6316addc1acf145ed3220719387ef6ef08d2f (patch) | |
tree | 7d8daec9db46a555ef567e356f5ab08488f9c71c /components/layout/lib.rs | |
parent | 6fcc02e92f4c519239a834dc37a2965a4993322a (diff) | |
parent | 4c8bde5736853ae68332d1f97cc6f0b02499e35f (diff) | |
download | servo-5cd6316addc1acf145ed3220719387ef6ef08d2f.tar.gz servo-5cd6316addc1acf145ed3220719387ef6ef08d2f.zip |
auto merge of #5067 : servo/servo/counters, r=SimonSapin
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.
Moved from #4544, because Critic.
Fixes #4544.
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r-- | components/layout/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs index 837945eff81..0985a51997e 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -66,7 +66,9 @@ pub mod flow; pub mod flow_list; pub mod flow_ref; pub mod fragment; +pub mod generated_content; pub mod layout_task; +pub mod incremental; pub mod inline; pub mod list_item; pub mod model; @@ -82,7 +84,6 @@ pub mod table_cell; pub mod text; pub mod traversal; pub mod util; -pub mod incremental; pub mod wrapper; pub mod css { |