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