diff --git a/src/ng/directive/validators.js b/src/ng/directive/validators.js index ef7650f10ceb..474402b107cc 100644 --- a/src/ng/directive/validators.js +++ b/src/ng/directive/validators.js @@ -43,8 +43,9 @@ var patternDirective = function() { ctrl.$validate(); }); - ctrl.$validators.pattern = function(value) { - return ctrl.$isEmpty(value) || isUndefined(regexp) || regexp.test(value); + ctrl.$validators.pattern = function(modelValue, viewValue) { + // HTML5 pattern constraint validates the input value, so we validate the viewValue + return ctrl.$isEmpty(viewValue) || isUndefined(regexp) || regexp.test(viewValue); }; } }; diff --git a/test/ng/directive/validatorsSpec.js b/test/ng/directive/validatorsSpec.js index 048f8cc0756c..6b20d6e11086 100644 --- a/test/ng/directive/validatorsSpec.js +++ b/test/ng/directive/validatorsSpec.js @@ -204,6 +204,21 @@ describe('validators', function() { expect($rootScope.form.test.$error.pattern).toBe(true); expect(inputElm).not.toBeValid(); }); + + + it('should validate the viewValue and not the modelValue', function() { + var inputElm = helper.compileInput(''); + var ctrl = inputElm.controller('ngModel'); + + ctrl.$parsers.push(function(value) { + return (value * 10) + ''; + }); + + helper.changeInputValueTo('1234'); + expect($rootScope.form.test.$error.pattern).not.toBe(true); + expect($rootScope.form.test.$modelValue).toBe('12340'); + expect(inputElm).toBeValid(); + }); });