diff options
author | Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 2023-01-16 13:13:31 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-17 10:18:33 +0100 |
commit | 276a77f02dc5302fd496da034a6860b8753c7b4b (patch) | |
tree | 0a9da0de99d2c67333bf33a05662e49c6497647f /Userland/Libraries/LibWeb/Layout/TableRowBox.h | |
parent | 87b18f9304370149f3c3b1c12cd851f69d81e0d4 (diff) | |
download | serenity-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.h | 2 |
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 }; } }; } |