From 3bf5728a37a3a031246f9bf4f6df8647416e0253 Mon Sep 17 00:00:00 2001 From: Gregory Terzian Date: Wed, 19 Feb 2020 23:49:26 +0800 Subject: [PATCH] broadcast-channel: move destination close flag check to step 10. --- source | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source b/source index bd7a11c07fb..db5519c8b4b 100644 --- a/source +++ b/source @@ -96201,9 +96201,6 @@ interface BroadcastChannel : EventTarget {
  • Their channel name is a case-sensitive match for sourceChannel.

  • - -
  • Their closed flag is - false.

  • @@ -96220,6 +96217,9 @@ interface BroadcastChannel : EventTarget { destinations, queue a task that runs the following steps:

      +
    1. If destination's closed + flag is true, then return.

    2. +
    3. Let targetRealm be destination's relevant Realm.