LibWeb: Rename "frame" to "browsing_context" in various places

We renamed the Frame class to BrowsingContext a while back, but forgot
to update some variable names.
This commit is contained in:
Andreas Kling 2022-02-06 14:41:29 +01:00
commit 41fe02e012
Notes: sideshowbarker 2024-07-17 19:42:59 +09:00
7 changed files with 82 additions and 82 deletions

View file

@ -41,7 +41,7 @@ private:
Layout::InitialContainingBlock* layout_root();
const Layout::InitialContainingBlock* layout_root() const;
HTML::BrowsingContext& m_frame;
HTML::BrowsingContext& m_browsing_context;
bool m_in_mouse_selection { false };