summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/HTMLFormElement.idl
blob: fcc358eceb0295df7ec147ec6cc76611e88301a0 (plain)
1
2
3
4
5
6
7
8
9
10
interface HTMLFormElement : HTMLElement {

    [Reflect] attribute DOMString name;
    [Reflect] attribute DOMString rel;
    [Reflect=accept-charset] attribute DOMString acceptCharset;
    [Reflect=novalidate] attribute boolean noValidate;

    void submit();

}