Park at the nearest available parking meter without paying the meter
and call 999-999-9999 to report the problem. We will note and approve your alternate
location and will investigate the cause of the shortage in your assigned facility.
-
+
-
You should come to the Parking office and report the
+
You should come to the Parking office and report the
loss. There is a fee to replace your lost permit. However, if your permit was stolen, a
- copy of a police report needs to be submitted along with a stolen parking permit form for
- a fee replacement exemption.
-
+ copy of a police report needs to be submitted along with a stolen parking permit form for a fee replacement exemption.
+
-
+
All facilities are restricted from 2:00 am - 6:00 am on all days. No
exceptions are made for any holiday or recess except those officially listed as a
Holidays in the calendar. Please note: 24-hour rental spaces, 24-hour rental lots, and
disabled parking is enforced at all times.
-
+
-
+
Some parking facility restrictions differ from others. Be sure to
take note of the signs at each lot entrance.
-
+
@@ -96,20 +96,30 @@
Example
Accessibility Features
-
+
The semantic structure of the FAQ is conveyed with native dl, dt and dd elements.
- So that the list structure is communicated to assistive technologies, instead of applying a button role to the dt element, a button element is contained within the dd element.
- Similarly, the container for the answer content that is shown and hidden is inside of the dd element so the dl structure is complete even when the answers are all hidden.
+ To ensure the list structure is communicated to assistive technologies, instead of applying a button role to the dt element, a button element is contained within the dt element.
+ Similarly, each div element containing answer content that can be shown or hidden by the button is a child of a dd element.
+ Since all the dd elements are present in the DOM even if some answers are hidden, the dl structure is always complete.
+
+
+ To help people with visual impairments identify the disclosure as interactive and make it easier to perceive that clicking either the disclosure button or its label changes the expanded state, when a pointer hovers over the button or its label, the background color changes, a border appears, and the cursor changes to a pointer.
-
The visual indication of expanded and collapsed states is synchronized with the value of aria-expanded using a CSS attribute selector and :before pseudo element that generates an image with the content property.
-
The interactivity of the question is visually indicated on focus and hover:
-
-
The CSS :focus pseudo class is used to change the background and border colors.
-
The CSS :hover pseudo class is used to change the background color and underline the text.
-
+
+ Because transparent borders are visible on some systems with operating system high contrast settings enabled, transparency cannot be used to create a visual difference between the element that is focused an other elements.
+ Instead of using transparency, the focused element has a thicker border and less padding.
+ When an element receives focus, its border changes from 0 to 2 pixels and padding is reduced by 2 pixels.
+ When an element loses focus, its border changes from 2 pixels to 0 and padding is increased by 2 pixels.
+
+
+ To ensure the inline SVG arrow graphics in the CSS have sufficient contrast with the background when high contrast settings invert colors, the color of the arrows are synchronized with the color of the text content.
+ For example, the color of the arrow is set to match the foreground color of high contrast mode text by specifying the CSS currentColor value for the stroke and fill properties of the polygon elements used to draw the arrows.
+ If specific colors were instead used to specify the polygon properties, those colors would remain the same in high contrast mode, which could lead to insufficient contrast between the arrows and the background or even make the arrows invisible if the color matched the high contrast mode background.
+ Note: The SVG element needs to have the CSS forced-color-adjust property set to auto for the currentColor value to be updated in high contrast mode.
+ Some browsers do not use auto for the default value.
- The disclosure button controls visibility of the container identified by the IDREF value.
-
+
button
+
Identifies the element controlled by the disclosure button.
- aria-expanded="false"
+ aria-expanded="false"
button
@@ -182,7 +188,7 @@
Role, Property, State, and Tabindex Attributes
Indicates that the container controlled by the disclosure button is hidden.
- CSS attribute selectors (e.g. [aria-expanded="false"]) are
+ CSS attribute selectors (e.g. [aria-expanded="false"]) are
used to synchronize the visual states with the value of the aria-expanded
attribute.
@@ -196,7 +202,7 @@
Role, Property, State, and Tabindex Attributes
- aria-expanded="true"
+ aria-expanded="true"
button
@@ -207,7 +213,7 @@
Role, Property, State, and Tabindex Attributes
Indicates that the container controlled by the disclosure button is visible.
- CSS attribute selectors (e.g. [aria-expanded="true"]) are
+ CSS attribute selectors (e.g. [aria-expanded="true"]) are
used to synchronize the visual states with the value of the aria-expanded
attribute.
diff --git a/examples/disclosure/disclosure-img-long-description.html b/examples/disclosure/disclosure-image-description.html
similarity index 81%
rename from examples/disclosure/disclosure-img-long-description.html
rename to examples/disclosure/disclosure-image-description.html
index fbf5a456a0..967d18cdd5 100644
--- a/examples/disclosure/disclosure-img-long-description.html
+++ b/examples/disclosure/disclosure-image-description.html
@@ -11,8 +11,8 @@
-
-
+
+
@@ -68,8 +68,10 @@
Example
In order to facilitate the judgement of the eye regarding the diminution of the army, I supposed that the troops under Prince Jèrôme and under Marshal Davoust, who were sent to Minsk and Mobilow and who rejoined near Orscha and Witebsk, had always marched with the army.
Note: A French translation from Wikipedia.
-
-
+
+
Data for Charles Minard's Chart of Napoleon's Invasion of Russia
@@ -246,15 +248,24 @@
Data for Charles Minard's Chart of Napoleon's Invasion of
Accessibility Features
-
-
The visual indication of expanded and collapsed states is synchronized with the value of aria-expanded using a CSS attribute selector and :before pseudo element that generates an image with the content property.
-
The interactivity of the disclosure button is visually indicated on focus and hover:
-
-
The CSS :focus pseudo class is used to change the background and border colors.
-
The CSS :hover pseudo class is used to change the background color and underline the text.
-
+
+
+ To help people with visual impairments identify the disclosure as interactive and make it easier to perceive that clicking either the disclosure button or its label changes the expanded state, when a pointer hovers over the button or its label, the background color changes, a border appears, and the cursor changes to a pointer.
+
+
+ Because transparent borders are visible on some systems with operating system high contrast settings enabled, transparency cannot be used to create a visual difference between the element that is focused an other elements.
+ Instead of using transparency, the focused element has a thicker border and less padding.
+ When an element receives focus, its border changes from 0 to 2 pixels and padding is reduced by 2 pixels.
+ When an element loses focus, its border changes from 2 pixels to 0 and padding is increased by 2 pixels.
-
+
+ To ensure the inline SVG arrow graphics in the CSS have sufficient contrast with the background when high contrast settings invert colors, the color of the arrows are synchronized with the color of the text content.
+ For example, the color of the arrow is set to match the foreground color of high contrast mode text by specifying the CSS currentColor value for the stroke and fill properties of the polygon elements used to draw the arrows.
+ If specific colors were instead used to specify the polygon properties, those colors would remain the same in high contrast mode, which could lead to insufficient contrast between the arrows and the background or even make the arrows invisible if the color matched the high contrast mode background.
+ Note: The SVG element needs to have the CSS forced-color-adjust property set to auto for the currentColor value to be updated in high contrast mode.
+ Some browsers do not use auto for the default value.
+
The disclosure button controls visibility of the container identified by the IDREF value.
-
-
+
button
+
Identifies the element controlled by the disclosure button.
- aria-expanded="false"
+ aria-expanded="false"
button
@@ -329,7 +334,7 @@
Role, Property, State, and Tabindex Attributes
Indicates that the container controlled by the disclosure button is hidden .
- CSS attribute selectors (e.g. [aria-expanded="false"])
+ CSS attribute selectors (e.g. [aria-expanded="false"])
synchronize the visual states with the value of the aria-expanded
attribute.
@@ -343,7 +348,7 @@
Role, Property, State, and Tabindex Attributes
- aria-expanded="true"
+ aria-expanded="true"
button
@@ -354,7 +359,7 @@
Role, Property, State, and Tabindex Attributes
Indicates that the container controlled by the disclosure button is visible.
- CSS attribute selectors (e.g. [aria-expanded="true"])
+ CSS attribute selectors (e.g. [aria-expanded="true"])
synchronize the visual states with the value of the aria-expanded
attribute.