Skip to content

Commit

Permalink
Tweak 1.4.10 Reflow understanding intent
Browse files Browse the repository at this point in the history
Takes #326 (comment) as a starting point, but further clarifies the difference here between *overflowing* content (that is still reachable, but requires scrolling) and cut-off/hidden (is unreachable, basically `overflow:hidden` in CSS terms, or where scrolling has somehow been suppressed altogether)

Closes #326
  • Loading branch information
patrickhlauke committed May 19, 2021
1 parent c9e2cfc commit 29096d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion understanding/21/reflow.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>Understanding Reflow</h1>
<h2>Intent of this Success Criterion</h2>
<p>The intent of this Success Criterion is to support people with low vision who need to enlarge text and read it in a single column. When the browser zoom is used to scale content to 400%, it reflows - i.e., it is presented in one column so that scrolling in more than one direction is not necessary.</p>
<p>For people with low vision, enlarged text with reflow enables reading. It is critical. Enlargement enables perception of characters. Reflow enables tracking. Tracking is following along lines of text, including getting from the end of one line to the beginning of the next line.</p>
<p>Avoiding the need to scroll in the direction of reading in order to reveal lines that are cut off by the viewport is important, because such scrolling significantly increases the effort required to read. It is also important that content is not hidden off-screen. For example, zooming into a vertically scrolling page should not cause content to be hidden to one side.</p>
<p>Avoiding the need to scroll in the direction of reading in order to reveal lines that are overflow the viewport is important, because such scrolling significantly increases the effort required to read. It is also important that content is not hidden off-screen and completely cut off. For example, using the browser's zoom functionality on a vertically scrolling page should not cause content to be hidden to one side, with no way of reaching it.</p>
<section>
<h3>How reflow works</h3>
<p>User agents for technologies such as HTML/CSS, PDF, and ePub have methods for reflowing content to fit the width of the window (viewport). When appropriately authored, page content can reflow (wrap) to stay within the window's boundaries (viewport) when users zoom in to enlarge the size of content. Spatial relationships of content may change when users zoom, but all information and functionality should continue to be available.</p>
Expand Down

0 comments on commit 29096d9

Please sign in to comment.