You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example of <input> element when you first land on the page and Firefox jumping the gun on validation.
Looks like the page is being fed required="" on <input> fields and firefox doesn't know how to handle that. If Firefox is fed required only the issue should be resolved. required="true" will work as well but required falls in line with html5 spec.
As a side note, <select> fields behave correctly with validation and will only apply an outline after the form is submitted.
The text was updated successfully, but these errors were encountered:
This appears to be due to how Ember is applying the attributeBindings and a special case for "required". Looks like the issue is being tracked here: emberjs/ember.js#14737
Additionally this doesn't appear to be related to required="". You can test this by just rendering <input type="text" name="testme" required=""> in Firefox and seeing that the validation does not render until there has been a focusout change.
Example of

<input>
element when you first land on the page and Firefox jumping the gun on validation.Looks like the page is being fed
required=""
on<input>
fields and firefox doesn't know how to handle that. If Firefox is fedrequired
only the issue should be resolved.required="true"
will work as well butrequired
falls in line with html5 spec.As a side note,
<select>
fields behave correctly with validation and will only apply an outline after the form is submitted.The text was updated successfully, but these errors were encountered: