Description
After upgrading to jQuery 3.6.2 pseudo selector :valid does not work in selector list with Firefox and Safari. Everything works with Chrome.
This worked in 3.6.1
jQuery('body').find('div:valid, span')
In 3.6.2 it gives following error:
Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: valid
This still works with old and new versions with Firefox and Safari:
jQuery('body').find('div:valid')