mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
21 lines
373 B
C++
21 lines
373 B
C++
![]() |
#include <LibHTML/Layout/LayoutImage.h>
|
||
|
|
||
|
LayoutImage::LayoutImage(const HTMLImageElement& element, NonnullRefPtr<StyleProperties> style)
|
||
|
: LayoutReplaced(element, move(style))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
LayoutImage::~LayoutImage()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void LayoutImage::layout()
|
||
|
{
|
||
|
LayoutReplaced::layout();
|
||
|
}
|
||
|
|
||
|
void LayoutImage::render(RenderingContext& context)
|
||
|
{
|
||
|
LayoutReplaced::render(context);
|
||
|
}
|