This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix(ngAria): don't attach roles to native controls #14076
Labels
Milestone
Comments
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Feb 27, 2016
don't add roles to (textarea, button, select, input) fix angular#14076
3 tasks
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Feb 27, 2016
don't add roles to (textarea, button, select, summary, details, a, input) fix angular#14076
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Feb 27, 2016
don't add roles to (textarea, button, select, summary, details, a, input) fix angular#14076
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Feb 27, 2016
don't add roles to (textarea, button, select, summary, details, a, input) fix angular#14076
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Feb 28, 2016
don't add roles to (textarea, button, select, summary, details, a, input) fix angular#14076
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Feb 28, 2016
don't add roles to textarea, button, select, summary, details, a and input (albeit a small one that shouldn't affect a11y) fix angular#14076
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Mar 30, 2016
don't add roles to textarea, button, select, summary, details, a and input BREAKING CHANGE: albeit a small one that shouldn't affect a11y Closes angular#14076
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Mar 30, 2016
don't add roles to textarea, button, select, summary, details, a and input Closes angular#14076 BREAKING CHANGE: albeit a small one that shouldn't affect a11y
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Mar 30, 2016
don't add roles to textarea, button, select, summary, details, a and input Closes angular#14076 BREAKING CHANGE: albeit a small one that shouldn't affect a11y
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Mar 30, 2016
prevent ngAria from attaching roles to textarea, button, select, summary, details, a and input Closes angular#14076 BREAKING CHANGE: Curreny behavior that ngAria don't attach roles to input elements but it does so to other natve controls. so this change will prevent ngAria from attaching roles to native elements like (textrea, select, button, etc) and it will only attach roles to non-native controls. and this should not affect accessibility, because native inputs are accessible by default. (albeit a small one that shouldn't affect a11y)
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Mar 30, 2016
prevent ngAria from attaching roles to textarea, button, select, summary, details, a and input Closes angular#14076 BREAKING CHANGE: Curreny behavior that ngAria don't attach roles to input elements but it does so to other natve controls. so this change will prevent ngAria from attaching roles to native elements like (textrea, select, button, etc) and it will only attach roles to non-native controls. and this should not affect accessibility, because native inputs are accessible by default. (albeit a small one that shouldn't affect a11y)
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Mar 30, 2016
prevent ngAria from attaching roles to textarea, button, select, summary, details, a and input Closes angular#14076 BREAKING CHANGE: Curreny behavior is that ngAria don't attach roles to input elements but it does so to other natve controls. so this change will prevent ngAria from attaching roles to native elements like (textrea, select, button, etc) and it will only attach roles to non-native controls. and this should not affect accessibility, because native inputs are accessible by default. (albeit a small one that shouldn't affect a11y)
m-amr
added a commit
to m-amr/angular.js
that referenced
this issue
Apr 8, 2016
prevent ngAria from attaching roles to textarea, button, select, summary, details, a and input Closes angular#14076 BREAKING CHANGE: Curreny behavior is that ngAria don't attach roles to input elements but it does so to other native controls. so this change will prevent ngAria from attaching roles to native elements like (textrea, select, button, etc) and it will only attach roles to non-native controls. and this should not affect accessibility, because native inputs are accessible by default. (albeit a small one that shouldn't affect a11y)
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Currently,
ngAria
doesn't attach roles toinput
elements, but it does so to other native controls (e.g.textarea
,select
,button
etc). As discussed in #13483 (comment), it should only attach roles to non-native controls.This is a slight BC (shouldn't affect A11Y, though).
The text was updated successfully, but these errors were encountered: