Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 2f79bea

Browse files
committed
fix(ngMaxlength): ignore maxlength when not set to a non-negative integer
This makes the behaviour of maxlength/ngMaxlength more inline with the spec. Closes #9874
1 parent d08efc3 commit 2f79bea

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

src/ng/directive/input.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2669,9 +2669,10 @@ var maxlengthDirective = function() {
26692669
link: function(scope, elm, attr, ctrl) {
26702670
if (!ctrl) return;
26712671

2672-
var maxlength = 0;
2672+
var maxlength = -1;
26732673
attr.$observe('maxlength', function(value) {
2674-
maxlength = int(value) || 0;
2674+
var intVal = int(value);
2675+
maxlength = isNaN(intVal) ? -1 : intVal;
26752676
ctrl.$validate();
26762677
});
26772678
ctrl.$validators.maxlength = function(modelValue, viewValue) {

test/ng/directive/inputSpec.js

+31
Original file line numberDiff line numberDiff line change
@@ -2452,6 +2452,16 @@ describe('input', function() {
24522452
expect(inputElm).toBeValid();
24532453
});
24542454

2455+
it('should only accept empty values when maxlength is 0', function() {
2456+
compileInput('<input type="text" ng-model="value" ng-maxlength="0" />');
2457+
2458+
changeInputValueTo('');
2459+
expect(inputElm).toBeValid();
2460+
2461+
changeInputValueTo('a');
2462+
expect(inputElm).toBeInvalid();
2463+
});
2464+
24552465
it('should accept values of any length when maxlength is negative', function() {
24562466
compileInput('<input type="text" ng-model="value" ng-maxlength="-1" />');
24572467

@@ -2462,6 +2472,27 @@ describe('input', function() {
24622472
expect(inputElm).toBeValid();
24632473
});
24642474

2475+
it('should accept values of any length when maxlength is non-numeric', function() {
2476+
compileInput('<input type="text" ng-model="value" ng-maxlength="{{maxlength}}" />');
2477+
changeInputValueTo('aaaaaaaaaa');
2478+
2479+
scope.$apply('maxlength = "5"');
2480+
expect(inputElm).toBeInvalid();
2481+
2482+
scope.$apply('maxlength = "abc"');
2483+
expect(inputElm).toBeValid();
2484+
2485+
scope.$apply('maxlength = ""');
2486+
expect(inputElm).toBeValid();
2487+
2488+
scope.$apply('maxlength = null');
2489+
expect(inputElm).toBeValid();
2490+
2491+
scope.someObj = {};
2492+
scope.$apply('maxlength = someObj');
2493+
expect(inputElm).toBeValid();
2494+
});
2495+
24652496
it('should listen on ng-maxlength when maxlength is observed', function() {
24662497
var value = 0;
24672498
compileInput('<input type="text" ng-model="value" ng-maxlength="max" attr-capture />');

0 commit comments

Comments
 (0)