Skip to content

Commit 688d217

Browse files
committed
Bug 1950141 [wpt PR 50741] - Add WPT for getInterestGroupAdAuctionData with no sellers, a=testonly
Automatic update from web-platform-tests Add WPT for getInterestGroupAdAuctionData with no sellers Change-Id: If1522e8c83342709e3b9beec23eb5828389228e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6271265 Reviewed-by: Qingxin Wu <qingxinwugoogle.com> Commit-Queue: Russ Hamilton <behamiltongoogle.com> Auto-Submit: Russ Hamilton <behamiltongoogle.com> Cr-Commit-Position: refs/heads/main{#1423904} -- wpt-commits: f44234f2cb4a12d664c291ce1daca0d984dcb17e wpt-pr: 50741 UltraBlame original commit: 791508b1336fca821421f3ebb7d605866fbfaad4
1 parent 778fee4 commit 688d217

File tree

1 file changed

+77
-7
lines changed

1 file changed

+77
-7
lines changed

testing/web-platform/tests/fledge/tentative/get-interest-group-auction-data.https.window.js

Lines changed: 77 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6028,13 +6028,6 @@ navigator
60286028
getInterestGroupAdAuctionData
60296029
(
60306030
{
6031-
coordinatorOrigin
6032-
:
6033-
window
6034-
.
6035-
location
6036-
.
6037-
origin
60386031
sellers
60396032
:
60406033
[
@@ -6097,3 +6090,80 @@ field
60976090
'
60986091
)
60996092
;
6093+
subsetTest
6094+
(
6095+
promise_test
6096+
async
6097+
test
6098+
=
6099+
>
6100+
{
6101+
const
6102+
uuid
6103+
=
6104+
generateUuid
6105+
(
6106+
test
6107+
)
6108+
;
6109+
const
6110+
igConfig
6111+
=
6112+
makeTemplateIgConfig
6113+
(
6114+
uuid
6115+
)
6116+
;
6117+
await
6118+
joinInterestGroup
6119+
(
6120+
test
6121+
uuid
6122+
igConfig
6123+
)
6124+
;
6125+
const
6126+
result
6127+
=
6128+
await
6129+
navigator
6130+
.
6131+
getInterestGroupAdAuctionData
6132+
(
6133+
{
6134+
sellers
6135+
:
6136+
[
6137+
]
6138+
}
6139+
)
6140+
;
6141+
assert_equals
6142+
(
6143+
result
6144+
.
6145+
requestId
6146+
"
6147+
"
6148+
)
6149+
;
6150+
assert_array_equals
6151+
(
6152+
result
6153+
.
6154+
requests
6155+
[
6156+
]
6157+
)
6158+
;
6159+
}
6160+
'
6161+
getInterestGroupAdAuctionData
6162+
(
6163+
)
6164+
with
6165+
no
6166+
sellers
6167+
'
6168+
)
6169+
;

0 commit comments

Comments
 (0)