File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -686,7 +686,7 @@ module.exports = function() {
686686 /* eslint-disable no-implicit-coercion */
687687 //setting input[value] to same value by typing on focused element moves cursor to end in Chrome
688688 //setting input[type=file][value] to same value causes an error to be generated if it's non-empty
689- //resetting user-edited values by script bypasses minlength/maxlength validation (#2256)
689+ //minlength/maxlength validation isn't performed on script-set values (#2256)
690690 if ( ( vnode . tag === "input" || vnode . tag === "textarea" ) && vnode . dom . value === "" + value ) return
691691 //setting select[value] to same value while having select open blinks select dropdown in Chrome
692692 if ( vnode . tag === "select" && old !== null && vnode . dom . value === "" + value ) return
You can’t perform that action at this time.
0 commit comments