Use of latest W3C technologies
(Referring UWEM Test: 11.1_HTML_01)Test info
Failure cause
This page does not use the latest W3C technologies.
The document uses an outdated Doctype or an invalid Doctype-Contenttype combination.
Good Example
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Page with VALID DOCTYPE AND CONTENT-TYPE</title></head>
<body>Page with valid document-type declaration (HTML 4.01).</body>
</html>
Solution
Use one of the following content-type and document-type combinations:
- The document-type is HTML 4.01 or XHTML 1.0 and the content-type is "text/html".
- The document type is XHTML 1.1 and the content-type is "application/xhtml+xml".
References
Related WCAG 1.0 Checkpoint
11.1"Use W3C technologies when they are available and appropriate for a task and use the latest versions when supported." [Priority 2]
WCAG 1.0 Checkpoint 11.1Referring UWEM Test
11.1_HTML_01This test is targeted to find out whether the latest versions of W3C technologies for HTML and XHML have been used.