From bb70c35a96e8eedba9b96f9ad54fcade0fed8058 Mon Sep 17 00:00:00 2001 From: Wu Yuwei Date: Wed, 24 Sep 2025 13:10:56 +0900 Subject: [PATCH] WebGPU: expose GPUObjectBase to worker (#39463) Label attribute in several WebGPU object should be available to worker as well. [Firefox](https://searchfox.org/firefox-main/source/dom/webidl/WebGPU.webidl#10) doesn't limit it to window either. Testing: CTS [try run](https://github.com/wusyong/servo/actions/runs/17942843000) from my fork Signed-off-by: Wu Yu Wei --- components/script_bindings/webidls/WebGPU.webidl | 1 - 1 file changed, 1 deletion(-) diff --git a/components/script_bindings/webidls/WebGPU.webidl b/components/script_bindings/webidls/WebGPU.webidl index 7e561e02465..97e91da7b5d 100644 --- a/components/script_bindings/webidls/WebGPU.webidl +++ b/components/script_bindings/webidls/WebGPU.webidl @@ -7,7 +7,6 @@ // Source: WebGPU (https://gpuweb.github.io/gpuweb/) // Direct source: https://github.com/w3c/webref/blob/curated/ed/idl/webgpu.idl -[Exposed=(Window)] interface mixin GPUObjectBase { attribute USVString label; };