From dfc199ee687d3683e50b804c04df2981f4a317b7 Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Thu, 7 Dec 2023 15:55:50 +0000 Subject: [PATCH] Bug 1867347 [wpt PR 43425] - [FLEDGE]: Add trustedBiddingSignalsSlotSizeMode to InterestGroups., a=testonly Automatic update from web-platform-tests [FLEDGE]: Add trustedBiddingSignalsSlotSizeMode to InterestGroups. This CL adds the trustedBiddingSignalsSlotSizeMode to the Protected Audience API's InterestGroups, and saves them to the database. The new field currently doesn't have any actual effect. See https://github.com/WICG/turtledove/pull/928 for API description. Bug: 1506238 Change-Id: I7133436c813076274822db522ece1a668dba51e7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5063314 Commit-Queue: Matt Menke Reviewed-by: Russ Hamilton Reviewed-by: Ken Buchanan Cr-Commit-Position: refs/heads/main{#1231648} -- wpt-commits: ba3a0007fbf8711ffeb81df6054327bdc2cc1075 wpt-pr: 43425 UltraBlame original commit: 6169934ea44403b59b470bbd95bd8077165f3ad9 --- .../tentative/join-leave-ad-interest-group.https.window.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/web-platform/tests/fledge/tentative/join-leave-ad-interest-group.https.window.js b/testing/web-platform/tests/fledge/tentative/join-leave-ad-interest-group.https.window.js index dd6824d36555b..529c3e4b04a4e 100644 --- a/testing/web-platform/tests/fledge/tentative/join-leave-ad-interest-group.https.window.js +++ b/testing/web-platform/tests/fledge/tentative/join-leave-ad-interest-group.https.window.js @@ -481,14 +481,14 @@ const SIMPLE_JOIN_LEAVE_TEST_CASES = [ { expectJoinSucces: true, expectLeaveSucces: true, interestGroup: { ...BASE_INTEREST_GROUP, - name: 'a'.repeat(1048524) + name: 'a'.repeat(1048520) }, testCaseName: "Largest possible interest group dictionary", }, { expectJoinSucces: false, expectLeaveSucces: true, interestGroup: { ...BASE_INTEREST_GROUP, - name: 'a'.repeat(1048525) + name: 'a'.repeat(1048521) }, testCaseName: "Oversized interest group dictionary", },