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

LibHTML: Move layout tree building to a separate function.

This commit is contained in:
Andreas Kling 2019-07-08 07:24:15 +02:00
parent 9526b0e13a
commit 0ccad4208f
2 changed files with 12 additions and 7 deletions

View file

@ -17,6 +17,7 @@ public:
private:
RefPtr<StyledNode> generate_style_tree();
RefPtr<LayoutNode> generate_layout_tree(const StyledNode&);
RefPtr<Document> m_document;
Size m_size;