Get HTML5 minlength working.

Adding minLength=X to an input element would not work, whereas maxLength=X would work.

This change gets minLength=X working.
This commit is contained in:
wali-s
2015-05-14 14:06:22 -07:00
parent 7112a35037
commit aeb45360ed
@@ -115,6 +115,7 @@ var HTMLDOMPropertyConfig = {
mediaGroup: null,
method: null,
min: null,
minLength: MUST_USE_ATTRIBUTE,
multiple: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
muted: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
name: null,