Skip to content

Commit

Permalink
Replace a bunch of anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
domfarolino committed Jul 18, 2023
1 parent 70d9782 commit 4f839f6
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions spec.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2205,12 +2205,10 @@ of the following global objects:

1. Let |evaluationStatus| be the result of [$ScriptEvaluation$](result).

1. If |evaluationStatus| is an [=ECMAScript/abrupt completion=], jump to the step labeled <i><a
href=#evaluate-script-return>return</a></i>.
1. If |evaluationStatus| is an [=ECMAScript/abrupt completion=], jump to the step labeled test.

1. Let |F| be [$Get$](|global|, |functionName|). If that returns a [=ECMAScript/throw completion=],
set |finalCompletion| to |F| and jump to the step labeled <i><a
href=#evaluate-script-return>return</a></i>.
set |finalCompletion| to |F| and jump to the step labeled test.

1. Set |finalCompletion| be [=ECMAScript/Completion Record|Completion=]([$Call$](F, `undefined`,
|arguments|)).
Expand Down Expand Up @@ -2616,20 +2614,20 @@ The <dfn for=Navigator method>updateAdInterestGroups()</dfn> method steps are:
<dd>
1. If |value| is a {{double}}, set |ig|'s [=interest group/priority=]
to |value|.
1. Otherwise, jump to the step labeled <i><a href=#abort-update>Abort update</a></i>.
1. Otherwise, jump to the step labeled test.

<dt>"`enableBiddingSignalsPrioritization`"
<dd>
1. If |value| is a {{boolean}}, set |ig|'s
[=interest group/enable bidding signals prioritization=] to |value|.
1. Otherwise, jump to the step labeled <i><a href=#abort-update>Abort update</a></i>.
1. Otherwise, jump to the step labeled test.

<dt>"`priorityVector`"
<dd>
1. If |value| is null or an [=ordered map=] whose [=map/keys=] are [=strings=] and
whose [=map/values=] are {{double}}, set |ig|'s [=interest group/priority vector=] to
|value|.
1. Otherwise, jump to the step labeled <i><a href=#abort-update>Abort update</a></i>.
1. Otherwise, jump to the step labeled test.

<dt>"`prioritySignalsOverrides`"
<dd>
Expand All @@ -2638,13 +2636,13 @@ The <dfn for=Navigator method>updateAdInterestGroups()</dfn> method steps are:
1. [=map/For each=] |pvKey| → |pvValue| of |value|:
1. If |pvValue| is null, [=map/remove=] |ig|'s [=interest group/priority signals overrides=][|pvKey|].
1. Otherwise, [=map/set=] |ig|'s [=interest group/priority signals overrides=][|pvKey|] to |pvValue|.
1. Otherwise, jump to the step labeled <i><a href=#abort-update>Abort update</a></i>.
1. Otherwise, jump to the step labeled test.

<dt>"`executionMode`"
<dd>
1. If |value| is "`compatibility`" or "`group-by-origin`",
set |ig|'s [=interest group/execution mode=] to |value|.
1. Otherwise, jump to the step labeled <i><a href=#abort-update>Abort update</a></i>.
1. Otherwise, jump to the step labeled test.

<dt>"`biddingLogicURL`"
<dt>"`biddingWasmHelperURL`"
Expand Down Expand Up @@ -2673,7 +2671,7 @@ The <dfn for=Navigator method>updateAdInterestGroups()</dfn> method steps are:
</table>
1. Let |parsedURL| be the result of running the [=URL parser=] on |value|.
1. If |key| is not |groupMember|, [=iteration/continue=].
1. Jump to the step labeled <i><a href=#abort-update>Abort update</a></i>
1. Jump to the step labeled test.
if any of the following conditions hold:
* |parsedURL| is failure;
* |parsedURL|'s [=url/origin=] is not [=same origin=] with |ig|'s
Expand All @@ -2686,7 +2684,7 @@ The <dfn for=Navigator method>updateAdInterestGroups()</dfn> method steps are:
<dd>
1. If |value| is a [=list=] of [=strings=],
set |ig|'s [=interest group/trusted bidding signals keys=] to |value|.
1. Otherwise, jump to the step labeled <i><a href=#abort-update>Abort update</a></i>.
1. Otherwise, jump to the step labeled test.

<dt>"`ads`"
<dt>"`adComponents`"
Expand All @@ -2705,12 +2703,12 @@ The <dfn for=Navigator method>updateAdInterestGroups()</dfn> method steps are:
</table>
1. If |key| is not |groupMember|, [=iteration/continue=].
1. If |value| is not a [=list=] of {{AuctionAd}}, jump to the step
labeled <i><a href=#abort-update>Abort update</a></i>.
labeled test.
1. [=list/For each=] |ad| of |value|:
1. Let |igAd| be a new [=interest group ad=].
1. Let |renderURL| be the result of running the [=URL parser=] on
|ad|["{{AuctionAd/renderURL}}"].
1. Jump to the step labeled <i><a href=#abort-update>Abort update</a></i>
1. Jump to the step labeled test.
if any of the following conditions hold:
* |renderURL| is failure;
* |renderURL| [=url/scheme=] is not "`https`";
Expand All @@ -2720,7 +2718,7 @@ The <dfn for=Navigator method>updateAdInterestGroups()</dfn> method steps are:
|igAd|'s [=interest group ad/metadata=] be the result of
[=serializing a JavaScript value to a JSON string=], given |ad|["{{AuctionAd/metadata}}"].
If this [=exception/throws=], jump to the step
labeled <i><a href=#abort-update>Abort update</a></i>.
labeled test.
1. [=list/Append=] |igAd| to |ig|'s |interestGroupField|.

</dl>
Expand Down

0 comments on commit 4f839f6

Please sign in to comment.