mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
added setCustomValidity (#458)
This commit is contained in:
parent
5ed4de3a5a
commit
9b6f5e7895
|
@ -66,6 +66,8 @@ public interface HTMLInputElement extends HTMLElement {
|
||||||
@JSProperty
|
@JSProperty
|
||||||
void setValue(String value);
|
void setValue(String value);
|
||||||
|
|
||||||
|
void setCustomValidity(String validationFailure);
|
||||||
|
|
||||||
void select();
|
void select();
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
|
|
|
@ -56,4 +56,6 @@ public interface HTMLSelectElement extends HTMLElement {
|
||||||
|
|
||||||
@JSProperty
|
@JSProperty
|
||||||
void setValue(String value);
|
void setValue(String value);
|
||||||
|
|
||||||
|
void setCustomValidity(String validationFailure);
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,6 +111,7 @@ public interface HTMLTextAreaElement extends HTMLElement {
|
||||||
@JSProperty
|
@JSProperty
|
||||||
int getTextLength();
|
int getTextLength();
|
||||||
|
|
||||||
|
void setCustomValidity(String validationFailure);
|
||||||
|
|
||||||
void select();
|
void select();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user