23 lines
645 B
C++
23 lines
645 B
C++
#include <LibHTML/DOM/Element.h>
|
|
#include <LibHTML/Layout/LayoutNode.h>
|
|
|
|
class LayoutReplaced : public LayoutNodeWithStyle {
|
|
public:
|
|
LayoutReplaced(const Element&, NonnullRefPtr<StyleProperties>);
|
|
virtual ~LayoutReplaced() override;
|
|
|
|
const Element& node() const { return to<Element>(*LayoutNode::node()); }
|
|
|
|
virtual bool is_replaced() const final { return true; }
|
|
|
|
private:
|
|
virtual const char* class_name() const override { return "LayoutReplaced"; }
|
|
|
|
virtual void split_into_lines(LayoutBlock& container) override;
|
|
};
|
|
|
|
template<>
|
|
inline bool is<LayoutReplaced>(const LayoutNode& node)
|
|
{
|
|
return node.is_replaced();
|
|
}
|