Skip to content

Commit 9749a43

Browse files
committedDec 9, 2022
8298457: Instructions in a11y manual tests need to be updated
Reviewed-by: kizune, serb
1 parent 7dbdd83 commit 9749a43

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎test/jdk/java/awt/a11y/AccessibleActionsTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void createTest() {
5757
+ "Check a11y actions.\n\n"
5858
+ "Turn screen reader on, and Tab to the label.\n\n"
5959
+ "Perform the VO action \"Press\" (VO+space)\n"
60-
+ "Perform the VO action \"Show menu\" (VO+Shift+m)\n\n"
60+
+ "Perform the VO action \"Show menu\" (Shift+VO+m)\n\n"
6161
+ "If after the first action the text of the label has changed, and after the second action the menu appears tab further and press PASS, otherwise press FAIL.";
6262

6363
exceptionString = "AccessibleAction test failed!";
@@ -67,7 +67,7 @@ void createTest() {
6767
void createTree() {
6868
INSTRUCTIONS = "INSTRUCTIONS:\n"
6969
+ "Check a11y actions.\n\n"
70-
+ "Turn screen reader on, and Tab to the label.\n\n"
70+
+ "Turn screen reader on, and Tab to the tree.\n\n"
7171
+ "Perform the VO action \"Press\" (VO+space) on tree nodes\n\n"
7272
+ "If after press the tree node is expanded tab further and press PASS, otherwise press FAIL.";
7373

‎test/jdk/java/awt/a11y/AccessibleJTabbedPaneTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void createTabPane() {
5252
INSTRUCTIONS = "INSTRUCTIONS:\n"
5353
+ "Check a11y of JTabbedPane.\n\n"
5454
+ "Turn screen reader on, and tab to the JTabbedPane.\n"
55-
+ "Use page up and page down arrow buttons to move through the tabs.\n\n"
55+
+ "Use the left and right arrow buttons to move through the tabs.\n\n"
5656
+ "If you can hear selected tab names tab further and press PASS, otherwise press FAIL.\n";
5757

5858
JTabbedPane tabbedPane = new JTabbedPane();

‎test/jdk/java/awt/a11y/AccessibleTextTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ private void createSimpleLabel() {
5858
+ "Check a11y of JLabel.\n\n"
5959
+ "Turn screen reader on.\n"
6060
+ "On MacOS, use the VO navigation keys to read the label text;\n"
61-
+ "ON Windows with JAWS, use window virtualization (insert+alt+w and arrows) to read the label text;\n"
62-
+ "ON Windows with NVDA, use the browse cursor (insert+num4 or insert+num6) to read the label text;\n\n"
61+
+ "On Windows with JAWS, use JAWS cursor (num_minus and arrows) to read the label text;\n"
62+
+ "On Windows with NVDA, use the object navigation (insert+num4 or insert+num6) to read the label text;\n\n"
6363
+ "If you can hear text from label tab further and press PASS, otherwise press FAIL.";
6464

6565
JLabel label = new JLabel("this is a label");

0 commit comments

Comments
 (0)
Please sign in to comment.