* needs_docs: => 0
* has_patch: 0 => 1
* needs_tests: => 0
* needs_better_patch: => 0
Comment:
[https://github.com/django/django/pull/6961 PR]
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
Ticket URL: <https://code.djangoproject.com/ticket/26928>
Comment (by timgraham):
`required` and `disabled` were added recently so I guess backwards-
compatibility wasn't much of a concern. Are there any backwards-
compatibility concerns for projects not using an HTML5 doctype?
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:2>
Comment (by jdufresne):
> Are there any backwards-compatibility concerns for projects not using an
HTML5 doctype?
I'm not aware of any for modern browsers. Just now, I tested the following
HTML document:
{{{
<html>
<head>
<title>Test</title>
</head>
<body>
<p>
<input type="checkbox" checked>
</p>
</body>
</html>
}}}
Against the doctypes listed on [https://www.w3.org/QA/2002/04/valid-dtd-
list.html w3.org].
All of these doctypes worked with recent versions of Firefox and Chrome --
they rendered the checkbox as checked on page reload. I currently do not
have easy access to IE for testing.
If you think it would help, I could add a blurb to the "Backwards
incompatible changes" section of the release notes.
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:3>
Comment (by timgraham):
I'd like to ask on the DevelopersMailingList if anyone has concerns about
this change.
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:4>
Comment (by jdufresne):
[https://groups.google.com/forum/#!topic/django-developers/06FZAJooX6w
Django developers thread]
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:5>
* stage: Unreviewed => Accepted
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:6>
* status: new => closed
* resolution: => fixed
Comment:
In [changeset:"50e299dbfbbfd796e63e7e13b4566cf69d2c4acb" 50e299d]:
{{{
#!CommitTicketReference repository=""
revision="50e299dbfbbfd796e63e7e13b4566cf69d2c4acb"
Fixed #26928 -- Changed forms' checked attribute to HTML5 boolean style.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/26928#comment:7>