﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8401	Accessibility: Problems navigating radio buttons in a dialog using the keyboard	Teresa Monahan		"When radio buttons are included in a dialog, keyboard navigation does not work correctly.

The following issues occur:
1. When radio buttons are the first focusable element on the dialog, it is not possible to tab to them.

2. If there is a focusable element before the radio buttons, it is necessary to tab twice to enter the radio button group.

3. Once inside a radio button group, it is not possible to exit the radio button group by pressing tab.

To reproduce, add the following UI element to a dialog and try to navigate through it using only the keyboard:

{{{
{
	type : 'fieldset',
	label : 'Radio Buttons',
	children :
	[
		{
			type : 'radio',
			id : 'type',
			required : true,
			'default' : 'one',
			items :
			[
				[ 'Radio1', 'one' ],
				[ 'Radio2', 'two' ]
			]
		}
	]
}
}}}"	Bug	closed	Normal		Accessibility	3.2	duplicate	IBM	Damian Satya Minnekanti
