/[suikacvs]/markup/html/whatpm/Whatpm/ContentChecker/ChangeLog
Suika

Diff of /markup/html/whatpm/Whatpm/ContentChecker/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.80 by wakaba, Sat Mar 22 12:29:59 2008 UTC revision 1.104 by wakaba, Sun Jun 1 05:35:53 2008 UTC
# Line 1  Line 1 
1    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTML.pm: Make data="" invalid (HTML5 revision 1709).
4    
5    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
6    
7            * HTML.pm: Support for sizes="" (HTML5 revision 1558).
8    
9    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
10    
11            * HTML.pm: |select| or |datalist| as a first child of |datagrid|
12            is now disallowed (HTML5 revision 1566).  |datagrid| elements
13            may be empty.
14    
15    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
16    
17            * HTML.pm: The |param| element is in LC phase now.
18    
19    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
20    
21            * HTML.pm: Support for seemless="" (HTML5 revision 1637) and
22            sandbox="" (HTML5 revision 1643).
23    
24    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
25    
26            * HTML.pm: |width| and |height| on |iframe| are now conforming (HTML5
27            revision 1659).
28    
29    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
30    
31            * HTML.pm: Fact out generic charset name checking code
32            to $HTMLCharsetChecker.  Support for charset="" attributes
33            on <a>, <link>, and <script> elements.
34    
35    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
36    
37            * HTML.pm ($GetHTMLFloatingPointNumberAttrChecker): More than
38            one "." characters were allowed in a floating point number
39            incorrectly.
40            (source): Support for the pixelratio="" attribute (HTML5 revision
41            1629).
42    
43    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
44    
45            * HTML.pm: Yay, |canvas| got the final status!
46    
47    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
48    
49            * HTML.pm ($GetHTMLBooleanAttrChecker): Allow uppercase
50            letters (HTML5 revision 1572).
51    
52    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
53    
54            * HTML.pm: Invoke |Whatpm::HTMLTable->assign_header| for each
55            table object.  Return the table object, not table element.
56            The |headers=""| checker for |td| elements are now noop.
57            Set the status of |headers=""| attribute as HTML5's one.
58    
59    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
60    
61            * HTML.pm ($HTMLLengthAttrChecker): New.
62            (table/@cellpadding, table/@cellspacing, @charoff): Implemented.
63            (script/@langauge): Implemented.
64    
65    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
66    
67            * HTML.pm: Make duplicate http-equiv="" non-conforming.
68            Check meta refresh content="".
69    
70    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
71    
72            * HTML.pm: Empty <tbod>, <thead>, <tfoot>, and <tr> are
73            no longer content model error (they might be raise
74            table model error, however).  All table model error
75            parameters should propagate.
76    
77    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
78    
79            * HTML.pm: Raise an error if a repeat* global attrbute
80            is used for an HTML element.
81    
82    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
83    
84            * HTML.pm: Support for global attributes.  Status
85            for XHTML2 elements/attributes are added.
86    
87    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
88    
89            * HTML.pm: Support for |repeat-start=""| attribute.
90    
91    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
92    
93            * HTML.pm: Support for |repeat=""|, |repeat-template=""|,
94            |repeat-min=""|, and |repeat-max=""| attributes.
95            Support for |button| |type| values |add|, |remove|, |move-up|,
96            and |move-down|.
97    
98    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
99    
100            * HTML.pm: Support for |template=""|, |ref=""|, and
101            |registrationmark=""| attributes.
102    
103    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
104    
105            * HTML.pm: <font> dropped and style="" is now global (HTML5 revision
106            1511).
107    
108    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
109    
110            * HTML.pm: Support for |onstorage| attribute is added (HTML5
111            revision 1495).  Defined terms no longer have to be unique (HTML5
112            revision 1467).
113    
114    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
115    
116            * HTML.pm ($HTMLBrowsingContextNameAttrChecker): New checker.
117            ($HTMLTargetAttrChecker): |_blank| is now allowed (HTML5
118            revision 1471) and an empty string is no longer allowed (HTML5
119            revision 1470).
120            (object/@name, iframe/@name): Added (HTML5 revision 1470).
121    
122    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
123    
124            * HTML.pm: |xmlns| attribute is now a global attribute (HTML5
125            revision 1426).
126    
127    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
128    
129            * HTML.pm: Support for HTML custom data attributes (HTML5
130            revision 1399).
131    
132    2008-03-28  Wakaba  <wakaba@suika.fam.cx>
133    
134            * HTML.pm: s/Prose/Flow/g (HTML5 revision 1261).
135    
136    2008-03-23  Wakaba  <wakaba@suika.fam.cx>
137    
138            * HTML.pm: @datetime microsyntax is in the First Draft phase.
139    
140  2008-03-22  Wakaba  <wakaba@suika.fam.cx>  2008-03-22  Wakaba  <wakaba@suika.fam.cx>
141    
142          * HTML.pm: link/@rev and a/@rev are implemented.          * HTML.pm: link/@rev and a/@rev are implemented.

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.104

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24