You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What does "it asynchronously runs" mean compared to "it runs"?
What object does "this" refer to here? I suspect we mean "status"?
(As an optimization?) It seems to reference associated Document and make a determination about fully active on a background thread. Isn't that racy (e.g. with navigation)?
By the time the queued task runs, the document may no longer be "fully active", and we fire the event on a non-fully active document, which seems wrong.
It would seem more correct to move these checks into the queued task.
The text was updated successfully, but these errors were encountered:
For those interested, I ran into this in w3c/mediacapture-main#862 (comment) while trying to determine whether the change event fires before or after the revocation steps (I think it's before).
The spec says:
Some questions:
By the time the queued task runs, the document may no longer be "fully active", and we fire the event on a non-fully active document, which seems wrong.
It would seem more correct to move these checks into the queued task.
The text was updated successfully, but these errors were encountered: