tor-browser

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

commit cd59db4ebec71460fca7772dcf399f709605ab23
parent 3356f2339240c2cf76b1f46f23082c618af98275
Author: Cheng Xu <git@xuc.me>
Date:   Wed, 15 Oct 2025 08:24:05 +0000

Bug 1993641 [wpt PR 55341] - Fix invalid js code, a=testonly

Automatic update from web-platform-tests
Fix invalid js code

Previously, there is a `from` keyword missing.

--

wpt-commits: 18302024e0cf70f90bda11c3b584ef2e3dd287e0
wpt-pr: 55341

Diffstat:
Mtesting/web-platform/tests/html/semantics/scripting-1/the-script-element/json-module/integrity-mismatches.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/json-module/integrity-mismatches.js b/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/json-module/integrity-mismatches.js @@ -1,2 +1,2 @@ -import json "./data.json" with { type: "json" }; +import json from "./data.json" with { type: "json" }; window.mismatchesLog.push(`integrity-mismatches,json:${json.answer}`);