mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
LibWeb: Stub out a few form validation and selection methods
This commit is contained in:
parent
23d31ac11d
commit
38a3e28799
6 changed files with 57 additions and 0 deletions
|
@ -38,6 +38,11 @@ interface HTMLInputElement : HTMLElement {
|
|||
[Reflect] attribute DOMString align;
|
||||
[Reflect=usemap] attribute DOMString useMap;
|
||||
|
||||
boolean checkValidity();
|
||||
boolean reportValidity();
|
||||
undefined setCustomValidity(DOMString error);
|
||||
|
||||
undefined select();
|
||||
undefined setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
||||
|
||||
undefined showPicker();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue