|
@@ -75,12 +75,12 @@ void BlockFormattingContext::run(AvailableSpace const& available_space)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (is<FieldSetBox>(root())) {
|
|
|
- if (root().children_are_inline())
|
|
|
- layout_inline_children(root(), available_space);
|
|
|
- else
|
|
|
- layout_block_level_children(root(), available_space);
|
|
|
+ if (root().children_are_inline())
|
|
|
+ layout_inline_children(root(), available_space);
|
|
|
+ else
|
|
|
+ layout_block_level_children(root(), available_space);
|
|
|
|
|
|
+ if (is<FieldSetBox>(root())) {
|
|
|
auto const& fieldset_box = as<FieldSetBox>(root());
|
|
|
if (!(fieldset_box.has_rendered_legend())) {
|
|
|
return;
|
|
@@ -107,11 +107,6 @@ void BlockFormattingContext::run(AvailableSpace const& available_space)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (root().children_are_inline())
|
|
|
- layout_inline_children(root(), available_space);
|
|
|
- else
|
|
|
- layout_block_level_children(root(), available_space);
|
|
|
-
|
|
|
|
|
|
if (m_margin_state.current_collapsed_margin() != 0) {
|
|
|
for (auto* child_box = root().last_child_of_type<Box>(); child_box; child_box = child_box->previous_sibling_of_type<Box>()) {
|