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

LibWeb: Remove unused BrowsingContext::container_document()

This commit is contained in:
Aliaksandr Kalenik 2023-09-04 15:58:05 +02:00 committed by Andreas Kling
parent 57e53fa844
commit bf785fee34
2 changed files with 0 additions and 17 deletions

View file

@ -181,9 +181,6 @@ public:
void set_frame_nesting_levels(HashMap<AK::URL, size_t> frame_nesting_levels) { m_frame_nesting_levels = move(frame_nesting_levels); }
HashMap<AK::URL, size_t> const& frame_nesting_levels() const { return m_frame_nesting_levels; }
DOM::Document* container_document();
DOM::Document const* container_document() const;
bool has_a_rendering_opportunity() const;
JS::GCPtr<DOM::Node> currently_focused_area();