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

LibWeb: Change "popup"-related storage types to named enums

This commit is contained in:
Timothy Flynn 2023-03-21 07:22:10 -04:00 committed by Andreas Kling
parent bff109ee50
commit 2a410f8985
4 changed files with 32 additions and 53 deletions

View file

@ -317,9 +317,6 @@ private:
// https://html.spec.whatwg.org/multipage/browsers.html#tlbc-group
JS::GCPtr<BrowsingContextGroup> m_group;
// https://html.spec.whatwg.org/multipage/browsers.html#is-popup
bool m_is_popup { false };
// https://html.spec.whatwg.org/multipage/interaction.html#system-visibility-state
VisibilityState m_system_visibility_state { VisibilityState::Hidden };