1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:47:34 +00:00

LibWeb: Delete discard() in Document and BrowsingContext

Those are not used anymore after moving to navigables.
This commit is contained in:
Aliaksandr Kalenik 2023-09-04 16:47:13 +02:00 committed by Andreas Kling
parent 180c3e2fef
commit cd75b1de3d
4 changed files with 0 additions and 64 deletions

View file

@ -208,8 +208,6 @@ public:
VisibilityState system_visibility_state() const;
void set_system_visibility_state(VisibilityState);
// https://html.spec.whatwg.org/multipage/window-object.html#a-browsing-context-is-discarded
void discard();
bool has_been_discarded() const { return m_has_been_discarded; }
Optional<AK::URL> const& creator_url() const { return m_creator_url; }