diff --git a/index.html b/index.html index 9889435d2..57df19971 100644 --- a/index.html +++ b/index.html @@ -5931,7 +5931,32 @@
Note regarding the ARIA 1.1 none role.
note
-

A section whose content is parenthetic or ancillary to the main content of the resource.

+

A section whose content represents additional information or parenthetical context to the primary content it supplements.

+

A note is content provided by the author of the page or document, it is not to be used for providing reactions or suggestions. For these purposes, please review comment and suggestion.

+

When used within the normal flow of a page's content, a note has an implicit association with the content that it supplements. The following example demonstrates using a note to call out additional information in the natural reading order of a page:

+
+					<p>... the following results outline support for the tested features.</p>
+					<div role="note">
+					  <p>Please keep in mind that at the time of publishing this page all results were accurate.</p>
+					  <p>If you find any variations in results, please let us know!</p>
+					</div>
+					<p>...</p>
+				
+

In cases where an element with role note has been determined to need a programmatic association with the content it supplements, authors can use one of the following mechanisms to associate the elements:

+ +
+				  <!-- using aria-details to reference a note containing a link -->
+				  ...
+					<button aria-details="info-note">Get Started</button>
+					...
+					<div role="note" id="info-note">
+					  <p>Need more information before you get started?</p> 
+					  <p>Visit our <a href="...">product description page</a> to get all the information you need.</p>
+					</div>
+				
Characteristics: