summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/TableRowBox.h
diff options
context:
space:
mode:
authorAliaksandr Kalenik <kalenik.aliaksandr@gmail.com>2023-01-16 13:13:31 +0100
committerAndreas Kling <kling@serenityos.org>2023-01-17 10:18:33 +0100
commit276a77f02dc5302fd496da034a6860b8753c7b4b (patch)
tree0a9da0de99d2c67333bf33a05662e49c6497647f /Userland/Libraries/LibWeb/Layout/TableRowBox.h
parent87b18f9304370149f3c3b1c12cd851f69d81e0d4 (diff)
downloadserenity-276a77f02dc5302fd496da034a6860b8753c7b4b.zip
LibWeb: Support display inline-table
Add support for inline-table display type with corrresponding changes in tree builder to generate inline anonymous wrapper around inline table boxes.
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/TableRowBox.h')
-rw-r--r--Userland/Libraries/LibWeb/Layout/TableRowBox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/TableRowBox.h b/Userland/Libraries/LibWeb/Layout/TableRowBox.h
index 26c7f6de7d..015a9c58fe 100644
--- a/Userland/Libraries/LibWeb/Layout/TableRowBox.h
+++ b/Userland/Libraries/LibWeb/Layout/TableRowBox.h
@@ -18,7 +18,7 @@ public:
TableRowBox(DOM::Document&, DOM::Element*, CSS::ComputedValues);
virtual ~TableRowBox() override;
- static CSS::Display static_display() { return CSS::Display { CSS::Display::Internal::TableRow }; }
+ static CSS::Display static_display(bool) { return CSS::Display { CSS::Display::Internal::TableRow }; }
};
}