Closed davidhund closed 6 years ago
validityState-polyfill.js:L19 is currently:
var type = field.getAttribute('type') || input.nodeName.toLowerCase();
.. but should IMO be:
var type = field.getAttribute('type') || field.nodeName.toLowerCase();
Yes! Good catch! I'll get this fixed ASAP.
Looks like I fixed this a while ago and never closed the issue.
validityState-polyfill.js:L19 is currently:
.. but should IMO be: