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
Notes: sideshowbarker 2024-07-17 03:35:24 +09:00

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
// traversable navigable traversable has changed to newState, it must run the following steps:
// 1. Let navigables be the inclusive descendant navigables of traversable.
// FIXME: Spec bug: https://github.com/whatwg/html/issues/9758
VERIFY(active_document());
// 1. Let navigables be the inclusive descendant navigables of traversable's active document.
auto navigables = active_document()->inclusive_descendant_navigables();
// 2. For each navigable of navigables: