aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/construct.rs
diff options
context:
space:
mode:
authorDavid Raifaizen <whoknows>2015-10-27 09:41:42 -0400
committerDavid Raifaizen <whoknows>2015-10-27 09:41:42 -0400
commit091282ee247a111f4b7cce5b3ee5e73fc9a8c209 (patch)
treea7bb2ac35e75808b70003a848faa30b87d8d94d9 /components/layout/construct.rs
parenta6e2c138db156a7b817107b22c482010ebcdcf2a (diff)
downloadservo-091282ee247a111f4b7cce5b3ee5e73fc9a8c209.tar.gz
servo-091282ee247a111f4b7cce5b3ee5e73fc9a8c209.zip
Made block type pattern match less inclusive
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r--components/layout/construct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs
index 7d3a0b748b0..e8f9b8df81c 100644
--- a/components/layout/construct.rs
+++ b/components/layout/construct.rs
@@ -1470,7 +1470,7 @@ impl<'a> PostorderNodeMutTraversal for FlowConstructor<'a> {
// flow here - instead, let it match the inline case
// below.
(display::T::block, _, position::T::absolute) |
- (_, _, position::T::fixed) => {
+ (display::T::block, _, position::T::fixed) => {
let construction_result = self.build_flow_for_block(node, None);
self.set_flow_construction_result(node, construction_result)
}