Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(ngAria): remove tabindex from radio buttons #13095

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/ngAria/aria.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
}
},
post: function(scope, elem, attr, ngModel) {
var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem);
var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem)
&& !isNodeOneOf(elem, nodeBlackList);

function ngAriaWatchModelValue() {
return ngModel.$modelValue;
Expand Down
22 changes: 12 additions & 10 deletions test/ngAria/ariaSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -616,16 +616,18 @@ describe('$aria', function() {
describe('tabindex', function() {
beforeEach(injectScopeAndCompiler);

it('should not attach to native controls', function() {
var element = [
$compile("<button ng-click='something'></button>")(scope),
$compile("<a ng-href='#/something'>")(scope),
$compile("<input ng-model='val'>")(scope),
$compile("<textarea ng-model='val'></textarea>")(scope),
$compile("<select ng-model='val'></select>")(scope),
$compile("<details ng-model='val'></details>")(scope)
];
expectAriaAttrOnEachElement(element, 'tabindex', undefined);
they('should not attach to native control $prop with ng-model', {
'button': "<button ng-click='something'></button>",
'a': "<a ng-href='#/something'>",
'input[text]': "<input type='text' ng-model='val'>",
'input[radio]': "<input type='radio' ng-model='val'>",
'input[checkbox]': "<input type='checkbox' ng-model='val'>",
'textarea': "<textarea ng-model='val'></textarea>",
'select': "<select ng-model='val'></select>",
'details': "<details ng-model='val'></details>"
}, function(html) {
compileElement(html);
expect(element.attr('tabindex')).toBeUndefined();
});

it('should not attach to random ng-model elements', function() {
Expand Down