Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.4.4 Resize Text: when truncation is acceptable #3960

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions understanding/20/resize-text.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,12 @@ <h2>Intent of Resize Text</h2>
cell content that is too long to be displayed in a column can be truncated, and the
full content of the cell is available to the user when the cell receives focus. The
content of a user interface component may also become too wide in user interfaces
where the user can resize the column width. In this type of user interface component,
line wrapping is not required; truncation is acceptable if the component's full content
is available on focus or after user activation and an indication that this information
can be accessed, is provided to the user in some way besides the fact that it is truncated.
where the user can resize the column width. Alternately, there might not be any
user-supplied content or user-specified column width - there might simply not be enough
space for the content. In these cases, line wrapping is not required; truncation is
acceptable if the component's full content is available on focus or after user activation
and an indication that this information can be accessed, is provided to the user in some
way besides the fact that it is truncated.
</p>

<p>Content satisfies the Success Criterion if it can be scaled up to 200%, that is, up
Expand Down