mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
15 lines
348 B
C
15 lines
348 B
C
|
#pragma once
|
||
|
|
||
|
#include <LibHTML/Layout/LayoutBox.h>
|
||
|
|
||
|
class LayoutTableRow final : public LayoutBox {
|
||
|
public:
|
||
|
LayoutTableRow(const Element&, NonnullRefPtr<StyleProperties>);
|
||
|
virtual ~LayoutTableRow() override;
|
||
|
|
||
|
virtual void layout() override;
|
||
|
|
||
|
private:
|
||
|
virtual const char* class_name() const override { return "LayoutTableRow"; }
|
||
|
};
|