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
We can make that change, but it shouldn't make a difference since el.getAttribute calls .toLowerCase() before actually doing any work (MDN docs here).
Ohh I see. Cool. Thanks!
shubham88fru
changed the title
Check or "maxlength" attribute instead of "maxLength" in "-guard-for-maxlength.ts"
Check for "maxlength" attribute instead of "maxLength" in "-guard-for-maxlength.ts"
Mar 15, 2022
ember-test-helpers/addon-test-support/@ember/test-helpers/dom/-guard-for-maxlength.ts
Line 22 in 7d0aab9
Hi All,
Shouldn't this piece of code above be doing -
(i.e. lowercase 'maxlength').
instead of camelCase 'maxLength' ?
If understand correctly,
element
represents the DOM element, and if I refer MDN the maximum length attribute ismaxlength
and notmaxLength
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength
The text was updated successfully, but these errors were encountered: