IITAA Rule 37: Document reading order makes sense when layout tables and css positioning is disabled.
Rule Mapping
- Status: Proposed
- Severity: Potential Recommendation"
- Priority: Priority 1
Details
- If this rule returns false since this test almost always needed to be performed
- This rule could be improved through the detection of layout table markup and CSS used on a page
Markup References
- HTML4: applet
- HTML4: area
- HTML4: embed
- HTML4: img
- HTML4: object
- HTML4: table
- html5: audio
- CSS21: bottom
- CSS21: clear
- CSS21: float
- CSS21: left
- CSS21: position
- CSS21: right
- CSS21: top
Validation Code
Dependencies
None
Context
document
Parameters
None
Code
function (ruleContext) {
var nodes = [];
// Return false since this test almost always needs to be performed
var passed = false;
return new ValidationResult(passed, '', '', '', []);
} // endfunction
>
var nodes = [];
// Return false since this test almost always needs to be performed
var passed = false;
return new ValidationResult(passed, '', '', '', []);
} // endfunction
>