diff --git a/Userland/Applications/Browser/InspectorWidget.cpp b/Userland/Applications/Browser/InspectorWidget.cpp index bcd1abc7b0..bb7937fb37 100644 --- a/Userland/Applications/Browser/InspectorWidget.cpp +++ b/Userland/Applications/Browser/InspectorWidget.cpp @@ -92,15 +92,15 @@ InspectorWidget::InspectorWidget() auto& bottom_tab_widget = splitter.add(); - auto& style_table_container = bottom_tab_widget.add_tab("Styles"); - style_table_container.set_layout(); - style_table_container.layout()->set_margins({ 4, 4, 4, 4 }); - m_style_table_view = style_table_container.add(); - auto& computed_style_table_container = bottom_tab_widget.add_tab("Computed"); computed_style_table_container.set_layout(); computed_style_table_container.layout()->set_margins({ 4, 4, 4, 4 }); - m_computed_style_table_view = computed_style_table_container.add(); + m_style_table_view = computed_style_table_container.add(); + + auto& resolved_style_table_container = bottom_tab_widget.add_tab("Resolved"); + resolved_style_table_container.set_layout(); + resolved_style_table_container.layout()->set_margins({ 4, 4, 4, 4 }); + m_computed_style_table_view = resolved_style_table_container.add(); auto& custom_properties_table_container = bottom_tab_widget.add_tab("Variables"); custom_properties_table_container.set_layout();