Skip to content

Commit

Permalink
Editorial Revision of Feed Pattern
Browse files Browse the repository at this point in the history
For issue #245, modified feed pattern section in aria-practices.html to
correct multiple typos and make minor editorial revisions to wording of the description.
  • Loading branch information
mcking65 committed Mar 10, 2017
1 parent 7ba516c commit 574dc1b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions aria-practices.html
Original file line number Diff line number Diff line change
Expand Up @@ -579,11 +579,11 @@ <h3 class="widget-name">Feed</h3>
unstructured information that may contain links or other interactive elements.
</p>
<p>
For example, a product page on a shopping site has a related products section that
displays five product suggestions at a time. As the user scrolls, more suggestions are requested and loaded into the DOM.
While a static design might include a next button for loading five more product suggestions, a dynamic implementation
For example, a product page on a shopping site may have a related products section that
displays five products at a time. As the user scrolls, more products are requested and loaded into the DOM.
While a static design might include a next button for loading five more products, a dynamic implementation
that automatically loads data as needed simplifies the user
experience and reduces the inertia of viewing more than the first five suggestions.
experience and reduces the inertia associated with viewing more than the first five product suggestions.
</p>
<p>
Unfortunately, when web pages load content dynamically based on scroll events, it
Expand Down Expand Up @@ -622,7 +622,7 @@ <h3 class="widget-name">Feed</h3>
of feed content while staying in its reading mode.
</p>
<p>
Another feature of the feed pattern is its ability to facilitate skim reading by
Another feature of the feed pattern is its ability to facilitate skim reading for
assistive technology users. Web page authors may provide both an accessible name and
description for each article. By identifying the elements inside of an
article that provide the title and the primary content, assistive technologies can provide
Expand Down Expand Up @@ -651,7 +651,7 @@ <h4>Keyboard Interaction</h4>
Options for supporting nested feed navigation include:
<ul>
<li>
Users move focus into the nested feed from the content of the containing article with <kbd>Tab</kbd>.
Users move focus into the nested feed from the content of the containing article with <kbd>Tab</kbd>.
This may be slow if the article contains a significant number of links, buttons, or other widgets.
</li>
<li>Provide a key for moving focus from the elements in the containing article to the first item in the nested feed, e.g., <kbd>Alt + Page Down</kbd>.</li>
Expand Down Expand Up @@ -690,8 +690,8 @@ <h4>WAI-ARIA Roles, States, and Properties</h4>
</li>
<li>
Each <code>article</code> element has
<a href="#aria-setsize" class="property-reference">aria-setsize</a>
set to a value that represents either the total number of articles that have been loaded or the total number in the feed,
<a href="#aria-setsize" class="property-reference">aria-setsize</a>
set to a value that represents either the total number of articles that have been loaded or the total number in the feed,
depending on which value is deemed more helpful to users.
If the total number in the feed is undetermined, it can be represented by a <code>aria-setsize</code> value of <code>-1</code>.
</li>
Expand Down

0 comments on commit 574dc1b

Please sign in to comment.