diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 10374c3fd04c..44737a34fe1e 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -2059,8 +2059,15 @@ var requiredDirective = function() { if (!ctrl) return; attr.required = true; // force truthy in case we are on non input element + var validity = elm.prop('validity'); + if (!isObject(validity)) { + validity = { + valid: true + }; + } + var validator = function(value) { - if (attr.required && ctrl.$isEmpty(value)) { + if (attr.required && (validity.valueMissing || ctrl.$isEmpty(value))) { ctrl.$setValidity('required', false); return; } else {