Closed
Description
I create a basic input using both maxlength
and required
attributes. Only the length
is in the data-validation
field of the generated input, therefore the required
was not validated.
source:
<input type="text" required maxlength="20">
output:
<input type="text" required="" maxlength="20" data-validation="length" data-validation-length="max20" class="valid">