diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-08-24 11:48:24 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-08-25 10:00:27 -0700 |
commit | 707ab455bb932d4635c0376634f35671fc756f49 (patch) | |
tree | 6f1d89a3fc34c361406dcc182ca2ae63f795e21d /components/layout/sequential.rs | |
parent | f7c6b2f04e4fde86332cd88a682a181563249718 (diff) | |
download | servo-707ab455bb932d4635c0376634f35671fc756f49.tar.gz servo-707ab455bb932d4635c0376634f35671fc756f49.zip |
Eliminate the sequential/traversal parallel distinction in favor of a unified adaptive driver.
MozReview-Commit-ID: ADVTNJntzmp
Diffstat (limited to 'components/layout/sequential.rs')
-rw-r--r-- | components/layout/sequential.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs index 3c95b75fbb6..ef57d1d402c 100644 --- a/components/layout/sequential.rs +++ b/components/layout/sequential.rs @@ -18,8 +18,6 @@ use style::servo::restyle_damage::{REFLOW, REFLOW_OUT_OF_FLOW, STORE_OVERFLOW}; use traversal::{AssignBSizes, AssignISizes, BubbleISizes, BuildDisplayList}; use traversal::{InorderFlowTraversal, PostorderFlowTraversal, PreorderFlowTraversal}; -pub use style::sequential::traverse_dom; - pub fn resolve_generated_content(root: &mut Flow, layout_context: &LayoutContext) { ResolveGeneratedContent::new(&layout_context).traverse(root, 0); } |