diff --git a/spec.bs b/spec.bs index c419417ff..bff904be0 100644 --- a/spec.bs +++ b/spec.bs @@ -3195,6 +3195,21 @@ The getInterestGroupAdAuctionData(|configIDL|) m 1. Let |p| be [=a new promise=]. 1. Let |queue| be the result of [=starting a new parallel queue=]. 1. [=parallel queue/enqueue steps|Enqueue the following steps=] to |queue|: + 1. If |config|'s [=auction data config/coordinator=] is not one of the [=implementation-defined=] + coordinators supported by this [=user agent=]: + 1. [=Queue a global task=] on the [=DOM manipulation task source=], given |global|, to + [=reject=] |p| with a {{TypeError}}. + 1. Abort these steps. + 1. Let |keyInfo| be the result of [=looking up the server encryption key=] + with |config|'s [=auction data config/seller=] and |config|'s + [=auction data config/coordinator=]. + 1. If |keyInfo| is failure: + 1. [=Queue a global task=] on the [=DOM manipulation task source=], given |global|, to + [=reject=] |p| with a {{TypeError}}. + 1. Abort these steps. + 1. Let (|key|, |keyId|) be |keyInfo|. + 1. Set |config|'s [=auction data config/encryption key=] to |key|. + 1. Set |config|'s [=auction data config/encryption key id=] to |keyId|. 1. Let |igMap| be a new [=map=] whose [=map/keys=] are [=origins=] and [=map/values=] are [=lists=]. 1. Let |startTime| be a [=moment=] equal to the [=current wall time=]. 1. [=list/For each=] |ig| of the [=user agent=]'s [=interest group set=]: @@ -3309,6 +3324,18 @@ The getInterestGroupAdAuctionData(|configIDL|) m 1. Return |configs|. +