1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

LibWeb: Move has_a_rendering_opportunity() to Navigable

This commit is contained in:
Andreas Kling 2023-09-20 08:09:59 +02:00
parent a02d42dea2
commit 93e4a0de16
5 changed files with 24 additions and 14 deletions

View file

@ -151,6 +151,9 @@ public:
void set_is_popup(TokenizedFeature::Popup is_popup) { m_is_popup = is_popup; }
// https://html.spec.whatwg.org/#rendering-opportunity
[[nodiscard]] bool has_a_rendering_opportunity() const;
protected:
Navigable();