diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 15:18:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 15:18:07 +0000 |
commit | 328078c4d259e52db1a4848c00ee0b420775c91c (patch) | |
tree | ca9b0e61a1c03f0246b0371423bbbe570193e2f1 /testing | |
parent | Adding upstream version 115.8.0esr. (diff) | |
download | firefox-esr-328078c4d259e52db1a4848c00ee0b420775c91c.tar.xz firefox-esr-328078c4d259e52db1a4848c00ee0b420775c91c.zip |
Adding upstream version 115.9.0esr.upstream/115.9.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing')
4 files changed, 25 insertions, 2 deletions
diff --git a/testing/tools/websocketprocessbridge/websocketprocessbridge_requirements_3.txt b/testing/tools/websocketprocessbridge/websocketprocessbridge_requirements_3.txt index 9283087d5c..aeadaad384 100644 --- a/testing/tools/websocketprocessbridge/websocketprocessbridge_requirements_3.txt +++ b/testing/tools/websocketprocessbridge/websocketprocessbridge_requirements_3.txt @@ -1,6 +1,10 @@ # This file is the websocketprocess requirements.txt used with python 3. six + +# bug 1879915: cffi 1.16.0 breaks on Windows 7 +cffi==1.14.5 ; python_version < "3.8" and platform_system == "Windows" + vcversioner==2.16.0.0 twisted==21.2.0 diff --git a/testing/web-platform/tests/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas-worker-font-load-crash.html b/testing/web-platform/tests/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas-worker-font-load-crash.html new file mode 100644 index 0000000000..1baf7847de --- /dev/null +++ b/testing/web-platform/tests/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas-worker-font-load-crash.html @@ -0,0 +1,19 @@ +<!doctype html> +<html class="test-wait reftest-wait"> +<script> + let url = URL.createObjectURL(new Blob([` + let font = new FontFace('Ahem', 'url(/fonts/Ahem.ttf)'); + self.fonts.add(font); + let canvas = new OffscreenCanvas(100, 100); + let ctx = canvas.getContext('2d'); + ctx.font = "10px Ahem"; + ctx.fillText('Hello', 0, 10); + postMessage('done'); + `], { type: "application/javascript" })); + var worker = new Worker(url); + worker.onmessage = function() { + worker.terminate(); + URL.revokeObjectURL(url); + document.documentElement.className = ""; + }; +</script> diff --git a/testing/web-platform/tests/tools/webtransport/requirements.txt b/testing/web-platform/tests/tools/webtransport/requirements.txt index d3b88d7f04..883b061589 100644 --- a/testing/web-platform/tests/tools/webtransport/requirements.txt +++ b/testing/web-platform/tests/tools/webtransport/requirements.txt @@ -1 +1 @@ -aioquic==0.9.20 +aioquic==0.9.21 diff --git a/testing/web-platform/tests/tools/wptrunner/requirements_chromium.txt b/testing/web-platform/tests/tools/wptrunner/requirements_chromium.txt index d3b88d7f04..883b061589 100644 --- a/testing/web-platform/tests/tools/wptrunner/requirements_chromium.txt +++ b/testing/web-platform/tests/tools/wptrunner/requirements_chromium.txt @@ -1 +1 @@ -aioquic==0.9.20 +aioquic==0.9.21 |