LibWeb: Implement BarProp properties for Window

This commit is contained in:
Totto16 2025-03-04 22:51:08 +01:00 committed by Tim Ledbetter
parent ad634897b8
commit b66e7ac1ba
Notes: github-actions[bot] 2025-03-29 02:36:35 +00:00
13 changed files with 201 additions and 0 deletions

View file

@ -77,6 +77,7 @@ public:
void set_opener_browsing_context(GC::Ptr<BrowsingContext> browsing_context) { m_opener_browsing_context = browsing_context; }
void set_is_popup(TokenizedFeature::Popup is_popup) { m_is_popup = is_popup; }
[[nodiscard]] TokenizedFeature::Popup is_popup() const { return m_is_popup; }
SandboxingFlagSet popup_sandboxing_flag_set() const { return m_popup_sandboxing_flag_set; }
void set_popup_sandboxing_flag_set(SandboxingFlagSet value) { m_popup_sandboxing_flag_set = value; }