|
AccVerify Report
Verified File Name: http://www.csustan.edu/directories/Maps_n_Plans/Campus_Plans/Building/004-Corporation_yd-sml.html Date and Time: 8/14/2008 9:39:08 AM Failed Automated Verification |
| The level of detail setting for the report is to show all detail. |
| Checkpoints | Passed | ||
|---|---|---|---|
| 508 Standards, Section 1194.22 | Yes | No | Other |
A. 508 Standards, Section 1194.22, (a) A text equivalent for every non-text element shall be provided (e.g., via "alt", "longdesc", or in element content).
|
No | ||
B. 508 Standards, Section 1194.22, (b) Equivalent alternatives for any multimedia presentation shall be synchronized with the presentation.
|
N/A | ||
| C. 508 Standards, Section 1194.22, (c) Web pages shall be designed so that all information conveyed with color is also available without color, for example from context or markup. | |||
D. 508 Standards, Section 1194.22, (d) Documents shall be organized so they are readable without requiring an associated style sheet.
|
|||
E. 508 Standards, Section 1194.22, (e) Redundant text links shall be provided for each active region of a server-side image map.
|
N/A | ||
F. 508 Standards, Section 1194.22, (f) Client-side image maps shall be provided instead of server-side image maps except where the regions cannot be defined with an available geometric shape.
|
N/A | ||
G. 508 Standards, Section 1194.22, (g) Row and column headers shall be identified for data tables.
|
N/A | ||
H. 508 Standards, Section 1194.22, (h) Markup shall be used to associate data cells and header cells for data tables that have two or more logical levels of row or column headers.
|
N/A | ||
I. 508 Standards, Section 1194.22, (i) Frames shall be titled with text that facilitates frame identification and navigation.
|
N/A | ||
J. 508 Standards, Section 1194.22, (j) Pages shall be designed to avoid causing the screen to flicker with a frequency greater than 2 Hz and lower than 55 Hz.
|
|||
| K. 508 Standards, Section 1194.22, (k) A text-only page, with equivalent information or functionality, shall be provided to make a web site comply with the provisions of this part, when compliance cannot be accomplished in any other way. The content of the text-only page shall be updated whenever the primary page changes. | |||
| (k) Option A - Check for the string 'Text Version' within the document. | N/V | ||
| (k) Option B - Check for a Global Text Version Link within the document. | N/V | ||
| (k) Option C - Check for an Accessibility Policy Link within the document. | N/V | ||
L. 508 Standards, Section 1194.22, (l) When pages utilize scripting languages to display content, or to create interface elements, the information provided by the script shall be identified with functional text that can be read by assistive technology.
|
|||
M. 508 Standards, Section 1194.22, (m) When a web page requires that an applet, plug-in or other application be present on the client system to interpret page content, the page must provide a link to a plug-in or applet that complies with §1194.21(a) through (l).
|
Yes | ||
N. 508 Standards, Section 1194.22, (n) When electronic forms are designed to be completed on-line, the form shall allow people using assistive technology to access the information, field elements, and functionality required for completion and submission of the form, including all directions and cues.
|
N/A | ||
O. 508 Standards, Section 1194.22, (o) A method shall be provided that permits users to skip repetitive navigation links.
|
|||
| P. 508 Standards, Section 1194.22, (p) When a timed response is required, the user shall be alerted and given sufficient time to indicate more time is required. | |||
Checkpoint Result Legend: Yes = Passed Automated Verification, No = Failed Automated Verification, Warning = Failed Automated Verification, however, configured not to cause page to fail (Priority 2 or 3 only), N/V = Not selected for verification, N/A = No related elements were found in document (Visual only), No Value = Visual Checkpoint
Report generated by HiSoftware AccVerify®
AccVerify® is a registered trademark of Hiawatha Island Software Inc. (www.hisoftware.com)
1: <HTML>
2:
3: <HEAD>
4: <title>CSU Stanislaus | Maps & Directions</title>
5: <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
6: <meta http-equiv="Cache-Control" content="no-cache">
7: <meta http-equiv="expires" content="0">
8: <meta http-equiv="Pragma" content="no-cache">
9: <link rel="stylesheet" href="../css/ns_ie-2007CatalogData.css">
10:
11: <script type="text/javascript"><!--
12: /***********************************************
13: * IFrame SSI script II- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
14: * Visit DynamicDrive.com for hundreds of original DHTML scripts
15: * This notice must stay intact for legal use
16: ***********************************************/
17:
18: //Input the IDs of the IFRAMES you wish to dynamically resize to match its content height:
19: //Separate each ID with a comma. Examples: ["myframe1", "myframe2"] or ["myframe"] or [] for none:
20: var iframeids=["LargeMap"]
21:
22: //Should script hide iframe from browsers that don't support this script (non IE5+/NS6+ browsers. Recommended):
23: var iframehide="yes"
24:
25: var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]
26: var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers
27:
28: function resizeCaller() {
29: var dyniframe=new Array()
30: for (i=0; i<iframeids.length; i++){
31: if (document.getElementById)
32: resizeIframe(iframeids[i])
33: //reveal iframe for lower end browsers? (see var above):
34: if ((document.all || document.getElementById) && iframehide=="no"){
35: var tempobj=document.all? document.all[iframeids[i]] : document.getElementById(iframeids[i])
36: tempobj.style.display="block"
37: }
38: }
39: }
40:
41: function resizeIframe(frameid){
42: var currentfr=document.getElementById(frameid)
43: if (currentfr && !window.opera){
44: currentfr.style.display="block"
45: if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) //ns6 syntax
46: currentfr.height = currentfr.contentDocument.body.offsetHeight+FFextraHeight;
47: else if (currentfr.Document && currentfr.Document.body.scrollHeight) //ie5+ syntax
48: currentfr.height = currentfr.Document.body.scrollHeight;
49: if (currentfr.addEventListener)
50: currentfr.addEventListener("load", readjustIframe, false)
51: else if (currentfr.attachEvent){
52: currentfr.detachEvent("onload", readjustIframe) // Bug fix line
53: currentfr.attachEvent("onload", readjustIframe)
54: }
55: }
56: }
57:
58: function readjustIframe(loadevt) {
59: var crossevt=(window.event)? event : loadevt
60: var iframeroot=(crossevt.currentTarget)? crossevt.currentTarget : crossevt.srcElement
61: if (iframeroot)
62: resizeIframe(iframeroot.id);
63: }
64:
65: function loadintoIframe(iframeid, url){
66: if (document.getElementById)
67: document.getElementById(iframeid).src=url
68: }
69:
70: if (window.addEventListener)
71: window.addEventListener("load", resizeCaller, false)
72: else if (window.attachEvent)
73: window.attachEvent("onload", resizeCaller)
74: else
75: window.onload=resizeCaller
76: //-->
77: </script>
78:
79:
80: <csactions>
81: <csaction name="c44331f310" class="Go Last Page" type="onevent"></csaction>
82: </csactions>
83: <csscriptdict>
84: <script type="text/javascript"><!--
85: CSStopExecution=false;
86: function CSAction(array) {return CSAction2(CSAct, array);}
87: function CSAction2(fct, array) {
88: var result;
89: for (var i=0;i<array.length;i++) {
90: if(CSStopExecution) return false;
91: var aa = fct[array[i]];
92: if (aa == null) return false;
93: var ta = new Array;
94: for(var j=1;j<aa.length;j++) {
95: if((aa[j]!=null)&&(typeof(aa[j])=="object")&&(aa[j].length==2)){
96: if(aa[j][0]=="VAR"){ta[j]=CSStateArray[aa[j][1]];}
97: else{if(aa[j][0]=="ACT"){ta[j]=CSAction(new Array(new String(aa[j][1])));}
98: else ta[j]=aa[j];}
99: } else ta[j]=aa[j];
100: }
101: result=aa[0](ta);
102: }
103: return result;
104: }
105: CSAct = new Object;
106:
107: function CSGoBack1() { history.back() }
108:
109: function CSClickReturn () {
110: var bAgent = window.navigator.userAgent;
111: var bAppName = window.navigator.appName;
112: if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
113: return true; /* dont follow link */
114: else return false; /* dont follow link */
115: }
116:
117:
118:
119: // --></script>
120: </csscriptdict>
121: <csactiondict>
122: <script type="text/javascript"><!--
123: CSAct[/*CMP*/ 'c16b5f651'] = new Array(CSGoBack1);
124: CSAct[/*CMP*/ 'c44331f310'] = new Array(CSGoBack1);
125:
126: // --></script>
127: </csactiondict>
128: </HEAD>
129:
130: <body topmargin="24" leftmargin="24" marginwidth="24"
131: marginheight="24">
132: <div align="center">
133: <table width="804" border="0" cellspacing="2" cellpadding="0" bgcolor="white">
134: <tr>
135: <td width="800">
136: <iframe id="FooterTop" name="FooterTop" src="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-Top.html" frameborder="0" scrolling="no" height="30" width="800">
137: Your browser does not support IFRAMES. To view the content visit the actual source page: <a href="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-Top.html">http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-Top.html</a>
138: </iframe>
139: </td>
140: </tr>
141: <tr>
142: <td width="800">
143: <iframe id="HeaderCatagory" name="HeaderCatagory" src="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/Global-NoImages/AHeader-SupportServices.html" frameborder="0" scrolling="no" height="82" width="800">
144: Your browser currently does not support iFrames. To view what is displayed in this iFrame please go to: <a href="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/Global-NoImages/AHeader-SupportServices.html" target="_top">http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/Global-NoImages/AHeader-SupportServices.html</a>
145: </iframe>
146: </td>
147: </tr>
148: <tr>
149: <td width="800">
150: <iframe id="Calendar_Navigation_Window" name="Calendar_Navigation_Window" src="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-HdrBaseline-7.html" frameborder="0" scrolling="no" height="17" width="800">
151: Your browser does not support IFRAMES. To view the content visit the actual source page: <a href="http://www.csustan.edu/mainpage/Calendars-of-Events/WebComponents/Hdr-BaseLines.html">http://www.csustan.edu/mainpage/Calendars-of-Events/WebComponents/Hdr-BaseLines.html</a>
152: </iframe>
153: </td>
154: </tr>
155: <tr>
156: <td align="center" valign="top" bgcolor="white" width="800">
157: <table border="0" cellpadding="0" cellspacing="0">
158: <tr>
159: <td valign="top" align="left" bgcolor="white"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="208" height="14" align="BOTTOM" border="0" alt="spacer"></td>
160: </tr>
161: <tr>
162: <td valign="top" align="left" bgcolor="white">
163: <table width="800" border="0" cellpadding="0" cellspacing="0" bgcolor="white">
164: <tr>
165: <td align="left" valign="TOP" bgcolor="white" width="16"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="16" height="21" align="BOTTOM" border="0" alt="spacer"></td>
166: <td class="CONTACT-TEXT" valign="middle" align="right" bgcolor="white">
167: <div align="right">
168: <a title="Back to previous page" onclick="CSAction(new Array(/*CMP*/'c44331f310'));return CSClickReturn()" href="#" target="_top" csclick="c44331f310"><img src="http://www.csustan.edu/Catalog/images/arow-bk-lft-GREY.gif" alt="Back to previous page" width="62" height="18" align="absmiddle" border="0"></a>> <a href="http://www.csustan.edu/Directories/Maps/" target="_top"><span class="CONTACT-TEXT">Maps & Directions</span></a> > <a href="../index.html" target="_top"><span class="CONTACT-TEXT">Campus Site Plan</span></a> > Corporation Yard</div>
169: </td>
170: <td valign="TOP" align="left" bgcolor="white" width="16"></td>
171: </tr>
172: <tr>
173: <td align="left" valign="TOP" bgcolor="white" width="16">
174: <div align="left">
175: <img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="16" height="75" align="BOTTOM" border="0" alt="spacer"></div>
176: </td>
177: <td valign="TOP" align="left" bgcolor="white">
178: <div align="left">
179: <table border="0" cellpadding="0" cellspacing="0">
180: <tr>
181: <td valign="top" align="left" width="768"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="250" height="4" align="BOTTOM" border="0" alt="spacer"></td>
182: </tr>
183: <tr>
184: <td valign="top" align="left" width="768"><span class="DEPT-NAME-Times">Maps & Directions</span></td>
185: </tr>
186: <tr>
187: <td valign="top" align="left" width="768" background="../Parts/line-grey-horiz-rule-9.gif"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="250" height="11" align="BOTTOM" border="0" alt="spacer"></td>
188: </tr>
189: <tr>
190: <td valign="top" align="left" width="768">
191: <table width="100%" border="0" cellpadding="0" cellspacing="0">
192: <tr>
193: <td valign="middle" align="left" nowrap bgcolor="white" width="350"><span class="TOPIC-Times">Corporation Yard</span></td>
194: <td class="CONTACT-TEXT" valign="middle" align="right" nowrap bgcolor="white" width="100%"><strong><a href="004-Corporation_yd-lrg.html" target="_top"><span class="CONTACT-TEXT">See Large Plan</span></a></strong></td>
195: </tr>
196: </table>
197: </td>
198: </tr>
199: <tr>
200: <td valign="top" align="left" width="768" background="../Parts/line-grey-horiz-rule-9.gif"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="250" height="11" align="BOTTOM" border="0" alt="spacer"></td>
201: </tr>
202: <tr>
203: <td valign="top" align="left" width="768"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="250" height="8" align="BOTTOM" border="0" alt="spacer"></td>
204: </tr>
205: <tr>
206: <td valign="top" align="left" width="768">
207: <iframe id="LargeMap" name="LargeMap" src="-sml_iframe/004-Corporation_yd-sml.html" frameborder="0" height="500" width="768"></iframe>
208: </td>
209: </tr>
210: <tr>
211: <td valign="top" align="left" width="768"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="23" height="12" align="BOTTOM" border="0" alt="spacer"></td>
212: </tr>
213: <tr>
214: <td valign="top" align="left" width="768">
215: <table width="100%" border="0" cellpadding="0" cellspacing="0">
216: <tr>
217: <td valign="top" align="left" nowrap="nowrap" width="216">
218: <div align="left">
219: <img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="210" height="6" align="BOTTOM" alt="spacer" border="0" /><br />
220: <font color="#a9a9a9"><span class="CONTACT-SML">||||||| Updated: <csobj w="90" h="12" t="DateTime" format="MedDate" region="0">Sun, May 4, 2008</csobj></span></font></div>
221: </td>
222: <td valign="top" align="right" width="100%">
223: <div align="right">
224: <span class="CONTACT-TEXT"><b>Problems or Comments:<br />
225: </b><a class="CONTACT-TEXT" href="http://www.csustan.edu/oit/WebServices/WebProblemsCommentsForm.html" target="_top">Contact web administrator</a></span></div>
226: </td>
227: </tr>
228: </table>
229: </td>
230: </tr>
231: </table>
232: </div>
233: </td>
234: <td valign="TOP" align="left" bgcolor="white" width="16"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="16" height="75" align="BOTTOM" border="0" alt="spacer"></td>
235: </tr>
236: </table>
237: </td>
238: </tr>
239: <tr>
240: <td valign="top" align="left" bgcolor="white"><img src="http://www.csustan.edu/Mainpage/parts/space.gif" width="127" height="12" align="BOTTOM" border="0" alt="spacer"></td>
241: </tr>
242: </table>
243: </td>
244: </tr>
245: <tr>
246: <td bgcolor="white" width="800">
247: <iframe id="FooterBottom" name="FooterBottom" src="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-Bottom.html" frameborder="0" scrolling="no" height="36" width="800">
248: Your browser does not support IFRAMES. To view the content visit the actual source page: <a href="http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-Bottom.html">http://www.csustan.edu/Mainpage/Data-Dir-Components/ATemplatePg-Components/AFooter-Bottom.html</a></iframe>
249: </td>
250: </tr>
251: </table>
252: </div>
253: </BODY>
254:
255: </HTML>