mirror of
https://github.com/RGBCube/serenity
synced 2026-01-18 01:00:59 +00:00
Each layout node is now constructed with an owning back-pointer to the style tree node that originated it.
15 lines
300 B
C++
15 lines
300 B
C++
#pragma once
|
|
|
|
#include <LibHTML/Layout/LayoutNode.h>
|
|
|
|
class Element;
|
|
|
|
class LayoutInline : public LayoutNode {
|
|
public:
|
|
LayoutInline(const Node&, const StyledNode&);
|
|
virtual ~LayoutInline() override;
|
|
|
|
virtual const char* class_name() const override { return "LayoutInline"; }
|
|
|
|
private:
|
|
};
|