WCAG Rule 15: H1 element content should not come only from the alt text of an image.
Rule Mapping
- Status: Accepted
- Severity: Recommendation
- Priority: Priority 1
Markup References
Validation Code
Dependencies
None
Context
h1
Parameters
None
Code
function (ruleContext) {
var h1Text = util.getNodeTextRecursively(ruleContext);
var passed = h1Text != util.getDisplayableAlt(ruleContext);
return new ValidationResult(passed, [ruleContext], '', '', []);
} // endfunction
>
var h1Text = util.getNodeTextRecursively(ruleContext);
var passed = h1Text != util.getDisplayableAlt(ruleContext);
return new ValidationResult(passed, [ruleContext], '', '', []);
} // endfunction
>