mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-08 07:54:11 -08:00
#457: also add check/reportValidity
This commit is contained in:
parent
34aed76714
commit
236c6191c2
|
@ -67,6 +67,10 @@ public interface HTMLInputElement extends HTMLElement {
|
||||||
void setValue(String value);
|
void setValue(String value);
|
||||||
|
|
||||||
void setCustomValidity(String validationFailure);
|
void setCustomValidity(String validationFailure);
|
||||||
|
|
||||||
|
boolean checkValidity();
|
||||||
|
|
||||||
|
boolean reportValidity();
|
||||||
|
|
||||||
void select();
|
void select();
|
||||||
|
|
||||||
|
|
|
@ -58,4 +58,6 @@ public interface HTMLSelectElement extends HTMLElement {
|
||||||
void setValue(String value);
|
void setValue(String value);
|
||||||
|
|
||||||
void setCustomValidity(String validationFailure);
|
void setCustomValidity(String validationFailure);
|
||||||
|
|
||||||
|
boolean reportValidity();
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,6 +112,10 @@ public interface HTMLTextAreaElement extends HTMLElement {
|
||||||
int getTextLength();
|
int getTextLength();
|
||||||
|
|
||||||
void setCustomValidity(String validationFailure);
|
void setCustomValidity(String validationFailure);
|
||||||
|
|
||||||
|
boolean checkValidity();
|
||||||
|
|
||||||
|
boolean reportValidity();
|
||||||
|
|
||||||
void select();
|
void select();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user