WCAG Rule 72: Instructions and operation must be accessible and not depend on solely on color, size, location or sound .

Rule Mapping

Details

  1. If this rule returns false since this test always needs to be performed manually
  2. 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