diff options
Diffstat (limited to 'testing/web-platform')
3 files changed, 21 insertions, 2 deletions
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 |