https://bugzilla.wikimedia.org/show_bug.cgi?id=32047
Web browser: ---
Bug #: 32047
Summary: on table with class="sortable" thead is before caption
Product: MediaWiki
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: Unprioritized
Component: Javascript
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
Classification: Unclassified
The caption element must be the first element of a table element:
http://www.w3.org/TR/html5/tabular-data.html#the-caption-element
{| class="wikitable sortable"
|+ CAPTION
|-
! THEAD
|-
| A
|-
| B
|- class="sortbottom"
| TFOOT
|}
is converted to
<table class="wikitable sortable jquery-tablesorter">
<thead>
<tr>
<th class="headerSort" title="Aufsteigend sortieren">THEAD</th>
</tr>
</thead>
<caption>CAPTION</caption>
<tbody>
<tr>
<td>A</td>
</tr>
<tr>
<td>B</td>
</tr>
<tr class="sortbottom">
<td>TFOOT</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
expected result:
<table class="wikitable sortable jquery-tablesorter">
<caption>CAPTION</caption>
<thead>
<tr>
<th class="headerSort" title="Aufsteigend sortieren">THEAD</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
</tr>
<tr>
<td>B</td>
</tr>
</tbody>
<tfoot>
<tr class="sortbottom">
<td>TFOOT</td>
</tr>
</tfoot>
</table>
--
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l