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

LibWeb: Rename InitialContainingBlockBox => InitialContainingBlock

The "Box" suffix added nothing here.
This commit is contained in:
Andreas Kling 2021-09-08 11:27:46 +02:00
parent e90ccf6a20
commit e91edcaa28
31 changed files with 71 additions and 71 deletions

View file

@ -147,8 +147,8 @@ public:
virtual bool is_child_allowed(const Node&) const override;
const Layout::InitialContainingBlockBox* layout_node() const;
Layout::InitialContainingBlockBox* layout_node();
const Layout::InitialContainingBlock* layout_node() const;
Layout::InitialContainingBlock* layout_node();
void schedule_style_update();
void schedule_forced_layout();
@ -309,7 +309,7 @@ private:
RefPtr<Window> m_window;
RefPtr<Layout::InitialContainingBlockBox> m_layout_root;
RefPtr<Layout::InitialContainingBlock> m_layout_root;
Optional<Color> m_link_color;
Optional<Color> m_active_link_color;