tor-browser

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

commit b1dee6f3c6997acf60b7c1e3ab8761a4a31a7622
parent 912c71f02f6a18022c723cc16c99393ec75f3706
Author: Mike West <mkwst@chromium.org>
Date:   Fri, 19 Dec 2025 09:15:46 +0000

Bug 2004891 [wpt PR 56591] - [Origin API] Fix idlharness test., a=testonly

Automatic update from web-platform-tests
Origin API: fix idlharness test

--

wpt-commits: dbba8347526d095339195a240419308b2851db3e
wpt-pr: 56591

Diffstat:
Dtesting/web-platform/tests/html/browsers/origin/api/idlharness.any.js | 10----------
Mtesting/web-platform/tests/html/dom/idlharness.any.js | 1+
2 files changed, 1 insertion(+), 10 deletions(-)

diff --git a/testing/web-platform/tests/html/browsers/origin/api/idlharness.any.js b/testing/web-platform/tests/html/browsers/origin/api/idlharness.any.js @@ -1,10 +0,0 @@ -// META: script=/resources/WebIDLParser.js -// META: script=/resources/idlharness.js - -idl_test( - ['origin'], [], (idl_array) => { - idl_array.add_objects({ - Origin: ["new Origin()"], - }); - }); - diff --git a/testing/web-platform/tests/html/dom/idlharness.any.js b/testing/web-platform/tests/html/dom/idlharness.any.js @@ -20,6 +20,7 @@ idl_test( Worker: [], MessageEvent: ['new MessageEvent("message", { data: 5 })'], DedicatedWorkerGlobalScope: ['self'], + Origin: ['new Origin()'], }); } );