#457: also add check/reportValidity

This commit is contained in:
Jörg Hohwiller 2020-01-15 23:18:47 +01:00 committed by Alexey Andreev
parent 34aed76714
commit 236c6191c2
3 changed files with 10 additions and 0 deletions

View File

@ -67,6 +67,10 @@ public interface HTMLInputElement extends HTMLElement {
void setValue(String value);
void setCustomValidity(String validationFailure);
boolean checkValidity();
boolean reportValidity();
void select();

View File

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

View File

@ -112,6 +112,10 @@ public interface HTMLTextAreaElement extends HTMLElement {
int getTextLength();
void setCustomValidity(String validationFailure);
boolean checkValidity();
boolean reportValidity();
void select();