diff --git a/index.html b/index.html index 9889435d2..57df19971 100644 --- a/index.html +++ b/index.html @@ -5931,7 +5931,32 @@
none role.A section whose content is parenthetic or ancillary to the main content of the resource.
+A
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
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 contains structured or interactive content (for example, a link, button, list, table, etc.) use note is brief and consists of static text, use + <!-- 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> +