diff options
author | Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 2023-01-16 13:51:49 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-17 10:18:33 +0100 |
commit | 45e85d20b64862df119f643f24e2d500c76c58f3 (patch) | |
tree | 630cd986fadc738e83c5e604b18913a1561f45f2 /Userland/Libraries/LibWeb/Layout/Node.h | |
parent | 276a77f02dc5302fd496da034a6860b8753c7b4b (diff) | |
download | serenity-45e85d20b64862df119f643f24e2d500c76c58f3.zip |
LibWeb: Output display type inline-table in layout dump
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/Node.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/Node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Node.h b/Userland/Libraries/LibWeb/Layout/Node.h index 109ab80587..7a9a391b38 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.h +++ b/Userland/Libraries/LibWeb/Layout/Node.h @@ -76,6 +76,7 @@ public: bool is_inline() const; bool is_inline_block() const; + bool is_inline_table() const; bool is_out_of_flow(FormattingContext const&) const; |