diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2016-05-25 10:48:09 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2016-05-25 11:54:21 -0700 |
commit | 5c09e26e55bd7c013296403b86b0500101189ce4 (patch) | |
tree | 2389c686f631b873105a6d711652ae9b518efad4 /components/layout/construct.rs | |
parent | 116faa7617aa2cb648d57307505b23504900bc9f (diff) | |
download | servo-5c09e26e55bd7c013296403b86b0500101189ce4.tar.gz servo-5c09e26e55bd7c013296403b86b0500101189ce4.zip |
Stop generating flows under display: none.
Because this is a bottom-up traversal it can generates flows and throw them away. To prevent that, this cascades an internal `-servo-under-display-none` property and then checks that during flow construction. Fixes #1536.
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index 2a75c4025cb..77b388e8ade 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -1501,7 +1501,15 @@ impl<'a, ConcreteThreadSafeLayoutNode> PostorderNodeMutTraversal<ConcreteThreadS // // TODO: This should actually consult the table in that section to get the // final computed value for 'display'. - fn process(&mut self, node: &ConcreteThreadSafeLayoutNode) -> bool { + fn process(&mut self, node: &ConcreteThreadSafeLayoutNode) { + node.insert_flags(HAS_NEWLY_CONSTRUCTED_FLOW); + + // Bail out if this node has an ancestor with display: none. + if node.style(self.style_context()).get_inheritedbox()._servo_under_display_none.0 { + self.set_flow_construction_result(node, ConstructionResult::None); + return; + } + // Get the `display` property for this node, and determine whether this node is floated. let (display, float, positioning) = match node.type_id() { None => { @@ -1542,12 +1550,8 @@ impl<'a, ConcreteThreadSafeLayoutNode> PostorderNodeMutTraversal<ConcreteThreadS // Switch on display and floatedness. match (display, float, positioning) { - // `display: none` contributes no flow construction result. Nuke the flow construction - // results of children. + // `display: none` contributes no flow construction result. (display::T::none, _, _) => { - for child in node.children() { - self.set_flow_construction_result(&child, ConstructionResult::None); - } self.set_flow_construction_result(node, ConstructionResult::None); } @@ -1654,9 +1658,6 @@ impl<'a, ConcreteThreadSafeLayoutNode> PostorderNodeMutTraversal<ConcreteThreadS self.set_flow_construction_result(node, construction_result) } } - - node.insert_flags(HAS_NEWLY_CONSTRUCTED_FLOW); - true } } |