1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

LibHTML: LayoutInline can only be constructed with an Element

Since LayoutText no longer inherits from LayoutInline, all of the
DOM nodes with a LayoutInline are going to be Elements.
This commit is contained in:
Andreas Kling 2019-10-06 11:14:13 +02:00
parent 1b7aa00768
commit c8e5039418
2 changed files with 4 additions and 3 deletions

View file

@ -1,8 +1,9 @@
#include <LibHTML/DOM/Element.h>
#include <LibHTML/Layout/LayoutBlock.h>
#include <LibHTML/Layout/LayoutInline.h>
LayoutInline::LayoutInline(const Node& node, RefPtr<StyleProperties> style_properties)
: LayoutNode(&node, move(style_properties))
LayoutInline::LayoutInline(const Element& element, NonnullRefPtr<StyleProperties> style)
: LayoutNode(&element, move(style))
{
set_inline(true);
}