The <textarea> already has implicit ARIA semantics role="textbox" recognized by Assistive Technologies and should not be used in <input type="text"> nor <textarea> elements. This is the same situation when role="form" should not be added to a <form> element.
role="textbox" with necessary ARIA attributes are usually used to remediate legacy code where unsemantic <div> or <span> was used to create a textarea, which is not the case for bp-nouveau.
The
<textarea>
already has implicit ARIA semanticsrole="textbox"
recognized by Assistive Technologies and should not be used in<input type="text">
nor<textarea>
elements. This is the same situation whenrole="form"
should not be added to a<form>
element.role="textbox"
with necessary ARIA attributes are usually used to remediate legacy code where unsemantic<div>
or<span>
was used to create a textarea, which is not the case for bp-nouveau.