aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/GPUValidationError.webidl
diff options
context:
space:
mode:
authorKagami Sascha Rosylight <saschanaz@outlook.com>2022-01-05 03:39:33 +0100
committerKagami Sascha Rosylight <saschanaz@outlook.com>2022-01-05 03:39:33 +0100
commit52ea5204a23d8cc9d40ac3e9eb4fd9e03c1cd1ca (patch)
treeff222506f529fb20f148b634161a10244fd2a7ec /components/script/dom/webidls/GPUValidationError.webidl
parent5df705a41f6c4c1f2ffeec257dfe0129ce5fa8e0 (diff)
downloadservo-52ea5204a23d8cc9d40ac3e9eb4fd9e03c1cd1ca.tar.gz
servo-52ea5204a23d8cc9d40ac3e9eb4fd9e03c1cd1ca.zip
Convert Web IDL void to undefined
Fixes #27660
Diffstat (limited to 'components/script/dom/webidls/GPUValidationError.webidl')
-rw-r--r--components/script/dom/webidls/GPUValidationError.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/GPUValidationError.webidl b/components/script/dom/webidls/GPUValidationError.webidl
index 8e5d211d981..e62feeb7784 100644
--- a/components/script/dom/webidls/GPUValidationError.webidl
+++ b/components/script/dom/webidls/GPUValidationError.webidl
@@ -17,6 +17,6 @@ enum GPUErrorFilter {
};
partial interface GPUDevice {
- void pushErrorScope(GPUErrorFilter filter);
+ undefined pushErrorScope(GPUErrorFilter filter);
Promise<GPUError?> popErrorScope();
};