From 01be11ef45acec76a4de96b9b2ab6c4e1a820b4f Mon Sep 17 00:00:00 2001
From: Matt King
Date: Tue, 7 Feb 2017 11:13:12 -0800
Subject: [PATCH] Make Link Context Menu Optional
Made the following changes Per discussion of issue #228 in Feb 6 authoring practices meeting.
modified aria-practices.html:
In the link pattern section, keyboard subsection, marked the context menu key (shift+f10) as optional.
modified examples/link/link.html:
In the example introduction, added the following sentence to the note encouraging authors to use native HTML links:
"Browsers provide valuable functionality for native HTML links, e.g., open the target in a new window and copy the target URL to the system clipboard."
---
aria-practices.html | 2 +-
examples/link/link.html | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/aria-practices.html b/aria-practices.html
index d0b60e291d..9cc668cee9 100644
--- a/aria-practices.html
+++ b/aria-practices.html
@@ -1092,7 +1092,7 @@ Link
Keyboard Interaction
- Enter: Executes the link and moves focus to the link target.
- - Shift + F10: Opens the link's context menu.
+ - Shift + F10 (Optional): Opens a context menu for the link.
diff --git a/examples/link/link.html b/examples/link/link.html
index 88f249ceb7..e02331dd83 100644
--- a/examples/link/link.html
+++ b/examples/link/link.html
@@ -26,7 +26,10 @@ Link Examples
design pattern for link.
The link pattern is used when it is necessary for elements other than the HTML a
element to have link behaviors.
- Note: Use the HTML a
element to create links whenever possible.
+
+ Note: Use the HTML a
element to create links whenever possible.
+ Browsers provide valuable functionality for native HTML links, e.g., open the target in a new window and copy the target URL to the system clipboard.
+