1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

LibHTML: LayoutDocument should call LayoutBlock parent constructor.

This commit is contained in:
Andreas Kling 2019-07-01 08:01:30 +02:00
parent 7a9d5e2a69
commit 9ca453d8c9

View file

@ -1,7 +1,7 @@
#include <LibHTML/Layout/LayoutDocument.h>
LayoutDocument::LayoutDocument(const Document& document)
: LayoutNode(&document)
: LayoutBlock(document)
{
}