tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit eada6a418e9d65674c66edc04e2dad98c11cdc22
parent 7ccfc70ec7e8edc1db3a7c3a129550169717b547
Author: Marcos Cáceres <caceres_m@apple.com>
Date:   Mon,  8 Dec 2025 12:28:01 +0000

Bug 2004344 [wpt PR 56520] - Digital Credentials: fix using signature for helper functions, a=testonly

Automatic update from web-platform-tests
Digital Credentials: fix using signature for helper functions (#56520)

--

wpt-commits: ae3abfd469eef652d8fa4667819b2bf6ce5ff69c
wpt-pr: 56520

Diffstat:
Mtesting/web-platform/tests/digital-credentials/permissions-policy/create.html | 2+-
Mtesting/web-platform/tests/digital-credentials/permissions-policy/get.html | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/web-platform/tests/digital-credentials/permissions-policy/create.html b/testing/web-platform/tests/digital-credentials/permissions-policy/create.html @@ -11,7 +11,7 @@ } let enabled = undefined; try { - await navigator.credentials.create(makeCreateOptions([])); + await navigator.credentials.create(makeCreateOptions({protocol: []})); } catch (e) { switch (e.name) { case "NotAllowedError": diff --git a/testing/web-platform/tests/digital-credentials/permissions-policy/get.html b/testing/web-platform/tests/digital-credentials/permissions-policy/get.html @@ -11,7 +11,7 @@ } let enabled = undefined; try { - await navigator.credentials.get(makeGetOptions([])); + await navigator.credentials.get(makeGetOptions({protocol: []})); } catch (e) { switch (e.name) { case "NotAllowedError":