mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-24 02:09:28 +00:00
13 lines
302 B
Plaintext
13 lines
302 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
interface HTMLFormElement : HTMLElement {
|
|
|
|
[Reflect] attribute DOMString name;
|
|
[Reflect] attribute DOMString rel;
|
|
[Reflect=accept-charset] attribute DOMString acceptCharset;
|
|
[Reflect=novalidate] attribute boolean noValidate;
|
|
|
|
undefined submit();
|
|
|
|
};
|