-
Notifications
You must be signed in to change notification settings - Fork 431
Tweak G13, on-input understanding, F37 #4291
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
06b1c56
Tweak G13 and on-input understanding
patrickhlauke 6a31f3c
Add clarification/note to F37
patrickhlauke eca62dc
Merge branch 'main' into patrickhlauke-techniqueG13-tweak
patrickhlauke fb66acf
Merge branch 'main' into patrickhlauke-techniqueG13-tweak
kfranqueiro 933c754
Reduce whitespace diff and fix missed edit on sync
kfranqueiro f8dcda6
Update techniques/failures/F37.html
patrickhlauke 0ff6c0a
Merge branch 'main' into patrickhlauke-techniqueG13-tweak
patrickhlauke 6642e6e
Update techniques/failures/F37.html
mbgower d6abf1a
Update techniques/failures/F37.html
mbgower a64934e
Update techniques/general/G13.html
mbgower 05995d2
Update techniques/general/G13.html
mbgower 263e5d6
Update techniques/general/G13.html
mbgower 8681243
Update techniques/general/G13.html
mbgower 5db1fa4
Update techniques/general/G13.html
mbgower f351ffc
Update understanding/20/on-input.html
mbgower 19c45f8
Update understanding/20/on-input.html
mbgower 2428d57
Update understanding/20/on-input.html
mbgower a371f54
Update understanding/20/on-input.html
mbgower fdaa97a
Update understanding/20/on-input.html
mbgower d2c779b
Update understanding/20/on-input.html
mbgower 5641f34
Apply suggestions from code review
mbgower 90dd368
Update techniques/failures/F37.html
mbgower f41c2ae
Merge branch 'main' into patrickhlauke-techniqueG13-tweak
patrickhlauke 306274c
Update understanding/20/on-input.html
mbgower 2b1720a
Merge branch 'main' into patrickhlauke-techniqueG13-tweak
mbgower File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,72 @@ | ||
| <!DOCTYPE html><html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><title>Describing what will happen before a change to a form control that causes a change of context to occur is made</title><link rel="stylesheet" type="text/css" href="../../css/sources.css" class="remove"/></head><body><h1>Describing what will happen before a change to a form control that causes a change of context to occur is made</h1><section class="meta"><p class="id">ID: G13</p><p class="technology">Technology: general</p><p class="type">Type: Technique</p></section><section id="applicability"><h2>When to Use</h2> | ||
| <p>Applies to all technologies.</p> | ||
| </section><section id="description"><h2>Description</h2> | ||
| <p>The objective of this technique is to provide information to users about | ||
| what will happen when a change to a form control results in a change of | ||
| context. Because changing the value of a form control does not typically | ||
| result in a change of context, it is important that authors provide | ||
| instructions that make the user aware of the behavior in advance. Where | ||
| possible, it is a good idea to programmatically associate the instructions | ||
| describing the change with the form control itself.</p> | ||
| <p>The following are some examples of how to provide the instruction in different situations.</p> | ||
| <ul> | ||
| <li>Provide instruction on the Web page with reading order that precedes the user interface element that causes change of context by change of setting.</li> | ||
| <li>For a multi-step process where users must complete particular steps in order to reach the user interface element where changes of setting would cause a change of context, provide the instruction as part of the process prior to the step where they would encounter the change of context.</li> | ||
| <li>In the case of an intranet where user training is required prior to the use of a Web application where user interface elements that cause changes of context when settings are changed, instruction is provided as part of the training.</li> | ||
| </ul> | ||
| </section><section id="examples"><h2>Examples</h2> | ||
| <ul> | ||
| <li>A series of radio buttons at the top of a page include | ||
| options for German, French and Spanish. Instructions precede | ||
| the buttons that instruct the user that the language will be | ||
| changed upon selecting an option.</li> | ||
| <li>A 50 question online survey displays one question at a time. | ||
| Instructions appear at the beginning of the survey that | ||
| explain that users will be taken to the next question of the | ||
| survey upon selecting an answer to each question.</li> | ||
| </ul> | ||
| </section><section id="tests"><h2>Tests</h2> | ||
| <section class="procedure"><h3>Procedure</h3> | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <title>Describing what will happen before a change to a form control that causes a change of context to occur is made</title> | ||
| <link rel="stylesheet" type="text/css" href="../../css/sources.css" class="remove"> | ||
| </head> | ||
| <body> | ||
| <h1>Describing what will happen before a change to a form control that causes a change of context to occur is made</h1> | ||
| <section class="meta"> | ||
| <p class="id">ID: G13</p> | ||
| <p class="technology">Technology: general</p> | ||
| <p class="type">Type: Technique</p> | ||
| </section> | ||
| <section id="applicability"> | ||
| <h2>When to Use</h2> | ||
| <p>Applies to all technologies.</p> | ||
| </section> | ||
| <section id="description"> | ||
| <h2>Description</h2> | ||
| <p>The objective of this technique is to provide information to users about | ||
| what will happen when a change to a form control results in a change of | ||
| context. Because changing the value of a form control does not typically | ||
| result in a change of context, it is important that authors provide | ||
| instructions that make the user aware of the behavior in advance. Where | ||
| possible, it is a good idea to programmatically associate the instructions | ||
| describing the change with the form control itself.</p> | ||
| <p>The following are some examples of how to provide the instruction in different situations.</p> | ||
| <ul> | ||
| <li>Provide instruction on the Web page with reading order that precedes the user interface element that causes change of context by change of setting.</li> | ||
| <li>For a multi-step process where users must complete particular steps in order to reach the user interface element where changes of setting would cause a change of context, provide the instruction as part of the process prior to the step where they would encounter the change of context.</li> | ||
| <li>In the case of an intranet where user training is required prior to the use of a Web application where user interface elements that cause changes of context when settings are changed, instruction is provided as part of the training.</li> | ||
| </ul> | ||
| </section> | ||
| <section id="examples"> | ||
| <h2>Examples</h2> | ||
| <ul> | ||
| <li>Locate content where changing the setting of a form control | ||
| <li>A select dropdown/form control at the top of a page includes | ||
| options for German, French and Spanish. Instructions precede | ||
| the select control that instruct the user that the language will be | ||
| changed upon selecting an option.</li> | ||
| <li>A 50 question online survey displays one question at a time, with each | ||
| answer marked up as a toggle button. | ||
| Instructions appear at the beginning of the survey that | ||
| explain that users will be taken to the next question of the | ||
| survey upon selecting an answer to each question.</li> | ||
| </ul> | ||
| </section><section id="tests"><h2>Tests</h2> | ||
| <section class="procedure"><h3>Procedure</h3> | ||
| <ul> | ||
| <li>Locate content where changing the setting of a form control | ||
| results in a change of context</li> | ||
| <li>Check to see that an explanation of what will happen when the | ||
| <li>Check to see that an explanation of what will happen when the | ||
| control is changed is available prior to the controls activation</li> | ||
| </ul> | ||
| </ul> | ||
| </section> | ||
| <section class="results"><h3>Expected Results</h3> | ||
| <ul> | ||
| <li>Check #2 is true.</li> | ||
| </ul> | ||
| </section> | ||
| </section> | ||
| <section class="results"><h3>Expected Results</h3> | ||
| <section id="related"> | ||
| <h2>Related Techniques</h2> | ||
| <ul> | ||
| <li>Check #2 is true.</li> | ||
| <li><a href="../general/G80">G80</a></li> | ||
| </ul> | ||
| </section> | ||
| </section><section id="related"><h2>Related Techniques</h2><ul> | ||
| <li><a href="../general/G80">G80</a></li> | ||
| </ul></section><section id="resources"><h2>Resources</h2> | ||
| </section></body></html> | ||
| <section id="resources"> | ||
| <h2>Resources</h2> | ||
| </section> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.