Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 364451 - [Accessibility] Product Configuration: Not possible to tab into link's description
Summary: [Accessibility] Product Configuration: Not possible to tab into link's descri...
Status: CLOSED WONTFIX
Alias: None
Product: Equinox
Classification: Eclipse Project
Component: p2 (show other bugs)
Version: 3.4.2   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: P2 Inbox CLA
QA Contact:
URL:
Whiteboard: stalebug
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-22 05:41 EST by Simon Mising name CLA
Modified: 2019-08-27 18:15 EDT (History)
4 users (show)

See Also:


Attachments
Sample Screenshot (84.77 KB, image/png)
2011-12-02 08:02 EST, Simon Mising name CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Simon Mising name CLA 2011-11-22 05:41:59 EST
Build Identifier: M20090211-1700

It is not possible to tab to the description of the link. You only can tab from link to link.
Therefore JAWS cannot read the link description

Reproducible: Always

Steps to Reproduce:
1. Change to Classic Update (Preferences > Capabilities > Classic Update
2. Help > Software Updates > Manage Configuration ...
3. Navigate through wizard using tab
Comment 1 Remy Suen CLA 2011-11-22 08:36:33 EST
Does this occur in all links?
Comment 2 Simon Mising name CLA 2011-12-02 08:02:49 EST
Created attachment 207836 [details]
Sample Screenshot
Comment 3 Simon Mising name CLA 2011-12-02 08:03:48 EST
I hope you don't misunderstand me:
The links are accessible with tab but the description under the links are not accessible.
I added a sample screenshot and marked all not accessible elements with a red circle.
Comment 4 Peter Parapounsky CLA 2017-07-07 17:18:43 EDT
This occurs in all Link controls so this should probably be moved to the SWT component. Attaching a simple program to reproduce. Notice how in the Link control text, only the link section is accessible ("<a>More Details</a>") and read aloud by screen readers such JAWS and the Windows Narrator. The link description ("This is a Link control") is never read.


import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Link;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class TestLinkControl {

	public static void main(String[] args) {
		Display display = new Display();
		Shell shell = new Shell(display);
		shell.setBounds(100, 100, 500, 500);
		Text label = new Text(shell, SWT.BORDER);
		label.setBounds(1, 1, 300, 100);
		label.setEditable(true);
		label.setText("This a Text control.");

		Link link = new Link(shell, SWT.BORDER);
		link.setBounds(1, 150, 300, 100);
		link.setEnabled(true);
		link.setText("This is a Link control.<a>More Details</a>");

		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch())
				display.sleep();
		}
		display.dispose();
	}
}
Comment 5 Eclipse Genie CLA 2019-08-27 18:15:47 EDT
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet.

If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.