Skip to content

Commit 1263ed5

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 4a04ac6 commit 1263ed5

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
@@ -6782,13 +6782,6 @@ navigator
67826782
getInterestGroupAdAuctionData
67836783
(
67846784
{
6785-
coordinatorOrigin
6786-
:
6787-
window
6788-
.
6789-
location
6790-
.
6791-
origin
67926785
sellers
67936786
:
67946787
[
@@ -6851,3 +6844,80 @@ field
68516844
'
68526845
)
68536846
;
6847+
subsetTest
6848+
(
6849+
promise_test
6850+
async
6851+
test
6852+
=
6853+
>
6854+
{
6855+
const
6856+
uuid
6857+
=
6858+
generateUuid
6859+
(
6860+
test
6861+
)
6862+
;
6863+
const
6864+
igConfig
6865+
=
6866+
makeTemplateIgConfig
6867+
(
6868+
uuid
6869+
)
6870+
;
6871+
await
6872+
joinInterestGroup
6873+
(
6874+
test
6875+
uuid
6876+
igConfig
6877+
)
6878+
;
6879+
const
6880+
result
6881+
=
6882+
await
6883+
navigator
6884+
.
6885+
getInterestGroupAdAuctionData
6886+
(
6887+
{
6888+
sellers
6889+
:
6890+
[
6891+
]
6892+
}
6893+
)
6894+
;
6895+
assert_equals
6896+
(
6897+
result
6898+
.
6899+
requestId
6900+
"
6901+
"
6902+
)
6903+
;
6904+
assert_array_equals
6905+
(
6906+
result
6907+
.
6908+
requests
6909+
[
6910+
]
6911+
)
6912+
;
6913+
}
6914+
'
6915+
getInterestGroupAdAuctionData
6916+
(
6917+
)
6918+
with
6919+
no
6920+
sellers
6921+
'
6922+
)
6923+
;

0 commit comments

Comments
 (0)