LibHTML: Implement basic block height computation

..and add vertical box properties to the layout tree dumps.
This commit is contained in:
Andreas Kling 2019-08-18 08:37:53 +02:00
commit fc43cf929d
Notes: sideshowbarker 2024-07-19 12:37:24 +09:00
4 changed files with 72 additions and 18 deletions

View file

@ -19,5 +19,6 @@ private:
virtual bool is_block() const override { return true; }
void compute_width();
void compute_position();
void compute_height();
};