1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 07:24:59 +00:00

LibHTML: Add basic <!DOCTYPE> parsing and a DocumentType class

Plus, Document::fixup() will now make sure that the document always
starts with a doctype node, followed by an <html> element.
This commit is contained in:
Andreas Kling 2019-10-09 20:17:01 +02:00
parent 850955053f
commit fc53867937
9 changed files with 84 additions and 6 deletions

View file

@ -97,3 +97,8 @@ const Element* Node::previous_element_sibling() const
}
return nullptr;
}
RefPtr<LayoutNode> Node::create_layout_node(const StyleResolver&, const StyleProperties*) const
{
return nullptr;
}