mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:27:35 +00:00
LibHTML: Remove unused LayoutInline::layout()
Inline layout now happens in the containing block, specifically in LayoutBlock::layout_inline_children().
This commit is contained in:
parent
f908a2718a
commit
d68c1effcb
2 changed files with 0 additions and 30 deletions
|
@ -2,7 +2,6 @@
|
|||
|
||||
#include <LibHTML/Layout/LayoutNode.h>
|
||||
|
||||
class Element;
|
||||
class LayoutBlock;
|
||||
|
||||
class LayoutInline : public LayoutNode {
|
||||
|
@ -13,8 +12,6 @@ public:
|
|||
virtual const char* class_name() const override { return "LayoutInline"; }
|
||||
virtual bool is_inline() const override { return true; }
|
||||
|
||||
virtual void layout() override;
|
||||
|
||||
virtual void split_into_lines(LayoutBlock& container);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue