added setCustomValidity (#458)

This commit is contained in:
Jörg Hohwiller 2020-01-15 09:10:00 +01:00 committed by Alexey Andreev
parent 5ed4de3a5a
commit 9b6f5e7895
3 changed files with 5 additions and 0 deletions

View File

@ -65,6 +65,8 @@ public interface HTMLInputElement extends HTMLElement {
@JSProperty
void setValue(String value);
void setCustomValidity(String validationFailure);
void select();

View File

@ -56,4 +56,6 @@ public interface HTMLSelectElement extends HTMLElement {
@JSProperty
void setValue(String value);
void setCustomValidity(String validationFailure);
}

View File

@ -111,6 +111,7 @@ public interface HTMLTextAreaElement extends HTMLElement {
@JSProperty
int getTextLength();
void setCustomValidity(String validationFailure);
void select();