mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Made block type pattern match less inclusive
This commit is contained in:
parent
a6e2c138db
commit
091282ee24
4 changed files with 63 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue