{"id":173,"date":"2019-06-04T12:26:56","date_gmt":"2019-06-04T16:26:56","guid":{"rendered":"https:\/\/pressbooks.library.ryerson.ca\/iwacc\/?post_type=chapter&#038;p=173"},"modified":"2019-11-19T11:04:56","modified_gmt":"2019-11-19T16:04:56","slug":"1-3-adaptable-level-a","status":"publish","type":"chapter","link":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/","title":{"raw":"1.3 Adaptable (Level A)","rendered":"1.3 Adaptable (Level A)"},"content":{"raw":"<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #eb974e\">\r\n<h2><strong>Guideline 1.3<\/strong> Adaptable<\/h2>\r\nCreate content that can be presented in different ways without losing information or structure (e.g., a simpler layout).\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #f66\">\r\n\r\n<strong>Key Point: <\/strong>WCAG 2.0 included only Level A success criteria for <strong>Guideline 1.3<\/strong>. WCAG 2.1 added two additional Level AA requirements, plus one new Level AAA requirement that will be introduced on the page that follows.\r\n\r\n<\/div>\r\n<h3>Guideline 1.3 Adaptable Explained<\/h3>\r\n<strong>Why should I make it possible to present content in different ways?<\/strong>\r\n\r\nPeople need choices in how they use computers. One of the advantages of electronic documents over paper is flexibility. It is \u2014 or should be \u2014 easy to substitute one font for another or change colours, line spacing, margins, and dozens of other formatting characteristics. By following a handful of guidelines, web content authors make it easy for users to adjust the appearance and organization of web pages to suit users\u2019 individual needs. For example:\r\n<ol>\r\n \t<li>An individual with low vision can read many web pages when the font is yellow, zoomed at 400% larger than normal, and displayed on a black background. If web content authors follow guidelines, users can substitute a custom style sheet to display pages in their desired format.<\/li>\r\n \t<li>A screen reader user accesses an online article about Canadian weather. The content includes a data table that shows the number of hours of sunshine per year for every provincial capital. The user can navigate from cell to cell in the table, certain about which cells contain header information and which cells contain data. A user using a screen reader should be able to determine, for example, that Winnipeg receives an average of 2,372 hours of sunshine per year.<\/li>\r\n \t<li>A lawyer accesses the Internet from a web-enabled cell phone. Despite the small screen, she can easily read the content on a law library site that conforms to WCAG 2.1 guidelines.<\/li>\r\n<\/ol>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #ffcb05\">\r\n<h3><strong><a id=\"1.3.1\"><\/a>Success Criterion 1.3.1<\/strong> Info and Relationships<\/h3>\r\nLevel A\r\n\r\nInformation, structure, and relationships conveyed through presentation can be programmatically determined or are available in text.\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>Definition<\/strong>\r\n\r\n<strong>Programmatically Determined: <\/strong>Determined by software from author-supplied data provided in a way that different user agents, including assistive technologies, can extract and present this information to users in different modalities.\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>Definition<\/strong>\r\n\r\n<strong>User Agent<\/strong>: Typically a web browser, though could be any software used to present web content to users, including assistive technologies.\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>Definition<\/strong>\r\n\r\n<strong>Assistive Technology<\/strong>: Sometimes referred to as adaptive technology; software or hardware that acts as a user agent (or acts with a mainstream user agent) to provide functionality to meet the requirements of users with disabilities that go beyond those offered by mainstream user agents.\r\n\r\n<\/div>\r\n<h4>Info and Relationships Explained<\/h4>\r\nIf you look \u201cunder the hood\u201d of a web page, you will find a document that consists of all the words that appear on the page (the \u201ccontent\u201d) thickly interspersed with words, non-words, numbers, and symbols (the \u201ccode\u201d). The code describes how the content should be formatted and what purpose it serves. For example, you might find something like this on a recipe website:\r\n<pre><code>&lt;h1&gt;Recipes for Whole Wheat Bread&lt;\/h1&gt;\r\n<\/code><\/pre>\r\nThe pair of <code>&lt;h1&gt;<\/code>\u00a0and<code> &lt;\/h1&gt;<\/code> tags that surround \u201cRecipes for Whole Wheat Bread\u201d means that the phrase appears larger and bolder than the text that surrounds it, and the phrase is the most important heading on the page.\r\n\r\nWithin that page of recipes there may be several types of whole wheat bread. Each of those would be presented with an <code>&lt;h2&gt;<\/code> to indicate their relationship as subtopics to the main topic of the page presented in an <code>&lt;h1&gt;<\/code>. Likewise, within each recipe, there may be an <code>&lt;h3&gt;<\/code> used to present ingredients, another to present preparation instructions, and yet another for serving suggestions. Each of those <code>&lt;h3&gt;<\/code> headings has a relationship to the parent <code>&lt;h2&gt;<\/code>\u00a0but not to the other <code>&lt;h2&gt;<\/code> headings that represent other types of whole wheat bread. The following shows a semantic structure (i.e., the relationships of topics and subtopics) associated with the bread recipes.\r\n<!--insert code-->\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\r\n\r\n<strong>Technical:<\/strong>\r\n<pre>&lt;h1&gt;Recipes for Whole Wheat Bread&lt;\/h1&gt; \/\/main topic\r\n   &lt;h2&gt;Whole Grain Bread&lt;\/h2&gt; \/\/type of bread\r\n       &lt;h3&gt;Ingredients&lt;\/h3&gt; \/\/recipe elements\r\n       \u2026\r\n       &lt;h3&gt;Preparation&lt;\/h3&gt;\r\n       \u2026\r\n       &lt;h3&gt;Serving&lt;\/h3&gt;\r\n       \u2026\r\n   &lt;h2&gt;Multigrain Bread&lt;\/h2&gt; \/\/type of bread\r\n      &lt;h3&gt;Ingredients&lt;\/h3&gt; \/\/recipe elements\r\n      \u2026\r\n      &lt;h3&gt;Preparation&lt;\/h3&gt;\r\n      \u2026\r\n      &lt;h3&gt;Serving&lt;\/h3&gt;\r\n      \u2026\r\n   &lt;h2&gt;Sourdough Bread&lt;\/h2&gt; \/\/type of bread\r\n      &lt;h3&gt;Ingredients&lt;\/h3&gt; \/\/recipe elements\r\n       \u2026\r\n      &lt;h3&gt;Preparation&lt;\/h3&gt;\r\n      \u2026\r\n      &lt;h3&gt;Serving&lt;\/h3&gt;\r\n      \u2026<\/pre>\r\n<\/div>\r\nThe above semantic structure uses headings that represent topics, and subtopics could also be represented as a nested list. The following list maintains the same relationships defined by the headings above. In this case, there is a main list with one item, the main topic; three sublists with each type of bread; and one sublist under each of those representing the elements of a given recipe.\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\r\n\r\n<strong>Technical:<\/strong>\r\n<pre>&lt;ul&gt; \/\/main list of bread recipes\r\n&lt;li&gt;Recipes for Whole Wheat Bread\r\n   &lt;ul&gt; \/\/type of bread\r\n      &lt;li&gt;Whole Grain Bread\r\n      &lt;ul&gt; \/\/recipe elements\r\n         &lt;li&gt;Ingredients\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Preparation\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Serving\r\n         \u2026\r\n         &lt;\/li&gt;\r\n \u00a0    &lt;\/ul&gt; \r\n     &lt;\/li&gt;\r\n \u00a0&lt;\/ul&gt; \/\/End of Whole Grain type\r\n \u00a0&lt;ul&gt; \/\/type of bread\r\n     &lt;li&gt;Multigrain Bread\r\n     &lt;ul&gt; \/\/recipe elements\r\n        &lt;li&gt;Ingredients\r\n        \u2026\r\n        &lt;\/li&gt;\r\n        &lt;li&gt;Preparation\r\n        \u2026\r\n        &lt;\/li&gt;\r\n        &lt;li&gt;Serving\r\n        \u2026\r\n        &lt;\/li&gt;\r\n \u00a0   &lt;\/ul&gt;\r\n    &lt;\/li&gt;\r\n \u00a0&lt;\/ul&gt; \/\/End of Multigrain type\r\n \u00a0&lt;ul&gt; \/\/type of bread\r\n     &lt;li&gt;Sourdough Bread\r\n     &lt;ul&gt; \/\/recipe elements\r\n         &lt;li&gt;Ingredients\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Preparation\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Serving\r\n         \u2026\r\n         &lt;\/li&gt;\r\n \u00a0   &lt;\/ul&gt;\r\n     &lt;\/li&gt; \r\n \u00a0\u00a0&lt;\/ul&gt; \/\/End of Sourdough type\r\n&lt;\/li&gt; \r\n&lt;\/ul&gt; \/\/End of main list of bread recipes<\/pre>\r\n<\/div>\r\n<strong>SC 1.3.1<\/strong> requires web content authors to use the right code to generate relationships and associate related information. When they do, browsers and assistive technologies automatically \u201cunderstand\u201d how content relates to other content on the page. (This is what is meant by \u201cprogrammatically determined.\u201d) For example:\r\n<ul>\r\n \t<li>On a form with two fields, \u201cName\u201d and \u201cEmail address,\u201d using the correct code, in this case an associated <code>&lt;label&gt;<\/code> element, ensures that browsers and assistive technologies know that the first field contains the name and the second field contains the email address. In the example markup below, note that the <code>for<\/code> attribute with each label creates an association with the <code>id<\/code> attribute of the related input field. When an input field receives focus, the content of the associated label is read out.<\/li>\r\n<\/ul>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\r\n\r\n<strong>Technical:<\/strong>\r\n<pre style=\"padding-left: 40px\">&lt;form&gt;\r\n   &lt;label <strong>for<\/strong>=\"firstname\"&gt;Name&lt;\/label&gt;&lt;input type=\"text\" <strong>id<\/strong>=\"firstname\"\/&gt;\r\n   &lt;label <strong>for<\/strong>=\"emailaddress\"&gt;Email&lt;\/label&gt; &lt;input type=\"text\" <strong>id<\/strong>=\"emailaddress\" \/&gt;\r\n\u2026\r\n&lt;\/form&gt;<\/pre>\r\n<\/div>\r\n<ul>\r\n \t<li>In a table that displays the population of Canadian provinces, using the correct code, in this case a table header cell represented with <code>&lt;th&gt;<\/code>, ensures that browsers and assistive technologies associate the data cell (i.e., <code>&lt;td&gt;<\/code>) that says \u201c11.4 million\u201d with the header cell (i.e., <code>&lt;th&gt;<\/code>) \u201cOntario\u201d and the data cell that says \u201c3.3 million\u201d with the header cell \u201cAlberta.\u201d<\/li>\r\n<\/ul>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\r\n\r\n<strong>Technical:<\/strong>\r\n<pre style=\"padding-left: 40px\">&lt;table&gt;\r\n  &lt;tr&gt;&lt;th&gt;Ontario&lt;\/th&gt;&lt;th&gt;Alberta&lt;\/th&gt;...&lt;\/tr&gt;\r\n  &lt;tr&gt;&lt;td&gt;11.4 million&lt;\/td&gt;&lt;td&gt;3.3 million&lt;\/td&gt;...&lt;\/tr&gt;\r\n   ...\r\n&lt;\/table&gt;\r\n<\/pre>\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #f66\">\r\n\r\n<strong>Key Point: <\/strong>This success criterion overlaps with <strong>SC 2.4.6<\/strong> Headings and Labels and <strong>SC 2.4.10<\/strong> Section Headings. While<strong> SC 1.3.1<\/strong> requires the use of markup to create associations, these latter success criteria do not. These will be addressed further when <strong>Guideline 2.4<\/strong> is discussed in the next unit.\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\">\r\n\r\n<strong>Suggested Reading:<\/strong>\r\n<ul>\r\n \t<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/Understanding\/info-and-relationships.html\">Understanding Success Criteria 1.3.1 Info and Relationships<\/a><\/li>\r\n \t<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/quickref\/#info-and-relationships\">How to Meet Info and Relationships<\/a><\/li>\r\n<\/ul>\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #ffcb05\">\r\n<h3><strong><a id=\"1.3.2\"><\/a>Success Criterion 1.3.2<\/strong> Meaningful Sequence<\/h3>\r\nLevel A\r\n\r\nWhen the sequence in which content is presented affects its meaning, a correct reading sequence can be programmatically determined.\r\n\r\n<\/div>\r\n<h4>Meaningful Sequence Explained<\/h4>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>Definition<\/strong>\r\n\r\n<strong>Meaningful sequence<\/strong>: A sequence is <i>meaningful<\/i> if the order of content in the sequence cannot be changed without affecting its meaning.\r\n\r\n<\/div>\r\nThere are a range of scenarios where web content must be arranged in a particular order to be effectively understood. For example, when looking up the address for a company, we would expect to find information in this order:\r\n\r\n<strong>ABC Company<\/strong>\r\n<strong>123 Main Street<\/strong>\r\n<strong>Suite 456<\/strong>\r\n<strong>Toronto<\/strong>\r\n<strong>Ontario<\/strong>\r\n<strong>M7N 8X9<\/strong>\r\n\r\nWe might become confused if the information appeared in this order:\r\n\r\n<strong>ABC Company\r\n<\/strong><strong>Toronto\r\n<\/strong><strong>123 Main Street\r\n<\/strong><strong>Ontario\r\n<\/strong><strong>Suite 456\r\n<\/strong><strong>M7N 8X9<\/strong>\r\n\r\nThe latter sequence is the presentation order to a screen reader user if the web content author were to use the following layout table to format the address in two columns. By default, screen readers read left to right and top to bottom, thus reading the left then right cells in the first row, left then right cells in the second row, and so on.\r\n<table class=\"addborder\">\r\n<tbody>\r\n<tr>\r\n<td><strong>ABC Company<\/strong><\/td>\r\n<td style=\"border-left: 1px solid black\"><strong>Toronto<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td><strong>123 Main Street<\/strong><\/td>\r\n<td style=\"border-left: 1px solid black\"><strong>Ontario<\/strong><\/td>\r\n<\/tr>\r\n<tr>\r\n<td><strong>Suite 456<\/strong><\/td>\r\n<td style=\"border-left: 1px solid black\"><strong>M7N 8X9<\/strong><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\nSometimes content can be presented in any order without compromising comprehensibility. For example:\r\n<ul>\r\n \t<li>If an online magazine article contains a sidebar, it usually does not matter whether a person reads the article first or the sidebar first.<\/li>\r\n \t<li>If CSS is used to position a main navigation bar, the content, and a secondary navigation bar, understanding the page does not depend on the order of the sections.<\/li>\r\n<\/ul>\r\nAnother common sequencing error occurs with modal dialogs, like the one described below. For a modal dialog to comply with this success criteria, when a user clicks an element (in this case, the button labeled \u201cAdd Delivery Address\u201d) to open the dialog, focus must be sent to a focusable element in the dialog. The cursor must then remain trapped in the dialog until the user explicitly dismisses it, either by pressing the escape key or clicking one of the buttons.\r\n\r\nModal dialog sequencing failures occur when:\r\n<ul>\r\n \t<li>The cursor is not sent to the dialog when it opens, and keyboard navigation continues through the content in behind the dialog.<\/li>\r\n \t<li>While navigating through the dialog, the cursor does not loop back to the start of the dialog after reaching its last element. Navigation moves from the dialog back to the content in behind before the user has acknowledged or dismissed the dialog.<\/li>\r\n \t<li>When the dialog is acknowledged or dismissed, and the cursor\u2019s focus returns to the start of the browser window rather than returning to the location the dialog was opened from.<\/li>\r\n<\/ul>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>Definition<\/strong>\r\n\r\n<strong>Modal Dialog<\/strong>: A dialog window that typically opens on top of existing web content and forces the user to interact with the dialog before access to the existing content can be re-established. The modal dialog takes focus, and, typically, the content in behind the dialog is greyed to reduce its visibility while the dialog is open.\r\n\r\n<img src=\"http:\/\/pressbooks.library.ryerson.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal.png\" alt=\"Example of a modal dialog, appearing over greyed content behind the dialog.\" class=\"alignnone size-full wp-image-59\" width=\"763\" height=\"431\" \/>\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>Definition<\/strong>\r\n\r\n<strong>CSS:<\/strong> Acronym for <a href=\"https:\/\/en.wikipedia.org\/wiki\/Cascading_Style_Sheets\">Cascading Style Sheets<\/a>. CSS, introduced around the same time as HTML 4, is a way to separate presentation from its associated HTML content, thus improving the accessibility of web content. CSS makes it possible for users to override a default presentation and customize it to their needs (among other benefits).\r\n\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\">\r\n\r\n<strong>Suggested Reading:<\/strong>\r\n<ul>\r\n \t<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/Understanding\/meaningful-sequence.html\">Understanding Success Criterion 1.3.2 Meaningful Sequence<\/a><\/li>\r\n \t<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/quickref\/#meaningful-sequence\">How to Meet Meaningful Sequence<\/a><\/li>\r\n<\/ul>\r\n<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #ffcb05\">\r\n<h3><strong><a id=\"1.3.3\"><\/a>Success Criterion 1.3.3<\/strong> Sensory Characteristics<\/h3>\r\nLevel A\r\n\r\nInstructions provided for understanding and operating content do not rely solely on sensory characteristics of components such as shape, size, visual location, orientation, or sound.\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #3c3\">\r\n\r\n<strong>Note: <\/strong>For sensory characteristics related to colour, refer to <strong>Guideline 1.4<\/strong>.\r\n\r\n<\/div>\r\n<\/div>\r\n<h4>Sensory Characteristics Explained<\/h4>\r\nSome users with disabilities cannot perceive shape, position, colour, or location due to the nature of their disability and\/or the assistive technologies they use.\r\n\r\nHere\u2019s an example: There are three buttons at the bottom of a survey form. The instructions read: \u201cClick the brown button to exit the survey without saving. Click the square button to save in-progress survey results. Click the large button to submit your results.\u201d A screen reader user cannot determine which button is brown, square, or large.\r\n\r\nThe form buttons in the example above can be made accessible by labelling the brown button \u201cExit without saving;\u201d the square button \u201cSave partial results;\u201d and the large button \u201cSubmit your results.\u201d\r\n\r\nIn addition to the button examples above, phrases like \u201cmake a choice from the menu on the left\u201d will be more accessible as \u201cimmediately following the main menu near the top of the page, make a choice from the content menu on the left.\u201d In the latter case, the user can find the main menu, assuming it is labelled as such, and, when it is announced, understand what follows will be the content menu.\r\n\r\nWhen including instructions that describe how to interact with the content of a web page, do not state the instructions exclusively in terms of a single sensory characteristic. Instead, provide additional or alternate descriptions.\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\">\r\n\r\n<strong>Suggested Reading:<\/strong>\r\n<ul>\r\n \t<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/Understanding\/sensory-characteristics.html\">Understanding Success Criteria 1.3.3 Sensory Characteristics<\/a><\/li>\r\n \t<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/quickref\/#sensory-characteristics\">How to Meet Sensory Characteristics<\/a><\/li>\r\n<\/ul>\r\n<\/div>","rendered":"<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_80 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69dc37bba106f\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69dc37bba106f\"  aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Guideline_13_Adaptable\" >Guideline 1.3 Adaptable<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Guideline_13_Adaptable_Explained\" >Guideline 1.3 Adaptable Explained<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Success_Criterion_131_Info_and_Relationships\" >Success Criterion 1.3.1 Info and Relationships<\/a><ul class='ez-toc-list-level-4' ><li class='ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Info_and_Relationships_Explained\" >Info and Relationships Explained<\/a><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Success_Criterion_132_Meaningful_Sequence\" >Success Criterion 1.3.2 Meaningful Sequence<\/a><ul class='ez-toc-list-level-4' ><li class='ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Meaningful_Sequence_Explained\" >Meaningful Sequence Explained<\/a><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Success_Criterion_133_Sensory_Characteristics\" >Success Criterion 1.3.3 Sensory Characteristics<\/a><ul class='ez-toc-list-level-4' ><li class='ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/1-3-adaptable-level-a\/#Sensory_Characteristics_Explained\" >Sensory Characteristics Explained<\/a><\/li><\/ul><\/li><\/ul><\/li><\/ul><\/nav><\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #eb974e\">\n<h2><span class=\"ez-toc-section\" id=\"Guideline_13_Adaptable\"><\/span><strong>Guideline 1.3<\/strong> Adaptable<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Create content that can be presented in different ways without losing information or structure (e.g., a simpler layout).<\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #f66\">\n<p><strong>Key Point: <\/strong>WCAG 2.0 included only Level A success criteria for <strong>Guideline 1.3<\/strong>. WCAG 2.1 added two additional Level AA requirements, plus one new Level AAA requirement that will be introduced on the page that follows.<\/p>\n<\/div>\n<h3><span class=\"ez-toc-section\" id=\"Guideline_13_Adaptable_Explained\"><\/span>Guideline 1.3 Adaptable Explained<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><strong>Why should I make it possible to present content in different ways?<\/strong><\/p>\n<p>People need choices in how they use computers. One of the advantages of electronic documents over paper is flexibility. It is \u2014 or should be \u2014 easy to substitute one font for another or change colours, line spacing, margins, and dozens of other formatting characteristics. By following a handful of guidelines, web content authors make it easy for users to adjust the appearance and organization of web pages to suit users\u2019 individual needs. For example:<\/p>\n<ol>\n<li>An individual with low vision can read many web pages when the font is yellow, zoomed at 400% larger than normal, and displayed on a black background. If web content authors follow guidelines, users can substitute a custom style sheet to display pages in their desired format.<\/li>\n<li>A screen reader user accesses an online article about Canadian weather. The content includes a data table that shows the number of hours of sunshine per year for every provincial capital. The user can navigate from cell to cell in the table, certain about which cells contain header information and which cells contain data. A user using a screen reader should be able to determine, for example, that Winnipeg receives an average of 2,372 hours of sunshine per year.<\/li>\n<li>A lawyer accesses the Internet from a web-enabled cell phone. Despite the small screen, she can easily read the content on a law library site that conforms to WCAG 2.1 guidelines.<\/li>\n<\/ol>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #ffcb05\">\n<h3><span class=\"ez-toc-section\" id=\"Success_Criterion_131_Info_and_Relationships\"><\/span><strong><a id=\"1.3.1\"><\/a>Success Criterion 1.3.1<\/strong> Info and Relationships<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>Level A<\/p>\n<p>Information, structure, and relationships conveyed through presentation can be programmatically determined or are available in text.<\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>Definition<\/strong><\/p>\n<p><strong>Programmatically Determined: <\/strong>Determined by software from author-supplied data provided in a way that different user agents, including assistive technologies, can extract and present this information to users in different modalities.<\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>Definition<\/strong><\/p>\n<p><strong>User Agent<\/strong>: Typically a web browser, though could be any software used to present web content to users, including assistive technologies.<\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>Definition<\/strong><\/p>\n<p><strong>Assistive Technology<\/strong>: Sometimes referred to as adaptive technology; software or hardware that acts as a user agent (or acts with a mainstream user agent) to provide functionality to meet the requirements of users with disabilities that go beyond those offered by mainstream user agents.<\/p>\n<\/div>\n<h4><span class=\"ez-toc-section\" id=\"Info_and_Relationships_Explained\"><\/span>Info and Relationships Explained<span class=\"ez-toc-section-end\"><\/span><\/h4>\n<p>If you look \u201cunder the hood\u201d of a web page, you will find a document that consists of all the words that appear on the page (the \u201ccontent\u201d) thickly interspersed with words, non-words, numbers, and symbols (the \u201ccode\u201d). The code describes how the content should be formatted and what purpose it serves. For example, you might find something like this on a recipe website:<\/p>\n<pre><code>&lt;h1&gt;Recipes for Whole Wheat Bread&lt;\/h1&gt;\r\n<\/code><\/pre>\n<p>The pair of <code>&lt;h1&gt;<\/code>\u00a0and<code> &lt;\/h1&gt;<\/code> tags that surround \u201cRecipes for Whole Wheat Bread\u201d means that the phrase appears larger and bolder than the text that surrounds it, and the phrase is the most important heading on the page.<\/p>\n<p>Within that page of recipes there may be several types of whole wheat bread. Each of those would be presented with an <code>&lt;h2&gt;<\/code> to indicate their relationship as subtopics to the main topic of the page presented in an <code>&lt;h1&gt;<\/code>. Likewise, within each recipe, there may be an <code>&lt;h3&gt;<\/code> used to present ingredients, another to present preparation instructions, and yet another for serving suggestions. Each of those <code>&lt;h3&gt;<\/code> headings has a relationship to the parent <code>&lt;h2&gt;<\/code>\u00a0but not to the other <code>&lt;h2&gt;<\/code> headings that represent other types of whole wheat bread. The following shows a semantic structure (i.e., the relationships of topics and subtopics) associated with the bread recipes.<br \/>\n<!--insert code --><\/p>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\n<p><strong>Technical:<\/strong><\/p>\n<pre>&lt;h1&gt;Recipes for Whole Wheat Bread&lt;\/h1&gt; \/\/main topic\r\n   &lt;h2&gt;Whole Grain Bread&lt;\/h2&gt; \/\/type of bread\r\n       &lt;h3&gt;Ingredients&lt;\/h3&gt; \/\/recipe elements\r\n       \u2026\r\n       &lt;h3&gt;Preparation&lt;\/h3&gt;\r\n       \u2026\r\n       &lt;h3&gt;Serving&lt;\/h3&gt;\r\n       \u2026\r\n   &lt;h2&gt;Multigrain Bread&lt;\/h2&gt; \/\/type of bread\r\n      &lt;h3&gt;Ingredients&lt;\/h3&gt; \/\/recipe elements\r\n      \u2026\r\n      &lt;h3&gt;Preparation&lt;\/h3&gt;\r\n      \u2026\r\n      &lt;h3&gt;Serving&lt;\/h3&gt;\r\n      \u2026\r\n   &lt;h2&gt;Sourdough Bread&lt;\/h2&gt; \/\/type of bread\r\n      &lt;h3&gt;Ingredients&lt;\/h3&gt; \/\/recipe elements\r\n       \u2026\r\n      &lt;h3&gt;Preparation&lt;\/h3&gt;\r\n      \u2026\r\n      &lt;h3&gt;Serving&lt;\/h3&gt;\r\n      \u2026<\/pre>\n<\/div>\n<p>The above semantic structure uses headings that represent topics, and subtopics could also be represented as a nested list. The following list maintains the same relationships defined by the headings above. In this case, there is a main list with one item, the main topic; three sublists with each type of bread; and one sublist under each of those representing the elements of a given recipe.<\/p>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\n<p><strong>Technical:<\/strong><\/p>\n<pre>&lt;ul&gt; \/\/main list of bread recipes\r\n&lt;li&gt;Recipes for Whole Wheat Bread\r\n   &lt;ul&gt; \/\/type of bread\r\n      &lt;li&gt;Whole Grain Bread\r\n      &lt;ul&gt; \/\/recipe elements\r\n         &lt;li&gt;Ingredients\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Preparation\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Serving\r\n         \u2026\r\n         &lt;\/li&gt;\r\n \u00a0    &lt;\/ul&gt; \r\n     &lt;\/li&gt;\r\n \u00a0&lt;\/ul&gt; \/\/End of Whole Grain type\r\n \u00a0&lt;ul&gt; \/\/type of bread\r\n     &lt;li&gt;Multigrain Bread\r\n     &lt;ul&gt; \/\/recipe elements\r\n        &lt;li&gt;Ingredients\r\n        \u2026\r\n        &lt;\/li&gt;\r\n        &lt;li&gt;Preparation\r\n        \u2026\r\n        &lt;\/li&gt;\r\n        &lt;li&gt;Serving\r\n        \u2026\r\n        &lt;\/li&gt;\r\n \u00a0   &lt;\/ul&gt;\r\n    &lt;\/li&gt;\r\n \u00a0&lt;\/ul&gt; \/\/End of Multigrain type\r\n \u00a0&lt;ul&gt; \/\/type of bread\r\n     &lt;li&gt;Sourdough Bread\r\n     &lt;ul&gt; \/\/recipe elements\r\n         &lt;li&gt;Ingredients\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Preparation\r\n         \u2026\r\n         &lt;\/li&gt;\r\n         &lt;li&gt;Serving\r\n         \u2026\r\n         &lt;\/li&gt;\r\n \u00a0   &lt;\/ul&gt;\r\n     &lt;\/li&gt; \r\n \u00a0\u00a0&lt;\/ul&gt; \/\/End of Sourdough type\r\n&lt;\/li&gt; \r\n&lt;\/ul&gt; \/\/End of main list of bread recipes<\/pre>\n<\/div>\n<p><strong>SC 1.3.1<\/strong> requires web content authors to use the right code to generate relationships and associate related information. When they do, browsers and assistive technologies automatically \u201cunderstand\u201d how content relates to other content on the page. (This is what is meant by \u201cprogrammatically determined.\u201d) For example:<\/p>\n<ul>\n<li>On a form with two fields, \u201cName\u201d and \u201cEmail address,\u201d using the correct code, in this case an associated <code>&lt;label&gt;<\/code> element, ensures that browsers and assistive technologies know that the first field contains the name and the second field contains the email address. In the example markup below, note that the <code>for<\/code> attribute with each label creates an association with the <code>id<\/code> attribute of the related input field. When an input field receives focus, the content of the associated label is read out.<\/li>\n<\/ul>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\n<p><strong>Technical:<\/strong><\/p>\n<pre style=\"padding-left: 40px\">&lt;form&gt;\r\n   &lt;label <strong>for<\/strong>=\"firstname\"&gt;Name&lt;\/label&gt;&lt;input type=\"text\" <strong>id<\/strong>=\"firstname\"\/&gt;\r\n   &lt;label <strong>for<\/strong>=\"emailaddress\"&gt;Email&lt;\/label&gt; &lt;input type=\"text\" <strong>id<\/strong>=\"emailaddress\" \/&gt;\r\n\u2026\r\n&lt;\/form&gt;<\/pre>\n<\/div>\n<ul>\n<li>In a table that displays the population of Canadian provinces, using the correct code, in this case a table header cell represented with <code>&lt;th&gt;<\/code>, ensures that browsers and assistive technologies associate the data cell (i.e., <code>&lt;td&gt;<\/code>) that says \u201c11.4 million\u201d with the header cell (i.e., <code>&lt;th&gt;<\/code>) \u201cOntario\u201d and the data cell that says \u201c3.3 million\u201d with the header cell \u201cAlberta.\u201d<\/li>\n<\/ul>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0be\">\n<p><strong>Technical:<\/strong><\/p>\n<pre style=\"padding-left: 40px\">&lt;table&gt;\r\n  &lt;tr&gt;&lt;th&gt;Ontario&lt;\/th&gt;&lt;th&gt;Alberta&lt;\/th&gt;...&lt;\/tr&gt;\r\n  &lt;tr&gt;&lt;td&gt;11.4 million&lt;\/td&gt;&lt;td&gt;3.3 million&lt;\/td&gt;...&lt;\/tr&gt;\r\n   ...\r\n&lt;\/table&gt;\r\n<\/pre>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #f66\">\n<p><strong>Key Point: <\/strong>This success criterion overlaps with <strong>SC 2.4.6<\/strong> Headings and Labels and <strong>SC 2.4.10<\/strong> Section Headings. While<strong> SC 1.3.1<\/strong> requires the use of markup to create associations, these latter success criteria do not. These will be addressed further when <strong>Guideline 2.4<\/strong> is discussed in the next unit.<\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\">\n<p><strong>Suggested Reading:<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/Understanding\/info-and-relationships.html\">Understanding Success Criteria 1.3.1 Info and Relationships<\/a><\/li>\n<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/quickref\/#info-and-relationships\">How to Meet Info and Relationships<\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #ffcb05\">\n<h3><span class=\"ez-toc-section\" id=\"Success_Criterion_132_Meaningful_Sequence\"><\/span><strong><a id=\"1.3.2\"><\/a>Success Criterion 1.3.2<\/strong> Meaningful Sequence<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>Level A<\/p>\n<p>When the sequence in which content is presented affects its meaning, a correct reading sequence can be programmatically determined.<\/p>\n<\/div>\n<h4><span class=\"ez-toc-section\" id=\"Meaningful_Sequence_Explained\"><\/span>Meaningful Sequence Explained<span class=\"ez-toc-section-end\"><\/span><\/h4>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>Definition<\/strong><\/p>\n<p><strong>Meaningful sequence<\/strong>: A sequence is <i>meaningful<\/i> if the order of content in the sequence cannot be changed without affecting its meaning.<\/p>\n<\/div>\n<p>There are a range of scenarios where web content must be arranged in a particular order to be effectively understood. For example, when looking up the address for a company, we would expect to find information in this order:<\/p>\n<p><strong>ABC Company<\/strong><br \/>\n<strong>123 Main Street<\/strong><br \/>\n<strong>Suite 456<\/strong><br \/>\n<strong>Toronto<\/strong><br \/>\n<strong>Ontario<\/strong><br \/>\n<strong>M7N 8X9<\/strong><\/p>\n<p>We might become confused if the information appeared in this order:<\/p>\n<p><strong>ABC Company<br \/>\n<\/strong><strong>Toronto<br \/>\n<\/strong><strong>123 Main Street<br \/>\n<\/strong><strong>Ontario<br \/>\n<\/strong><strong>Suite 456<br \/>\n<\/strong><strong>M7N 8X9<\/strong><\/p>\n<p>The latter sequence is the presentation order to a screen reader user if the web content author were to use the following layout table to format the address in two columns. By default, screen readers read left to right and top to bottom, thus reading the left then right cells in the first row, left then right cells in the second row, and so on.<\/p>\n<table class=\"addborder\">\n<tbody>\n<tr>\n<td><strong>ABC Company<\/strong><\/td>\n<td style=\"border-left: 1px solid black\"><strong>Toronto<\/strong><\/td>\n<\/tr>\n<tr>\n<td><strong>123 Main Street<\/strong><\/td>\n<td style=\"border-left: 1px solid black\"><strong>Ontario<\/strong><\/td>\n<\/tr>\n<tr>\n<td><strong>Suite 456<\/strong><\/td>\n<td style=\"border-left: 1px solid black\"><strong>M7N 8X9<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Sometimes content can be presented in any order without compromising comprehensibility. For example:<\/p>\n<ul>\n<li>If an online magazine article contains a sidebar, it usually does not matter whether a person reads the article first or the sidebar first.<\/li>\n<li>If CSS is used to position a main navigation bar, the content, and a secondary navigation bar, understanding the page does not depend on the order of the sections.<\/li>\n<\/ul>\n<p>Another common sequencing error occurs with modal dialogs, like the one described below. For a modal dialog to comply with this success criteria, when a user clicks an element (in this case, the button labeled \u201cAdd Delivery Address\u201d) to open the dialog, focus must be sent to a focusable element in the dialog. The cursor must then remain trapped in the dialog until the user explicitly dismisses it, either by pressing the escape key or clicking one of the buttons.<\/p>\n<p>Modal dialog sequencing failures occur when:<\/p>\n<ul>\n<li>The cursor is not sent to the dialog when it opens, and keyboard navigation continues through the content in behind the dialog.<\/li>\n<li>While navigating through the dialog, the cursor does not loop back to the start of the dialog after reaching its last element. Navigation moves from the dialog back to the content in behind before the user has acknowledged or dismissed the dialog.<\/li>\n<li>When the dialog is acknowledged or dismissed, and the cursor\u2019s focus returns to the start of the browser window rather than returning to the location the dialog was opened from.<\/li>\n<\/ul>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>Definition<\/strong><\/p>\n<p><strong>Modal Dialog<\/strong>: A dialog window that typically opens on top of existing web content and forces the user to interact with the dialog before access to the existing content can be re-established. The modal dialog takes focus, and, typically, the content in behind the dialog is greyed to reduce its visibility while the dialog is open.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/pressbooks.library.ryerson.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal.png\" alt=\"Example of a modal dialog, appearing over greyed content behind the dialog.\" class=\"alignnone size-full wp-image-59\" width=\"763\" height=\"431\" srcset=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal.png 763w, https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal-300x169.png 300w, https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal-65x37.png 65w, https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal-225x127.png 225w, https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-content\/uploads\/sites\/82\/2019\/06\/modal-350x198.png 350w\" sizes=\"auto, (max-width: 763px) 100vw, 763px\" \/><\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>Definition<\/strong><\/p>\n<p><strong>CSS:<\/strong> Acronym for <a href=\"https:\/\/en.wikipedia.org\/wiki\/Cascading_Style_Sheets\">Cascading Style Sheets<\/a>. CSS, introduced around the same time as HTML 4, is a way to separate presentation from its associated HTML content, thus improving the accessibility of web content. CSS makes it possible for users to override a default presentation and customize it to their needs (among other benefits).<\/p>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\">\n<p><strong>Suggested Reading:<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/Understanding\/meaningful-sequence.html\">Understanding Success Criterion 1.3.2 Meaningful Sequence<\/a><\/li>\n<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/quickref\/#meaningful-sequence\">How to Meet Meaningful Sequence<\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #ffcb05\">\n<h3><span class=\"ez-toc-section\" id=\"Success_Criterion_133_Sensory_Characteristics\"><\/span><strong><a id=\"1.3.3\"><\/a>Success Criterion 1.3.3<\/strong> Sensory Characteristics<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>Level A<\/p>\n<p>Instructions provided for understanding and operating content do not rely solely on sensory characteristics of components such as shape, size, visual location, orientation, or sound.<\/p>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #3c3\">\n<p><strong>Note: <\/strong>For sensory characteristics related to colour, refer to <strong>Guideline 1.4<\/strong>.<\/p>\n<\/div>\n<\/div>\n<h4><span class=\"ez-toc-section\" id=\"Sensory_Characteristics_Explained\"><\/span>Sensory Characteristics Explained<span class=\"ez-toc-section-end\"><\/span><\/h4>\n<p>Some users with disabilities cannot perceive shape, position, colour, or location due to the nature of their disability and\/or the assistive technologies they use.<\/p>\n<p>Here\u2019s an example: There are three buttons at the bottom of a survey form. The instructions read: \u201cClick the brown button to exit the survey without saving. Click the square button to save in-progress survey results. Click the large button to submit your results.\u201d A screen reader user cannot determine which button is brown, square, or large.<\/p>\n<p>The form buttons in the example above can be made accessible by labelling the brown button \u201cExit without saving;\u201d the square button \u201cSave partial results;\u201d and the large button \u201cSubmit your results.\u201d<\/p>\n<p>In addition to the button examples above, phrases like \u201cmake a choice from the menu on the left\u201d will be more accessible as \u201cimmediately following the main menu near the top of the page, make a choice from the content menu on the left.\u201d In the latter case, the user can find the main menu, assuming it is labelled as such, and, when it is announced, understand what follows will be the content menu.<\/p>\n<p>When including instructions that describe how to interact with the content of a web page, do not state the instructions exclusively in terms of a single sensory characteristic. Instead, provide additional or alternate descriptions.<\/p>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\">\n<p><strong>Suggested Reading:<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/Understanding\/sensory-characteristics.html\">Understanding Success Criteria 1.3.3 Sensory Characteristics<\/a><\/li>\n<li><a href=\"https:\/\/www.w3.org\/WAI\/WCAG21\/quickref\/#sensory-characteristics\">How to Meet Sensory Characteristics<\/a><\/li>\n<\/ul>\n<\/div>\n","protected":false},"author":100,"menu_order":6,"template":"","meta":{"pb_show_title":"on","pb_short_title":"","pb_subtitle":"","pb_authors":[],"pb_section_license":""},"chapter-type":[],"contributor":[],"license":[],"class_list":["post-173","chapter","type-chapter","status-publish","hentry"],"part":26,"_links":{"self":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/173","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters"}],"about":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/types\/chapter"}],"author":[{"embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/users\/100"}],"version-history":[{"count":28,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/173\/revisions"}],"predecessor-version":[{"id":1311,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/173\/revisions\/1311"}],"part":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/parts\/26"}],"metadata":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/173\/metadata\/"}],"wp:attachment":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/media?parent=173"}],"wp:term":[{"taxonomy":"chapter-type","embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapter-type?post=173"},{"taxonomy":"contributor","embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/contributor?post=173"},{"taxonomy":"license","embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/license?post=173"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}