#23952 closed defect (bug) (wontfix)
Markup improvements to wp-admin/file.php and wp-admin/media.php
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | low | |
| Severity: | minor | Version: | |
| Component: | Administration | Keywords: | has-patch |
| Focuses: | Cc: |
Description
- Two text/javascript blocks are missing CDATA helpers.
- file.php has a div within a th, which is not valid markup.
Attached patch fixes these up.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
Since we have a HTML5 doctype the
divin athis valid. The content model of athelement is "Flow content, but with no header, footer, sectioning content, or heading content descendants" and adivis an element of the flow content category.The
//<![CDATA[inside of<script>aren't needed here too. It's more for XHTML.