aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLDialogElement.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/HTMLDialogElement.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/HTMLDialogElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLDialogElement.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLDialogElement.webidl b/components/script/dom/webidls/HTMLDialogElement.webidl
index f83f2547a72..758839e9015 100644
--- a/components/script/dom/webidls/HTMLDialogElement.webidl
+++ b/components/script/dom/webidls/HTMLDialogElement.webidl
@@ -15,5 +15,5 @@ interface HTMLDialogElement : HTMLElement {
// [CEReactions]
// void showModal();
[CEReactions]
- void close(optional DOMString returnValue);
+ undefined close(optional DOMString returnValue);
};