summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/Box.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-03-22 18:34:02 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-22 19:26:51 +0100
commit74927fd21889f32dd6623db20ce03b883def2891 (patch)
tree63081ed50428fe0ee5d36e01ddd2b90602b5af25 /Userland/Libraries/LibWeb/Layout/Box.h
parent150e6a59c0d084071e14ad5a445e6821d9c512e2 (diff)
downloadserenity-74927fd21889f32dd6623db20ce03b883def2891.zip
LibWeb: Move Layout::Box::is_out_of_flow() to Layout::Node
I want to use this function in inline layout, where we're not just dealing with boxes.
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/Box.h')
-rw-r--r--Userland/Libraries/LibWeb/Layout/Box.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Box.h b/Userland/Libraries/LibWeb/Layout/Box.h
index 2f3c45b2ae..a064d909c8 100644
--- a/Userland/Libraries/LibWeb/Layout/Box.h
+++ b/Userland/Libraries/LibWeb/Layout/Box.h
@@ -21,8 +21,6 @@ class Box : public NodeWithStyleAndBoxModelMetrics {
public:
Painting::PaintableBox const* paint_box() const;
- bool is_out_of_flow(FormattingContext const&) const;
-
virtual void set_needs_display() override;
bool is_body() const;