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

LibWeb: Remove FIXME about spec bug in page visibility

Because the spec bug got fixed \o/
This commit is contained in:
Andreas Kling 2023-09-27 09:29:47 +02:00
parent c42e8ddc48
commit 759ad905de

View file

@ -657,9 +657,7 @@ void TraversableNavigable::set_system_visibility_state(VisibilityState visibilit
// When a user-agent determines that the system visibility state for // When a user-agent determines that the system visibility state for
// traversable navigable traversable has changed to newState, it must run the following steps: // traversable navigable traversable has changed to newState, it must run the following steps:
// 1. Let navigables be the inclusive descendant navigables of traversable. // 1. Let navigables be the inclusive descendant navigables of traversable's active document.
// FIXME: Spec bug: https://github.com/whatwg/html/issues/9758
VERIFY(active_document());
auto navigables = active_document()->inclusive_descendant_navigables(); auto navigables = active_document()->inclusive_descendant_navigables();
// 2. For each navigable of navigables: // 2. For each navigable of navigables: