Convert Web IDL void to undefined

Fixes #27660
This commit is contained in:
Kagami Sascha Rosylight 2022-01-05 03:39:33 +01:00
parent 5df705a41f
commit 52ea5204a2
158 changed files with 1124 additions and 1124 deletions

View file

@ -8,13 +8,13 @@
interface mixin ChildNode {
[Throws, CEReactions, Unscopable]
void before((Node or DOMString)... nodes);
undefined before((Node or DOMString)... nodes);
[Throws, CEReactions, Unscopable]
void after((Node or DOMString)... nodes);
undefined after((Node or DOMString)... nodes);
[Throws, CEReactions, Unscopable]
void replaceWith((Node or DOMString)... nodes);
undefined replaceWith((Node or DOMString)... nodes);
[CEReactions, Unscopable]
void remove();
undefined remove();
};
interface mixin NonDocumentTypeChildNode {