WCAG Rule 72: Instructions and operation must be accessible and not depend on solely on color, size, location or sound .
Rule Mapping
- Status: Accepted
- Severity: Potential Violation
- Priority: Priority 1
Details
- If this rule returns false since this test always needs to be performed manually
- since it cannot be progamically be determined if instructions are using sensory characteristics
Markup References
Validation Code
Dependencies
None
Context
document
Parameters
None
Code
function (ruleContext) {
// Return false since this test always needs to be performed
var passed = false;
return new ValidationResult(passed, '', '', '', []);
} // endfunction
>
// Return false since this test always needs to be performed
var passed = false;
return new ValidationResult(passed, '', '', '', []);
} // endfunction
>