tor-browser

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

commit c2db92a339089aa1523fddfb9cb42e7eb72a2295
parent ffda93bb616eb68ae97ba9f19d0de68e5d5d389c
Author: Kurt Catti-Schmidt <kschmi@microsoft.com>
Date:   Fri, 31 Oct 2025 08:53:27 +0000

Bug 1996610 [wpt PR 55682] - [CSS Modules] Switch to Blob url, with a flag for dataURI, a=testonly

Automatic update from web-platform-tests
[CSS Modules] Switch to Blob url, with a flag for dataURI

Based on recent suggestions from the WHATWG, a Blob url is preferred
for the generated Import Map entry, but it's still not completely
decided on yet.

This CL changes the default behavior to use a Blob, with a new runtime
flag for opting into the prior dataURI behavior so we can assess
performance between the two options.

Bug: 448174611
Change-Id: Ida50c86e0bd71a13d7dafcf80ec3086fe0bcce35
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7075691
Reviewed-by: Mason Freed <masonf@chromium.org>
Commit-Queue: Kurt Catti-Schmidt <kschmi@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#1536068}

--

wpt-commits: dd49212503a988019fb1c016b4c999ecd0fa61e4
wpt-pr: 55682

Diffstat:
Mtesting/web-platform/tests/html/semantics/the-style-element/tentative/style-element-csp-allowed.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/web-platform/tests/html/semantics/the-style-element/tentative/style-element-csp-allowed.html b/testing/web-platform/tests/html/semantics/the-style-element/tentative/style-element-csp-allowed.html @@ -8,7 +8,7 @@ <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> -<meta http-equiv="Content-Security-Policy" content="style-src 'self' 'unsafe-inline' data:;"> +<meta http-equiv="Content-Security-Policy" content="style-src 'self' 'unsafe-inline' data: blob:;"> <script> const t1 = async_test("Test securitypolicyviolation event doesn't fire on Declarative CSS Module when allowed via CSP");