#include LayoutImage::LayoutImage(const HTMLImageElement& element, NonnullRefPtr style) : LayoutReplaced(element, move(style)) { } LayoutImage::~LayoutImage() { } void LayoutImage::layout() { LayoutReplaced::layout(); } void LayoutImage::render(RenderingContext& context) { LayoutReplaced::render(context); }