Update libdrm to new version 5254fd1146b95a86fef1bb8e950d0146d829f3c4 from 2023-10-20 07:24:54
Categories
(Core :: WebRTC, enhancement)
Tracking
()
| Tracking | Status | |
|---|---|---|
| firefox121 | --- | affected |
People
(Reporter: update-bot, Assigned: ngrunbaum, NeedInfo)
Details
(Whiteboard: [3pl-filed][task_id: eWnTkGBQQTmkyIfS-vAemg])
Attachments
(1 obsolete file)
This update covers 35 commits, including 30 new upstream commits I've never filed a bug on before. (They're the top 30.). Here are the overall diff statistics, and then the commit information.
third_party/drm/drm/include/libdrm/drm.h | 108 +++++++++-
third_party/drm/drm/include/libdrm/drm_fourcc.h | 55 +++++
third_party/drm/drm/include/libdrm/drm_mode.h | 256 ++++++++++++++++++++---
third_party/drm/drm/xf86drm.h | 6 +-
third_party/drm/moz.yaml | 4 +-
5 files changed, 388 insertions(+), 41 deletions(-)
5254fd1146b95a86fef1bb8e950d0146d829f3c4 by Simon Ser
https://gitlab.freedesktop.org/mesa/drm/commit/5254fd1146b95a86fef1bb8e950d0146d829f3c4
Authored: 2023-10-20 07:24:54 +0200
Committed: 2023-10-20 07:24:54 +0200
build: bump version to 2.4.117
Signed-off-by: Simon Ser <contact@emersion.fr>
Files Modified:
- meson.build
bd205d133e42069ac60013854e75a35f9fb54424 by Dylan Baker
https://gitlab.freedesktop.org/mesa/drm/commit/bd205d133e42069ac60013854e75a35f9fb54424
Authored: 2023-09-01 13:10:41 -0700
Committed: 2023-10-20 05:21:01 +0000
meson: replace deprecated program.path -> program.full_path
To avoid Meson warnings
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Files Modified:
- amdgpu/meson.build
- meson.build
- nouveau/meson.build
- radeon/meson.build
16e6a965051fae4d5142e9f16c47bb6bd3dd6f59 by Dylan Baker
https://gitlab.freedesktop.org/mesa/drm/commit/16e6a965051fae4d5142e9f16c47bb6bd3dd6f59
Authored: 2023-09-01 12:23:35 -0700
Committed: 2023-10-20 05:21:01 +0000
meson: Use feature.require() and feature.allowed()
To reduce the size and complexity of checks. require() allows combining
auto and enabled checks(), so that something like
x = get_option('feature')
y = false
if x.enabled()
if not condition
error(...)
endif
y = condition
endif
can be rewritten as:
y = get_option('feature').require(condition, error_message : ...).allowed()
require checks the condition, then if the feature is required it emits
an error with the given message otherwise it returns a disabled feature.
allowed then returns whether the feature is not disabled, and returns
that (ie, .allowed() == not .disabled()). This is especially helpful for
longer more complex conditions
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Files Modified:
- .gitlab-ci.yml
- meson.build
a6a2ccb4486306c3caa5ccd337d972b61b97f75a by Dylan Baker
https://gitlab.freedesktop.org/mesa/drm/commit/a6a2ccb4486306c3caa5ccd337d972b61b97f75a
Authored: 2023-09-01 12:09:24 -0700
Committed: 2023-10-20 05:21:01 +0000
meson: fix intel requirements
Intel requires libpciaccess and an x86/x86_64 host, so if those
aren't found and it's enabled we need to error
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Files Modified:
- meson.build
8d8357dc6482c771d2f9501257c29abe8b06ba9c by Samuel Pitoiset
https://gitlab.freedesktop.org/mesa/drm/commit/8d8357dc6482c771d2f9501257c29abe8b06ba9c
Authored: 2023-02-24 10:01:53 +0100
Committed: 2023-10-10 10:25:07 +0200
amdgpu: add support for querying VM faults information
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Files Modified:
- amdgpu/amdgpu-symbols.txt
- amdgpu/amdgpu.h
- amdgpu/amdgpu_gpu_info.c
22b698a5990292bce0eeb2782754d1eba3fe7a2e by Samuel Pitoiset
https://gitlab.freedesktop.org/mesa/drm/commit/22b698a5990292bce0eeb2782754d1eba3fe7a2e
Authored: 2023-02-24 10:03:36 +0100
Committed: 2023-10-10 10:25:07 +0200
amdgpu: amdgpu_drm.h for new GPUVM fault ioctl
Based on agd5f/drm-next.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Files Modified:
- include/drm/amdgpu_drm.h
6abc164052e4902f67213baa279d743cf46227d4 by Simon Ser
https://gitlab.freedesktop.org/mesa/drm/commit/6abc164052e4902f67213baa279d743cf46227d4
Authored: 2023-07-20 12:51:04 +0200
Committed: 2023-09-19 23:39:10 +0900
ci: bump FreeBSD to 13.2
13.0 is no longer supported and causes a 404 when fetching the
image, see e.g. 1 for example failure.
Signed-off-by: Simon Ser <contact@emersion.fr>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Files Modified:
- .gitlab-ci.yml
bdab6068790c68a44a713252baa6937b8bd9916d by Simon Ser
https://gitlab.freedesktop.org/mesa/drm/commit/bdab6068790c68a44a713252baa6937b8bd9916d
Authored: 2023-08-23 12:49:19 +0200
Committed: 2023-09-19 23:35:59 +0900
xf86drm: mark DRM_MAX_MINOR as deprecated
With the work in 1, libdrm users should no longer rely on the
minor numbering scheme we've used so far. Instead, they should use
drmGetDevices2().
Signed-off-by: Simon Ser <contact@emersion.fr>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Files Modified:
- xf86drm.h
13691f5266c22186c752d813750f2f6d02aa470c by Chia-I Wu
https://gitlab.freedesktop.org/mesa/drm/commit/13691f5266c22186c752d813750f2f6d02aa470c
Authored: 2023-08-18 15:48:31 -0700
Committed: 2023-09-13 16:26:49 +0000
modetest: print modifiers in hex as well
Print modifiers in hex in addtion to in strings returned by
drmGetFormatModifierName. In some cases, hex numbers can be more easily
compared visually.
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Files Modified:
- tests/modetest/modetest.c
dfd00c6250e51e7327a1af5311eacb374b9bc8fb by Marijn Suijten
https://gitlab.freedesktop.org/mesa/drm/commit/dfd00c6250e51e7327a1af5311eacb374b9bc8fb
Authored: 2023-06-13 21:53:22 +0200
Committed: 2023-09-10 12:14:06 +0000
modetest: allocate and commit atomic request around set_property()
Currently the atomic request is only assigned after set_property() is
called, leaving dev.req in its uninitialized state causing
drmModeAtomicAddProperty() to return an error code, which is printed
as "Success" because errno is not set by libdrm (but it would have
been when non-atomic drmModeObjectSetProperty() called an IOCTL
immediately):
sony-akatsuki-row ~ $ modetest -M msm -a -w 81:ACTIVE:0
failed to set CRTC 81 property ACTIVE to 0: Success
Solve this by assigning a new atomic request object before calling
set_property(), when there are properties to set. Likewise, commit
these properties after set_property() even if there is no other
operation (setting modes or planes) specified.
Furthermore drmModeObjectSetProperty() is implemented in terms of
DRM_IOCTL() which already returns -errno when ioctl() returns
-1, so we should instead pass ret to strerror() and get an
accurate error string out of drmModeAtomicAddProperty() too.
Fixes: 93220283 ("tests/modetest: Add atomic support")
Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
Files Modified:
- tests/modetest/modetest.c
7618a646330d2dda663d44ef9066994f28d7812f by Neil Armstrong
https://gitlab.freedesktop.org/mesa/drm/commit/7618a646330d2dda663d44ef9066994f28d7812f
Authored: 2023-01-18 15:01:22 +0100
Committed: 2023-09-10 11:55:14 +0000
modetest: allow using -r and -P
Since now -r sets the pipe struct and count like -s we can also
use -P with -r.
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Files Modified:
- tests/modetest/modetest.c
2e17aea5735a377112c2f2d325c1ec28b11f7285 by Neil Armstrong
https://gitlab.freedesktop.org/mesa/drm/commit/2e17aea5735a377112c2f2d325c1ec28b11f7285
Authored: 2023-01-18 14:29:42 +0100
Committed: 2023-09-10 11:55:14 +0000
modetest: permit -r and -s to work together
Let's permit testing vsync with the default mode, this returns
back the pipe content and count when calling set_mode() so the
vsync test can also be used.
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Files Modified:
- tests/modetest/modetest.c
64b09cef49f9cd7e7eb9871d8fe36ed5b315149a by Marijn Suijten
https://gitlab.freedesktop.org/mesa/drm/commit/64b09cef49f9cd7e7eb9871d8fe36ed5b315149a
Authored: 2023-09-09 10:26:33 +0200
Committed: 2023-09-09 11:07:56 +0200
modetest: document why no blob is created for linear gamma LUT
As found and discussed in MR 58 a blob is not created in the else arm
because adding the GAMMA_LUT property with a NULL/0 blob_id causes it
to be reset to a default linear / pass-thru gamma table. The values
in the gamma_lut table might still be consumed in the legacy API path
below though, so it has to be initialized to a linear table.
Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
Files Modified:
- tests/modetest/modetest.c
b709c3010e9a39b7ed4ed63a16148d4fa0055d3f by Ezequiel Garcia
https://gitlab.freedesktop.org/mesa/drm/commit/b709c3010e9a39b7ed4ed63a16148d4fa0055d3f
Authored: 2019-10-05 13:31:22 -0300
Committed: 2023-09-09 11:07:47 +0200
modetest: avoid erroring if there's no gamma legacy support
Let's follow the Rule of Silence. And while here,
document what's going on.
Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
Reviewed-by: Marijn Suijten <marijn.suijten@somainline.org>
Files Modified:
- tests/modetest/modetest.c
45f3d9bab6abcddbc55b68235f9c3fbe9fa1d2a4 by Dmitry Baryshkov
https://gitlab.freedesktop.org/mesa/drm/commit/45f3d9bab6abcddbc55b68235f9c3fbe9fa1d2a4
Authored: 2023-07-30 18:33:28 +0300
Committed: 2023-09-08 18:19:31 +0000
modetest: custom mode support
It is useful to be able to specify mode parameters manually. Add support
for setting user-supplied modes. This patch is based on the original
idea by Rohit and Jessica, but implemented from scratch.
Suggested-by: Rohith Iyer <quic_rohiiyer@quicinc.com>
Suggested-by: Jessica Zhang <quic_jesszhan@quicinc.com>
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Files Modified:
- tests/modetest/meson.build
- tests/modetest/modetest.c
4d3635fada9462a817f5d252b10349affde8e6f7 by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/4d3635fada9462a817f5d252b10349affde8e6f7
Authored: 2022-06-30 16:35:31 +0200
Committed: 2023-09-08 18:01:43 +0000
util: remove unused definitions of RED, GREEN, and BLUE
These are unused since commit edcef53685edf5fb ("modetest: Add test
pattern support for missing RGB formats").
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
v2:
- Add Reviewed-by.
Files Modified:
- tests/util/pattern.c
ea5237e549257c47b0edeb445bd63e089f278c0b by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/ea5237e549257c47b0edeb445bd63e089f278c0b
Authored: 2022-06-30 14:41:48 +0200
Committed: 2023-09-08 18:01:43 +0000
modetest: fix mode_vrefresh() for interlace/dblscan/vscan
mode_vrefresh() does not take into account interlaced, doublescan, and
multiscan modes, leading to incorrect refresh rates.
Fix this, based on drm_mode_vrefresh() in Linux.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Files Modified:
- tests/modetest/modetest.c
022a4d8a82f8d621cfa0eccec92446b289a23e28 by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/022a4d8a82f8d621cfa0eccec92446b289a23e28
Authored: 2022-07-03 14:05:31 +0200
Committed: 2023-09-08 18:01:43 +0000
util: fix grey in YUV SMPTE patterns
The YUV SMPTE patterns use RGB 191/192/192 instead of 192/192/192 for
the grey color in the top color bar.
Change it to 192/192/192, to match the RGB SMPTE patterns.
Fixes: a94ee624292bff96 ("modetest: Add SMPTE test pattern")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
v2:
- Add Reviewed-by.
Files Modified:
- tests/util/pattern.c
be42051eadc53c55ca1920a7bfedb9ad867838dc by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/be42051eadc53c55ca1920a7bfedb9ad867838dc
Authored: 2023-07-05 15:24:02 +0200
Committed: 2023-09-08 17:42:38 +0000
modetest: add support for DRM_FORMAT_NV{24,42}
Add support for creating buffers using semi-planar YUV formats with
non-subsampled chroma planes.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
v2:
- Add Reviewed-by.
Files Modified:
- tests/modetest/buffers.c
8e5286d4f982b7dd372a8747d5cf55438e74d02d by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/8e5286d4f982b7dd372a8747d5cf55438e74d02d
Authored: 2023-07-05 15:23:56 +0200
Committed: 2023-09-08 17:42:38 +0000
util: add pattern support for DRM_FORMAT_NV{24,42}
Add support for drawing the SMPTE and tiles patterns in buffers using
semi-planar YUV formats with non-subsampled chroma planes.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
v2:
- Add Reviewed-by.
Files Modified:
- tests/util/pattern.c
cd3b248cdceacad1ad5cdf146ad8c95fbdd66240 by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/cd3b248cdceacad1ad5cdf146ad8c95fbdd66240
Authored: 2023-07-05 15:23:52 +0200
Committed: 2023-09-08 17:42:38 +0000
util: add NV24 and NV42 frame buffer formats
Add the missing entries for semi-planar YUV formats with
non-subsampled chroma planes.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
v2:
- Add Reviewed-by.
Files Modified:
- tests/util/format.c
8db39ef7bb119a2fa29e6101b941521c29685c7a by Rohith Iyer
https://gitlab.freedesktop.org/mesa/drm/commit/8db39ef7bb119a2fa29e6101b941521c29685c7a
Authored: 2022-07-25 10:11:41 -0700
Committed: 2023-09-08 16:27:39 +0000
modetest: add support for writeback connector
Add writeback support to modetest with the below options:
-
Passing in -a -c will now also show the writeback connector
-
Dump the writeback output buffer to bitstream
Usage: "./modetest -M msm -s <connector_id>:<widthxheight>
-a -o <filepath>
-P <plane_id>@<crtc_id>:<widthxheight>+0+0@RG24"
This currently supports single writeback connector.
Co-developed-by: Rohith Iyer <quic_rohiiyer@quicinc.com>
Signed-off-by: Jessica Zhang <quic_jesszhan@quicinc.com>
[DB: dropped custom mode support, fixed segfault]
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Files Modified:
- tests/modetest/buffers.c
- tests/modetest/buffers.h
- tests/modetest/modetest.c
ee52a88a5723bcd9d505e08e4fadbabb45c66af5 by Jonathan Gray
https://gitlab.freedesktop.org/mesa/drm/commit/ee52a88a5723bcd9d505e08e4fadbabb45c66af5
Authored: 2023-09-07 01:28:25 +1000
Committed: 2023-09-07 01:28:25 +1000
amdgpu: add marketing names from Adrenalin 23.9.1
Files Modified:
- data/amdgpu.ids
0be9179f418e163794fb414236a927c71b282bb7 by Jonathan Gray
https://gitlab.freedesktop.org/mesa/drm/commit/0be9179f418e163794fb414236a927c71b282bb7
Authored: 2023-08-07 11:39:12 +1000
Committed: 2023-09-05 19:25:16 +0000
amdgpu: add marketing names from Adrenalin 23.7.2
Files Modified:
- data/amdgpu.ids
e194de72d3f942202e3965584c37d1831125147d by Jonathan Gray
https://gitlab.freedesktop.org/mesa/drm/commit/e194de72d3f942202e3965584c37d1831125147d
Authored: 2023-08-07 11:36:50 +1000
Committed: 2023-09-05 19:25:16 +0000
amdgpu: add marketing names from PRO Edition 23.Q3 W7000
Files Modified:
- data/amdgpu.ids
51f3109f194544ade4904f7dbe793c03a16c6e12 by Jonathan Gray
https://gitlab.freedesktop.org/mesa/drm/commit/51f3109f194544ade4904f7dbe793c03a16c6e12
Authored: 2023-05-29 16:39:38 +1000
Committed: 2023-09-05 19:25:16 +0000
amdgpu: add marketing names from amd-5.5.1 (23.10.1)
Files Modified:
- data/amdgpu.ids
d4a7ee1a562ede0c18f20cae167a6d93a826dbff by Jonathan Gray
https://gitlab.freedesktop.org/mesa/drm/commit/d4a7ee1a562ede0c18f20cae167a6d93a826dbff
Authored: 2023-05-29 16:41:01 +1000
Committed: 2023-09-05 19:25:16 +0000
amdgpu: add marketing names from amd-5.4.6 (22.40.6)
Files Modified:
- data/amdgpu.ids
6a961ca843d154be994bd4d232a99d59d18fe26d by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/6a961ca843d154be994bd4d232a99d59d18fe26d
Authored: 2023-07-05 15:23:44 +0200
Committed: 2023-09-04 09:31:55 +0200
amdgpu: Use PRI?64 to format uint64_t
On 32-bit:
../tests/amdgpu/amdgpu_stress.c: In function ‘alloc_bo’:
../tests/amdgpu/amdgpu_stress.c:178:49: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stdout, "Allocated BO number %u at 0x%lx, domain 0x%x, size %lu\n",
~~^
%llx
num_buffers++, addr, domain, size);
~~~~
../tests/amdgpu/amdgpu_stress.c:178:72: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 6 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stdout, "Allocated BO number %u at 0x%lx, domain 0x%x, size %lu\n",
~~^
%llu
num_buffers++, addr, domain, size);
~~~~
../tests/amdgpu/amdgpu_stress.c: In function ‘submit_ib’:
../tests/amdgpu/amdgpu_stress.c:276:54: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stdout, "Submitted %u IBs to copy from %u(%lx) to %u(%lx) %lu bytes took %lu usec\n",
~~^
%llx
count, from, virtual[from], to, virtual[to], copied, delta / 1000);
~~~~~~~~~~~~~
../tests/amdgpu/amdgpu_stress.c:276:65: warning: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stdout, "Submitted %u IBs to copy from %u(%lx) to %u(%lx) %lu bytes took %lu usec\n",
~~^
%llx
count, from, virtual[from], to, virtual[to], copied, delta / 1000);
~~~~~~~~~~~
../tests/amdgpu/amdgpu_stress.c:276:70: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 8 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stdout, "Submitted %u IBs to copy from %u(%lx) to %u(%lx) %lu bytes took %lu usec\n",
~~^
%llu
count, from, virtual[from], to, virtual[to], copied, delta / 1000);
~~~~~~
../tests/amdgpu/amdgpu_stress.c:276:85: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 9 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stdout, "Submitted %u IBs to copy from %u(%lx) to %u(%lx) %lu bytes took %lu usec\n",
~~^
%llu
count, from, virtual[from], to, virtual[to], copied, delta / 1000);
~~~~~~~~~~~~
../tests/amdgpu/amdgpu_stress.c: In function ‘parse_size’:
../tests/amdgpu/amdgpu_stress.c:296:24: warning: format ‘%li’ expects argument of type ‘long int *’, but argument 3 has type ‘uint64_t *’ {aka ‘long long unsigned int *’} [-Wformat=]
if (sscanf(optarg, "%li%1[kmgKMG]", &size, ext) < 1) {
~~^ ~~~~~
%lli
../tests/amdgpu/amdgpu_stress.c: In function ‘main’:
../tests/amdgpu/amdgpu_stress.c:378:45: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘uint64_t’ {aka ‘long long unsigned int’} [-Wformat=]
fprintf(stderr, "Buffer size to small %lu\n", size);
~~^ ~~~~
%llu
Fix this by using the proper "PRI?64" format specifiers.
Fixes: d77ccdf3ba6f5a39 ("amdgpu: add amdgpu_stress utility v2")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
On Linux/amd64, the format strings in the resulting binary are
unchanged.
v3:
- Add Reviewed-by,
v2:
- Use PRI?64 to unbreak 64-bit build.
Files Modified:
- tests/amdgpu/amdgpu_stress.c
ca041d5fe66bd22542dbfd93e991d5aa20950d76 by Geert Uytterhoeven
https://gitlab.freedesktop.org/mesa/drm/commit/ca041d5fe66bd22542dbfd93e991d5aa20950d76
Authored: 2023-07-05 15:23:24 +0200
Committed: 2023-09-04 09:31:36 +0200
amdgpu: Fix pointer/integer mismatch warning
On 32-bit:
../amdgpu/amdgpu_bo.c: In function ‘amdgpu_find_bo_by_cpu_mapping’:
../amdgpu/amdgpu_bo.c:554:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
cpu < (void*)((uintptr_t)bo->cpu_ptr + bo->alloc_size))
^
Indeed, as amdgpu_bo_info.alloc_size is "uint64_t", the sum is
always 64-bit, while "void *" can be 32-bit or 64-bit.
Fix this by casting bo->alloc_size to "size_t", which is either
32-bit or 64-bit, just like "void *".
Fixes: c6493f360e7529c2 ("amdgpu: Eliminate void* arithmetic in amdgpu_find_bo_by_cpu_mapping")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
v2:
- Add Reviewed-by.
Files Modified:
- amdgpu/amdgpu_bo.c
7bdb135f0c8e6ae2c0ed6d4bd6a8423eb1df5c26 by Simon Ser
https://gitlab.freedesktop.org/mesa/drm/commit/7bdb135f0c8e6ae2c0ed6d4bd6a8423eb1df5c26
Authored: 2023-08-23 11:57:39 +0200
Committed: 2023-08-23 11:57:39 +0200
build: bump version to 2.4.116
Signed-off-by: Simon Ser <contact@emersion.fr>
Files Modified:
- meson.build
18644eb64f4e4da583b9f0a43c9f97756cd5aef0 by Dor Askayo
https://gitlab.freedesktop.org/mesa/drm/commit/18644eb64f4e4da583b9f0a43c9f97756cd5aef0
Authored: 2023-08-12 22:29:30 +0300
Committed: 2023-08-17 21:09:55 +0000
nouveau: add interface to make buffer objects global
This is useful for when GEM handles are exported and may be shared
between multiple buffer objects without going through other libdrm
interfaces.
Signed-off-by: Dor Askayo <dor.askayo@gmail.com>
Reviewed-by: Karol Herbst <git@karolherbst.de>
Files Modified:
- nouveau/nouveau-symbols.txt
- nouveau/nouveau.c
- nouveau/nouveau.h
3bc3cca230c5a064b2f554f26fdec27db0f5ead8 by James Zhu
https://gitlab.freedesktop.org/mesa/drm/commit/3bc3cca230c5a064b2f554f26fdec27db0f5ead8
Authored: 2023-08-07 10:14:18 -0400
Committed: 2023-08-16 09:28:59 -0400
xf86drm: use drm device name to identify drm node type
Currently drm node's minor range is used to identify node's type.
Since kernel drm uses node type name and minor to generate drm
device name, It will be more general to use drm device name to
identify drm node type.
Signed-off-by: James Zhu <James.Zhu@amd.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Files Modified:
- xf86drm.c
7130cb163eb860d4a965c6708b64fe87cee881d6 by James Zhu
https://gitlab.freedesktop.org/mesa/drm/commit/7130cb163eb860d4a965c6708b64fe87cee881d6
Authored: 2023-08-07 10:06:32 -0400
Committed: 2023-08-16 09:28:57 -0400
xf86drm: update DRM_NODE_NAME_MAX supporting more nodes
Current DRM_NODE_NAME_MAX only can support up to 999 nodes,
Update to support up to 2^MINORBITS nodes.
Signed-off-by: James Zhu <James.Zhu@amd.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Files Modified:
- xf86drm.h
c6013245ce9ce287bb86d327f9b6420a320a08e6 by Simon Ser
https://gitlab.freedesktop.org/mesa/drm/commit/c6013245ce9ce287bb86d327f9b6420a320a08e6
Authored: 2023-07-20 12:45:57 +0200
Committed: 2023-07-27 16:10:41 +0200
xf86drm: add drmSyncobjEventfd
This is a wrapper for DRM_IOCTL_SYNCOBJ_EVENTFD.
Signed-off-by: Simon Ser <contact@emersion.fr>
Files Modified:
- core-symbols.txt
- xf86drm.c
- xf86drm.h
431becd4e0dddf974aadd7bf7965b3a28b22dd23 by Simon Ser
https://gitlab.freedesktop.org/mesa/drm/commit/431becd4e0dddf974aadd7bf7965b3a28b22dd23
Authored: 2023-07-27 15:56:46 +0200
Committed: 2023-07-27 15:57:59 +0200
Sync headers with drm-next
Synchronize drm.h, drm_mode.h and drm_fourcc.h to drm-next.
Generated using make headers_install.
Generated from drm-next branch commit 52920704df878050123dfeb469aa6ab8022547c1
Signed-off-by: Simon Ser <contact@emersion.fr>
Files Modified:
- include/drm/drm.h
- include/drm/drm_fourcc.h
- include/drm/drm_mode.h
| Reporter | ||
Comment 1•2 years ago
|
||
| eWnTkGBQQTmkyIfS-vAemg | ||
I've submitted a try run for this commit: https://treeherder.mozilla.org/jobs?repo=try&revision=b6c90638d66254e7e32e656d709236b3b8c0757f
| Reporter | ||
Comment 2•2 years ago
|
||
Comment 3•2 years ago
|
||
Nico, can you triage this one? It looks like something you set up?
| Reporter | ||
Comment 4•2 years ago
|
||
| aN17TRlWSNOP6vjvfyhHiw | ||
The try push is done, we found jobs with unclassified failures.
Known Issues (From Push Health):
-
FileAPI/BlobURL
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
FileAPI/url
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 8 of 8 failed on different tasks
-
IndexedDB
- 12 of 12 failed on different tasks
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
WebCryptoAPI/generateKey
- 4 of 4 failed on the same (retriggered) task
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 4 of 4 failed on the same (retriggered) task
-
_mozilla/content-security-policy/gen/top.meta
- 20 of 20 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- 20 of 20 failed on different tasks
-
_mozilla/editor
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 16 of 16 failed on different tasks
-
_mozilla/fetch/fetchpriority
- 12 of 12 failed on different tasks
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 12 of 12 failed on different tasks
-
_mozilla/mediacapture-streams
- 4 of 4 failed on the same (retriggered) task
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 4 of 4 failed on the same (retriggered) task
-
accname/name
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- 8 of 8 failed on different tasks
-
accname/name/shadowdom
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 8 of 8 failed on different tasks
-
badging
- 20 of 20 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- 20 of 20 failed on different tasks
-
captured-mouse-events
- 4 of 4 failed on the same (retriggered) task
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 4 of 4 failed on the same (retriggered) task
-
clear-site-data
- 12 of 12 failed on different tasks
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
client-hints
- 12 of 12 failed on different tasks
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 12 of 12 failed on different tasks
-
client-hints/accept-ch
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 16 of 16 failed on different tasks
-
client-hints/accept-ch-stickiness
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- 8 of 8 failed on different tasks
-
client-hints/accept-ch/feature-policy-navigation
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- 12 of 12 failed on different tasks
-
client-hints/accept-ch/meta
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 8 of 8 failed on different tasks
-
client-hints/clear-site-data
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 8 of 8 failed on different tasks
-
client-hints/critical-ch
- 4 of 4 failed on the same (retriggered) task
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 4 of 4 failed on the same (retriggered) task
-
client-hints/sandbox
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
client-hints/service-workers
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 8 of 8 failed on different tasks
-
client-hints/viewport-size
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- 16 of 16 failed on different tasks
-
clipboard-apis/feature-policy/clipboard-read
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- 16 of 16 failed on different tasks
-
clipboard-apis/feature-policy/clipboard-write
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 16 of 16 failed on different tasks
-
clipboard-apis/permissions
- 4 of 4 failed on the same (retriggered) task
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 4 of 4 failed on the same (retriggered) task
-
clipboard-apis/text-write-read
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 8 of 8 failed on different tasks
-
compat
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- 8 of 8 failed on different tasks
-
compression
- 8 of 8 failed on different tasks
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- 8 of 8 failed on different tasks
-
compute-pressure/permissions-policy
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 16 of 16 failed on different tasks
-
content-index
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- 8 of 8 failed on different tasks
-
content-security-policy/child-src
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 8 of 8 failed on different tasks
-
content-security-policy/form-action
- 12 of 12 failed on different tasks
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 12 of 12 failed on different tasks
-
content-security-policy/frame-src
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 8 of 8 failed on different tasks
-
content-security-policy/gen/top.meta
- 20 of 20 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- 20 of 20 failed on different tasks
-
content-security-policy/generic
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 12 of 12 failed on different tasks
-
content-security-policy/meta
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- 12 of 12 failed on different tasks
-
content-security-policy/navigate-to
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- 12 of 12 failed on different tasks
-
content-security-policy/navigate-to/form-action
- 4 of 4 failed on the same (retriggered) task
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- 4 of 4 failed on the same (retriggered) task
-
content-security-policy/reporting-api
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 8 of 8 failed on different tasks
-
content-security-policy/resource-hints
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- 16 of 16 failed on different tasks
-
content-security-policy/securitypolicyviolation
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
content-security-policy/webrtc
- 24 of 24 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- 24 of 24 failed on different tasks
-
content-security-policy/worker-src
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 12 of 12 failed on different tasks
-
contenteditable
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 8 of 8 failed on different tasks
-
cookie-deprecation-label
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 16 of 16 failed on different tasks
-
cookies/encoding
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
cookies/name
- 12 of 12 failed on different tasks
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
cookies/path
- 20 of 20 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 20 of 20 failed on different tasks
-
cookies/prefix
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 16 of 16 failed on different tasks
-
cookies/samesite
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- 12 of 12 failed on different tasks
-
cookies/size
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 8 of 8 failed on different tasks
-
cookies/third-party-cookies
- 8 of 8 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- 8 of 8 failed on different tasks
-
cors
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- 12 of 12 failed on different tasks
-
css/CSS2/abspos
- 16 of 16 failed on different tasks
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (E8c4Sbv6SPqWI645ndUGVA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (cfb3hTm5Qle_FkbgkzKTEw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (FoJHR84HTkGId7ms22wktw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-swr-nofis-2 (YCHi5bWISiCT3WBgqM7o4w)
- 16 of 16 failed on different tasks
-
css/CSS2/linebox
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- 12 of 12 failed on different tasks
-
css/CSS2/normal-flow
- 20 of 20 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 20 of 20 failed on different tasks
-
css/CSS2/positioning
- 12 of 12 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Li9cAWCbT3qtSbd9Vkc3Fw)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (Q2bVEVZORfiFkk18rpTjFQ)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (PS-PelALQdCk5yqvjyQpYA)
- test-linux1804-64-tsan-qr/opt-web-platform-tests-canvas-1 (ZoV1adpgRXeHMer42o8JsQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 12 of 12 failed on different tasks
-
css/css-animations
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (HTcQ_3roTwaB_V70FyEzTg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (JnrjMYzmS6y2yed5O3pMLg)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (XBBeuKxkSYWJIAiV1wFl9w)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (dJWz8RBjRTyyl2w4y-9Oxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BfmXt6ZKQ6CauqmK6MlngA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (BmJ-hZYDT1C7uiZWAHtCDA)
- test-linux1804-64-qr/opt-web-platform-tests-canvas-nofis (Rmq__R0URLyE_a_wZol3iA)
- 16 of 16 failed on different tasks
-
css/css-animations/parsing
- 4 of 4 failed on the same (retriggered) task
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (SsW0CfBrQEaiLCbAj52nKA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (a-H__LZ8TKmURDRARN-mRA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (EXOrVP9wQdqpPrEvx7XtDA)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-1 (XrlyPgCET4-MgNVcbx8yOA)
- 4 of 4 failed on the same (retriggered) task
-
css/css-animations/responsive
- 16 of 16 failed on different tasks
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (XyURnSvURUK_EKQSZOISwg)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (A294PgQKTQCC-59mNL03yw)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (Bg9M6k0sTQqcT-vbCDMOuQ)
- test-linux1804-64-qr/debug-web-platform-tests-canvas-nofis-2 (ZBnAVLFuRCaVZQxyNLNQ7g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (Py0u7g7QRF-K7eziGnZHYQ)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (dQPVJGfiRDa3qMqFPgSSqw)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (G59017VXSwCyLSnjf98e9g)
- test-linux1804-64-asan-qr/opt-web-platform-tests-canvas-nofis-2 (XPZWvp25QN6HmKH-BNnMxw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (LRC3FBx9SOeltmLw2IrcoQ)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (JDTna69MRUyai1uLIJlB1g)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (KaQ0Tg36TDKMO4IAIfCdVw)
- test-linux1804-64-qr/opt-web-platform-tests-canvas (QY_lebbpQGSfZ1svmcaiwA)
- test-windows11-32-2009-qr/opt-web-platform-tests-canvas-2 (OT4qwsdWTrSyBzNbgClCig)
- test-windows11-32-2009-qr/opt-web-p
- 16 of 16 failed on different tasks
Oops - the above comment was too long. I was unable to shrink it nicely, so I had to truncate it to fit Bugzilla's limits.
| Reporter | ||
Comment 5•2 years ago
|
||
| aN17TRlWSNOP6vjvfyhHiw | ||
This bug is being closed because a newer revision of the library is available.
This bug will be marked as a duplicate of it (because although this bug is older, it is superseded by the newer one).
Updated•2 years ago
|
Description
•