> I'd like to see using the new input types (eg <input type="email"> for
> email form fields). Since this doesn't break any backwards compatibility
> it shouldn't hurt to include this.
It is backwards incompatible, every current app which is outputting
valid html/xhtml will stop beeing valid; eg this document doesn't
validate without a html 5 doctype:
<!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>Test</title>
</head>
<body>
<form action="." method="post">
<div>
<input type="email">
</div>
</form>
</body>
</html>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-develop...@googlegroups.com.
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en.

Reply via email to