mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 17:27:34 +00:00
LibWeb: Rename Layout::InitialContainingBlock to Layout::Viewport
The name "initial containing block" was wrong for this, as it doesn't correspond to the HTML element, and that's specifically what it's supposed to do! :^)
This commit is contained in:
parent
60f699338d
commit
7e76a51cb0
66 changed files with 121 additions and 128 deletions
|
@ -62,8 +62,8 @@ public:
|
|||
HTML::BrowsingContext const& browsing_context() const;
|
||||
HTML::BrowsingContext& browsing_context();
|
||||
|
||||
InitialContainingBlock const& root() const;
|
||||
InitialContainingBlock& root();
|
||||
Viewport const& root() const;
|
||||
Viewport& root();
|
||||
|
||||
bool is_root_element() const;
|
||||
|
||||
|
@ -86,7 +86,7 @@ public:
|
|||
virtual bool is_block_container() const { return false; }
|
||||
virtual bool is_break_node() const { return false; }
|
||||
virtual bool is_text_node() const { return false; }
|
||||
virtual bool is_initial_containing_block_box() const { return false; }
|
||||
virtual bool is_viewport() const { return false; }
|
||||
virtual bool is_svg_box() const { return false; }
|
||||
virtual bool is_svg_geometry_box() const { return false; }
|
||||
virtual bool is_label() const { return false; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue