mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:38:11 +00:00
LibWeb: Replace IDL 'void' return type with 'undefined'
From the Web IDL spec: https://heycam.github.io/webidl/#idl-undefined [...] undefined constant values in IDL are represented with the `undefined` token. [...] Note: This value was previously spelled `void`, and more limited in how it was allowed to be used.
This commit is contained in:
parent
c1dfb2d883
commit
5d77a19af5
6 changed files with 23 additions and 23 deletions
|
@ -5,6 +5,6 @@ interface HTMLFormElement : HTMLElement {
|
|||
[Reflect=accept-charset] attribute DOMString acceptCharset;
|
||||
[Reflect=novalidate] attribute boolean noValidate;
|
||||
|
||||
void submit();
|
||||
undefined submit();
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue