I'm a bit worried about using HTML5's Form Validation because despite the simplicity of implementation for some browsers, especially IOs and Safari support is partial as seen here .
In my current project (which I'm implementing Form Validation) the need is that all forms have to be correctly validated in all major browsers on the market, and for simplicity of implementation (which does not require any javascript ) I would like to be able to implement only HTML5 Form Validation for Client-side validations. The question is: should I? Considering that some browsers only provide partial support (what does this mean exactly?), my fear is that in some of these browsers the mandatory completion is not requested due to lack of browser support.
Note: this is not a question of security, but of support in the main browsers, considering a scenario where only HTML5 Form Validation is implemented, without any other kind of validation through javascript.
Note 2: Consider only browsers in their most current versions.