NOTE: The current preferred location for bug reports is the GitHub issue tracker.
Bug 977 - Allow table@sortable and correct <data>
Allow table@sortable and correct <data>
Status: RESOLVED INTENTIONAL
Product: Validator.nu
Classification: Unclassified
Component: HTML parser
HEAD
All All
: P2 normal
Assigned To: Nobody
http://www.whatwg.org/specs/web-apps/...
: 1007 (view as bug list)
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2013-08-21 18:51 CEST by Mathias Bynens
Modified: 2016-03-22 16:55 CET (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mathias Bynens 2013-08-21 18:51:30 CEST
Here’s an example taken from the spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#the-data-element

    <!DOCTYPE html>
    <title>Test</title>
    <table sortable>
     <thead> <tr> <th> Game <th> Corporations <th> Map Size
     <tbody>
      <tr> <td> 1830 <td> <data value="8">Eight</data> <td> <data value="93">19+74 hexes (93 total)</data>
      <tr> <td> 1856 <td> <data value="11">Eleven</data> <td> <data value="99">12+87 hexes (99 total)</data>
      <tr> <td> 1870 <td> <data value="10">Ten</data> <td> <data value="149">4+145 hexes (149 total)</data>
    </table>

Currently, http://html5.validator.nu/ throws many errors when this example is entered.
Comment 1 Andy R 2014-11-05 13:46:30 CET
*** Bug 1007 has been marked as a duplicate of this bug. ***
Comment 2 Simon Pieters 2016-03-22 16:55:19 CET
I get only 1 error for the sortable attribute. Sortable tables have been dropped form the spec.
https://github.com/whatwg/html/issues/345