/[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.15 by wakaba, Fri Oct 26 14:22:59 2007 UTC revision 1.181 by wakaba, Sun Jul 26 06:32:13 2009 UTC
# Line 1  Line 1 
1    2009-07-26  Wakaba  <wakaba@suika.fam.cx>
2    
3            * HTML.pm: Disallow |figure|-grandchild |caption| element when
4            |table| is the only child of |figure| element (HTML5 revision
5            2863).
6    
7    2009-07-25  Wakaba  <wakaba@suika.fam.cx>
8    
9            * HTML.pm: The |eventsource| element and the |onmessage| attribute
10            have been dropped (HTML5 revision 2870).
11    
12    2009-07-25  Wakaba  <wakaba@suika.fam.cx>
13    
14            * HTML.pm: Added support for |textarea| element's |placeholder|
15            attribute (HTML5 revision 2921).
16    
17    2009-07-25  Wakaba  <wakaba@suika.fam.cx>
18    
19            * HTML.pm: Implemented dimenstion attributes (|width| and
20            |height|; cf. HTML5 revision 2943).
21    
22    2009-07-06  Wakaba  <wakaba@suika.fam.cx>
23    
24            * HTML.pm: Disallow |header| in |footer| or |address| (HTML5
25            revision 3051).
26    
27    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
28    
29            * HTML.pm: Allow |accesskey| on all elements (HTML5 revision
30            3065).
31    
32    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
33    
34            * HTML.pm: Disallow |default| attribute of the |command| element
35            for now (HTML5 revision 3067).
36    
37    2009-07-05  Wakaba  <wakaba@suika.fam.cx>
38    
39            * HTML.pm: Implemented |pubdate| attribute on the |article|
40            element (HTML5 revision 3116).
41    
42    2009-07-03  Wakaba  <wakaba@suika.fam.cx>
43    
44            * HTML.pm: |datagrid| now allows any flow content (HTML5 revision
45            3164).
46    
47    2009-06-28  Wakaba  <wakaba@suika.fam.cx>
48    
49            * HTML.pm: |rp| now takes normali phrasing content (HTML5 revision
50            3217).
51    
52    2009-06-28  Wakaba  <wakaba@suika.fam.cx>
53    
54            * HTML.pm: |ondataunavailable| has been removed (HTML5 revision
55            3252).
56    
57    2009-06-28  Wakaba  <wakaba@suika.fam.cx>
58    
59            * HTML.pm: Block-level contents in |figure|'s |legend| and
60            |caption| are now allowed (HTML5 revision 3329).
61    
62    2008-12-15  Wakaba  <wakaba@suika.fam.cx>
63    
64            * HTML.pm ($HTMLDatetimeAttrChecker): Removed.
65            ($GetDateTimeAttrChecker): Added.
66            ($GetHTMLFloatingPointNumberAttrChecker): Set |number_value| for
67            later use.
68            (ins/@datetime, del/@datetime): Changed to use newer definitin of
69            "global date and time string".
70            (input's date- and time-related, and type=number and type=range
71            control types): Implemented value="", min="", and max="".
72    
73    2008-12-13  Wakaba  <wakaba@suika.fam.cx>
74    
75            * HTML.pm: Implemented <object form> and <legend form>.
76    
77    2008-12-13  Wakaba  <wakaba@suika.fam.cx>
78    
79            * HTML.pm: Updated definitions for attributes for form submission
80            on |form| and submit buttons (action="", method="", enctype="",
81            target="", and novalidate="").
82    
83    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
84    
85            * HTML.pm: Added checking for the uniqueness of |autofocus=""|
86            attribute.  Implemented |name=""| attribute for form controls.
87            Added U+000C into character class of space characters (it should
88            have been, but was not in some of regular expressions).  Updated
89            definitions for |output| elements.
90            
91    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
92    
93            * HTML.pm: Updated definitions for |datalist|, |optgroup|,
94            |option|, and |textarea| elements.
95    
96    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
97    
98            * HTML.pm: Updated definitions for |select|.
99    
100    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
101    
102            * HTML.pm: Updated definitions for |button|.
103    
104    2008-12-12  Wakaba  <wakaba@suika.fam.cx>
105    
106            * HTML.pm: Implemented <input accept> and <form accept>.  Raise a
107            SHOULD-level error if @pattern but no @title.
108    
109    2008-12-11  Wakaba  <wakaba@suika.fam.cx>
110    
111            * HTML.pm: Added support for |pattern| attributes.
112    
113    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
114    
115            * HTML.pm: Implemented <input type=file multiple> and <input
116            placeholder>.
117    
118    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
119    
120            * HTML.pm: Implemented <input list>.
121    
122    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
123    
124            * HTML.pm: Implemented <input type=color>.
125    
126    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
127    
128            * HTML.pm: Implemented <input multiple>, <input type=search>.
129            Implemented <input value> validation for |type|s |text|, |search|,
130            |email|, |url|, and |password|.
131    
132    2008-12-06  Wakaba  <wakaba@suika.fam.cx>
133    
134            * HTML.pm: Use |Message::URL| for relative URL resolution.  Don't
135            use attributes not supported by NanoDOM.
136    
137    2008-10-27  Wakaba  <wakaba@suika.fam.cx>
138    
139            * HTML.pm: HTML5 spec status updated, except for
140            datatemplate-related features, once again.  Status for RDFa and
141            XHTML Basic 1.1 updated.
142    
143    2008-10-27  Wakaba  <wakaba@suika.fam.cx>
144    
145            * HTML.pm: HTML5 spec status updated, except for
146            datatemplate-related features.
147    
148    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
149    
150            * HTML.pm: Quoted-strings in media type specifications were not
151            properly decoded.  Fixed support for <li value> with non-<ol>
152            parent (or with no parent).
153    
154    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
155    
156            * HTML.pm: <input usemap> support.
157    
158    2008-10-07  Wakaba  <wakaba@suika.fam.cx>
159    
160            * HTML.pm: Mark <input inputmode> as dropped.  <input accesskey>
161            support fixed.  <input align> support.  Tentative support for
162            <input inputmode>.  Support for <input replace>.  Status of
163            <button template> fixed.
164    
165    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
166    
167            * HTML.pm: Place checkers for obsolete attributes appropriately.
168    
169    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
170    
171            * HTML.pm: <input step> implemented.
172    
173    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
174    
175            * HTML.pm: The checker code for the Password state merged with the
176            code for the Text state.  The |maxlength| attribute checker
177            implemented.  The |size| attribute whose value is zero is not
178            allowed.
179    
180    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
181    
182            * HTML.pm: Support for |required| attribute of the |input|
183            element.
184    
185    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
186    
187            * HTML.pm: Don't use |get_attribute|, for compatibility with
188            NanoDOM.  Support for |readonly|, |autocomplete|, and |size|
189            attributes of the |input| element.
190    
191    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
192    
193            * HTML.pm: Checks of attribute applicablity for remaining <input
194            type> states are implemented.  Some <input type>-dependent
195            attribute checkers implemented.
196    
197    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
198    
199            * HTML.pm: <input type=text>, <input type=email>, <input
200            type=url>, <input type=password>, and <input type=datetime>
201            checkes are implemented.
202    
203    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
204    
205            * HTML.pm: <input type=hidden> checkes implemented.
206    
207    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
208    
209            * HTML.pm: <input type> definition updated according to HTML5
210            definition.  Prepares for tests against <input type> states.
211    
212    2008-10-06  Wakaba  <wakaba@suika.fam.cx>
213    
214            * HTML.pm: |input|'s |check_attrs| method is expanded to support
215            varying requirements for various states of the element.
216    
217    2008-10-05  Wakaba  <wakaba@suika.fam.cx>
218    
219            * HTML.pm: <label> content conformance checking implemented.
220    
221    2008-09-22  Wakaba  <wakaba@suika.fam.cx>
222    
223            * HTML.pm: Support for |for=""| validation.
224    
225    2008-09-22  Wakaba  <wakaba@suika.fam.cx>
226    
227            * HTML.pm: Support for |area| |alt=""| validation (HTML5
228            revision 1932).
229    
230    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
231    
232            * HTML.pm: Support for |form=""| attributes.
233    
234    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
235    
236            * HTML.pm: |id| attribute checkers for the |menu| and |map|
237            elements are removed; the |id| attribute of those elements is now
238            checked by the global |id| attribute.
239    
240    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
241    
242            * HTML.pm: Support for |fieldset| |legend|.
243    
244    2008-09-21  Wakaba  <wakaba@suika.fam.cx>
245    
246            * HTML.pm: |form| element's |name| attribute is implemented.
247    
248    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
249    
250            * HTML.pm: U+000B is no longer part of space characters (HTML5
251            revision 1738).
252    
253    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
254    
255            * HTML.pm, Atom.pm: Interactrive content implementation synced
256            with the spec (HTML5 revision 2018).
257    
258    2008-09-20  Wakaba  <wakaba@suika.fam.cx>
259    
260            * HTML.pm ($HTMLCharsetChecker): Support for ASCII-compatibility
261            check.
262            ($HTMLCharsetsAttrChecker): New checker for accept-charset=""
263            support.
264    
265    2008-09-17  Wakaba  <wakaba@suika.fam.cx>
266    
267            * HTML.pm: Support for style="" attributes.
268    
269    2008-09-12  Wakaba  <wakaba@suika.fam.cx>
270    
271            * HTML.pm: Tentative support for |textarea| |oninput|
272            attribute.
273    
274    2008-09-12  Wakaba  <wakaba@suika.fam.cx>
275    
276            * HTML.pm: The WF2 |oninput| attribute was not added.
277            The WF2 |onforminput| and |onformchange| attributes were
278            not added, since they are not defined (although they ARE
279            mentioned) in the normative part of the WF2 spec.  
280            Typo on the |oninvalid| attribute fixed.
281    
282    2008-09-11  Wakaba  <wakaba@suika.fam.cx>
283    
284            * HTML.pm: |fieldset| |name| added (HTML5 revision 2162).
285    
286    2008-09-09  Wakaba  <wakaba@suika.fam.cx>
287    
288            * HTML.pm: |a| is now transparent (HTML5 revision 1963).
289    
290    2008-09-07  Wakaba  <wakaba@suika.fam.cx>
291    
292            * HTML.pm: data-UPPERCASE attributes are no longer
293            allowed (HTML5 revision 1945).
294    
295    2008-09-06  Wakaba  <wakaba@suika.fam.cx>
296    
297            * HTML.pm: Support for form elements (HTML5 revisions
298            2142, 2148, 2150-2154).
299    
300    2008-09-05  Wakaba  <wakaba@suika.fam.cx>
301    
302            * HTML.pm: RDFa spec status updated again.
303    
304    2008-09-04  Wakaba  <wakaba@suika.fam.cx>
305    
306            * HTML.pm: RDFa spec status updated.
307    
308    2008-09-04  Wakaba  <wakaba@suika.fam.cx>
309    
310            * HTML.pm: WF2 content model, contexts, attributes/elements
311            status are updated. (HTML5 revision 2142-2152).
312    
313    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
314    
315            * HTML.pm: |event-source| renamed as |eventsource| (HTML5 revision
316            1863).
317    
318    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
319    
320            * HTML.pm: Uppercase attribute names for embed elements
321            are disallowed (HTML5 revision 1946).
322    
323    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
324    
325            * HTML.pm: |embed| custom attributes and |data-*| attributes
326            must be XML compatible (HTML5 revision 1836).
327    
328    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
329    
330            * HTML.pm: All HTML elements can have xmlns="" attributes (HTML5
331            revision 1834).
332    
333    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
334    
335            * HTML.pm: Requires non-empty title="" for rel="alternate stylesheet"
336            link elements (HTML5 revision 1942).
337    
338    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
339    
340            * HTML.pm: Support for the |bb| element (HTML5 revision 1894).
341            |irrelevant| renamed as |hidden| (HTML5 revision 2119).
342    
343    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
344    
345            * HTML.pm: Element status updated.
346    
347    2008-08-31  Wakaba  <wakaba@suika.fam.cx>
348    
349            * HTML.pm: <embed> without src="" is conforming (HTML5
350            revision 1929).
351    
352    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
353    
354            * HTML.pm: @autosubmit dropped (HTML5 revision 2019).
355    
356    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
357    
358            * HTML.pm: Use White_Space instead of Zs for date or time
359            string in content (HTML5 revision 2094).  Make "YYYY-MM-DDHH:MM" (that
360            misses a white space or "T" literal between day and hour)
361            not raise two errors.
362    
363    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
364    
365            * HTML.pm: |xml:lang| attribute value must be same
366            as |lang| attribute value for HTML elements (HTML5 revision 2062
367            and so on).  |lang| attribute in XML document is no longer
368            disallowed (HTML5 revision 2062).  |xml:lang| is allowed
369            in HTML document (HTML5 revision 2062 and so on).
370    
371    2008-08-30  Wakaba  <wakaba@suika.fam.cx>
372    
373            * Atom.pm: s/element missing/child element missing/ for
374            consistency.
375    
376            * HTML.pm: Typos fixed.
377            (pre): "No significant content" error was unintentionally
378            disabled.  s/element missing/child element missing/ for
379            consistency.
380    
381    2008-08-29  Wakaba  <wakaba@suika.fam.cx>
382    
383            * Atom.pm, HTML.pm: Made {level} inherited to the IMT checker.
384    
385    2008-08-17  Wakaba  <wakaba@suika.fam.cx>
386    
387            * HTML.pm (%XHTML2CommonAttrStatus): HTML5 status was missing.
388    
389    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
390    
391            * HTML.pm: Subdocument texts for |style| and |script|
392            elements were not initialized.
393    
394    2008-08-16  Wakaba  <wakaba@suika.fam.cx>
395    
396            * HTML.pm, Atom.pm: Pass {level} object to language tag
397            and URL checkers.
398    
399    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
400    
401            * HTML.pm: Mark HTML4's "fact"-level errors as such.  Typo fixed.
402    
403    2008-08-15  Wakaba  <wakaba@suika.fam.cx>
404    
405            * Atom.pm, HTML.pm: All error reporting method calls are
406            revised.
407    
408    2008-07-19  Wakaba  <wakaba@suika.fam.cx>
409    
410            * HTML.pm: Support for class=idl WebIDL checking.
411    
412    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
413    
414            * HTML.pm: Support for |<map name="">| (HTML5 revisions
415            1722 and 1728).
416    
417    2008-06-08  Wakaba  <wakaba@suika.fam.cx>
418    
419            * HTML.pm: Support for ruby, rt, and rp elements (HTML5
420            revision 1704).  The |href| attribute is also extended
421            as a common attribute by RDFa Last Call Working Draft.
422    
423    2008-06-01  Wakaba  <wakaba@suika.fam.cx>
424    
425            * HTML.pm: Make data="" invalid (HTML5 revision 1709).
426    
427    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
428    
429            * HTML.pm: Support for sizes="" (HTML5 revision 1558).
430    
431    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
432    
433            * HTML.pm: |select| or |datalist| as a first child of |datagrid|
434            is now disallowed (HTML5 revision 1566).  |datagrid| elements
435            may be empty.
436    
437    2008-05-25  Wakaba  <wakaba@suika.fam.cx>
438    
439            * HTML.pm: The |param| element is in LC phase now.
440    
441    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
442    
443            * HTML.pm: Support for seemless="" (HTML5 revision 1637) and
444            sandbox="" (HTML5 revision 1643).
445    
446    2008-05-24  Wakaba  <wakaba@suika.fam.cx>
447    
448            * HTML.pm: |width| and |height| on |iframe| are now conforming (HTML5
449            revision 1659).
450    
451    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
452    
453            * HTML.pm: Fact out generic charset name checking code
454            to $HTMLCharsetChecker.  Support for charset="" attributes
455            on <a>, <link>, and <script> elements.
456    
457    2008-05-16  Wakaba  <wakaba@suika.fam.cx>
458    
459            * HTML.pm ($GetHTMLFloatingPointNumberAttrChecker): More than
460            one "." characters were allowed in a floating point number
461            incorrectly.
462            (source): Support for the pixelratio="" attribute (HTML5 revision
463            1629).
464    
465    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
466    
467            * HTML.pm: Yay, |canvas| got the final status!
468    
469    2008-05-10  Wakaba  <wakaba@suika.fam.cx>
470    
471            * HTML.pm ($GetHTMLBooleanAttrChecker): Allow uppercase
472            letters (HTML5 revision 1572).
473    
474    2008-05-06  Wakaba  <wakaba@suika.fam.cx>
475    
476            * HTML.pm: Invoke |Whatpm::HTMLTable->assign_header| for each
477            table object.  Return the table object, not table element.
478            The |headers=""| checker for |td| elements are now noop.
479            Set the status of |headers=""| attribute as HTML5's one.
480    
481    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
482    
483            * HTML.pm ($HTMLLengthAttrChecker): New.
484            (table/@cellpadding, table/@cellspacing, @charoff): Implemented.
485            (script/@langauge): Implemented.
486    
487    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
488    
489            * HTML.pm: Make duplicate http-equiv="" non-conforming.
490            Check meta refresh content="".
491    
492    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
493    
494            * HTML.pm: Empty <tbod>, <thead>, <tfoot>, and <tr> are
495            no longer content model error (they might be raise
496            table model error, however).  All table model error
497            parameters should propagate.
498    
499    2008-05-05  Wakaba  <wakaba@suika.fam.cx>
500    
501            * HTML.pm: Raise an error if a repeat* global attrbute
502            is used for an HTML element.
503    
504    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
505    
506            * HTML.pm: Support for global attributes.  Status
507            for XHTML2 elements/attributes are added.
508    
509    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
510    
511            * HTML.pm: Support for |repeat-start=""| attribute.
512    
513    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
514    
515            * HTML.pm: Support for |repeat=""|, |repeat-template=""|,
516            |repeat-min=""|, and |repeat-max=""| attributes.
517            Support for |button| |type| values |add|, |remove|, |move-up|,
518            and |move-down|.
519    
520    2008-05-03  Wakaba  <wakaba@suika.fam.cx>
521    
522            * HTML.pm: Support for |template=""|, |ref=""|, and
523            |registrationmark=""| attributes.
524    
525    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
526    
527            * HTML.pm: <font> dropped and style="" is now global (HTML5 revision
528            1511).
529    
530    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
531    
532            * HTML.pm: Support for |onstorage| attribute is added (HTML5
533            revision 1495).  Defined terms no longer have to be unique (HTML5
534            revision 1467).
535    
536    2008-04-29  Wakaba  <wakaba@suika.fam.cx>
537    
538            * HTML.pm ($HTMLBrowsingContextNameAttrChecker): New checker.
539            ($HTMLTargetAttrChecker): |_blank| is now allowed (HTML5
540            revision 1471) and an empty string is no longer allowed (HTML5
541            revision 1470).
542            (object/@name, iframe/@name): Added (HTML5 revision 1470).
543    
544    2008-04-13  Wakaba  <wakaba@suika.fam.cx>
545    
546            * HTML.pm: |xmlns| attribute is now a global attribute (HTML5
547            revision 1426).
548    
549    2008-04-12  Wakaba  <wakaba@suika.fam.cx>
550    
551            * HTML.pm: Support for HTML custom data attributes (HTML5
552            revision 1399).
553    
554    2008-03-28  Wakaba  <wakaba@suika.fam.cx>
555    
556            * HTML.pm: s/Prose/Flow/g (HTML5 revision 1261).
557    
558    2008-03-23  Wakaba  <wakaba@suika.fam.cx>
559    
560            * HTML.pm: @datetime microsyntax is in the First Draft phase.
561    
562    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
563    
564            * HTML.pm: link/@rev and a/@rev are implemented.
565    
566    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
567    
568            * HTML.pm: link/@target, img/@align, img/@border, img/@hspace,
569            img/@vspace, img/@longdesc, object/@align, object/@archive,
570            object/@border, object/@classid, object/@codebase,
571            object/@codetype, object/@declare, object/@hspace,
572            object/@standby, object/@vspace, param/@valuetype,
573            param/@type, area/@nohref, %cellhalign/@align, %cellhalign/@char,
574            and %cellvalign/@valign are implemented.
575    
576    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
577    
578            * HTML.pm: tr/@bgcolor, td/@bgcolor, th/@bgcolor, td/@abbr,
579            th/@abbr, td/@axis, th/@axis, td/@scope, td/@nowrap,
580            th/@nowrap, caption/@align , table/@frame, table/@rules,
581            table/@summary, and table/@width are implemented.
582    
583    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
584    
585            * HTML.pm: body/@alink, body/@background, body/@bgcolor,
586            body/@link, body/@text, body/@vlink, hn/@align, p/@align,
587            br/@clear, pre/@width, ol/@compact, ul/@compact,
588            dl/@compact, dl/@compact, menu/@compact, and div/@align implemented.
589    
590    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
591    
592            * HTML.pm: Typo fixed.  html/@version implemented (as do-nothing
593            checker). head/@profile implemented.  meta/@scheme implemented (as
594            do-nothing checker).
595    
596    2008-03-22  Wakaba  <wakaba@suika.fam.cx>
597    
598            * HTML.pm: Add URIs to the list of URIs to be returned
599            by the checker method. |accesskey| attribute is implemented.
600    
601    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
602    
603            * Atom.pm: Don't raise an error even if there is
604            no |atom:summary| element child in the |atom:entry|
605            element when the |type| attribute of the |atom:content|
606            element is set to |html|, |xhtml|, or |text|.
607            The |atom:rights| elements were implemented
608            as Date construct (!?).
609            Typo in code for |rel=alternate| are fixed.
610    
611    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
612    
613            * Atom.pm: Support for |thr:total| element.
614            Add notes on additional Atom namespaces.
615    
616    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
617    
618            * Atom.pm: Support for |thr:in-reply-to| element.
619    
620    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
621    
622            * Atom.pm: Raise an error if required |atom:summary|
623            element is missing from an |atom:entry| element.
624    
625    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
626    
627            * Atom.pm: Support for |<* type=html>| in Text construct.
628    
629    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
630    
631            * Atom.pm: Bug fix for validation of |feed| on |author| child.
632    
633    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
634    
635            * Atom.pm: Support for |<content type=html>| content
636            checking.
637    
638    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
639    
640            * Atom.pm: Support for |author| for |feed| checking.
641    
642    2008-03-20  Wakaba  <wakaba@suika.fam.cx>
643    
644            * Atom.pm: Support for |author| for |entry| checking.
645    
646    2008-03-17  Wakaba  <wakaba@suika.fam.cx>
647    
648            * HTML.pm: Some attribute level definitions were missing.
649    
650    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
651    
652            * HTML.pm: |dir|, |center|, and |basefont| are implemented.
653    
654    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
655    
656            * HTML.pm: |contenteditable| attribute support is now implemented.
657    
658    2008-03-09  Wakaba  <wakaba@suika.fam.cx>
659    
660            * HTML.pm: Known but not-implemented-yet attributes were not
661            warned.
662    
663    2008-03-02  Wakaba  <wakaba@suika.fam.cx>
664    
665            * HTML.pm: Status information from old specifications
666            are incorporated.
667    
668    2008-03-02  Wakaba  <wakaba@suika.fam.cx>
669    
670            * Atom.pm: Reimplemented.
671    
672    2008-03-02  Wakaba  <wakaba@suika.fam.cx>
673    
674            * HTML.pm: |in_a_href| flag is not reset after the </a>.
675            Raise an error if |area| is not a descendant of |map|.
676    
677    2008-03-01  Wakaba  <wakaba@suika.fam.cx>
678    
679            * HTML.pm: Sectioning root category added.  |blockquote|
680            is no longer a sectioning content.
681    
682    2008-02-26  Wakaba  <wakaba@suika.fam.cx>
683    
684            * HTML.pm: Allow |blockquote| in |header| and |footer| (HTML5
685            revision 1250).
686    
687    2008-02-26  Wakaba  <wakaba@suika.fam.cx>
688    
689            * HTML.pm: First version of Web Forms 2.0 support (its weired,
690            since the spec itself is frankensteinesque:-); note that though
691            it is weired spec from the today's viewpoint, it is still
692            better-written spec than any W3C (Candidate or Proposed or full)
693            Recommendation, sadly.
694    
695    2008-02-26  Wakaba  <wakaba@suika.fam.cx>
696    
697            * HTML.pm: Since even XHTML Basic 1.1 is a CR, diffs
698            from XHTML M12N 1.0 are reflected in |status| field.
699    
700    2008-02-26  Wakaba  <wakaba@suika.fam.cx>
701    
702            * HTML.pm: HTML5 status constants are OR-ed with "allowed" status.
703            Don't raise "not defined" errors; they are now raised according
704            to status flags.  Status flags of li/@value, ol/@start, and menu
705            are now non-deprecated, to avoid deprecated error message.
706            area/@hreftype typo fixed.  |isindex| SHOULD NOT be used
707            according to HTML4.
708    
709    2008-02-26  Wakaba  <wakaba@suika.fam.cx>
710    
711            * HTML.pm: Make |figure| caption optional (HTML5 revision 1240).
712            Add |reversed| to |ol| (HTML5 revision 1248).
713    
714    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
715    
716            * HTML.pm: Most of Web Forms 1.0 attributes are implemented.
717    
718    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
719    
720            * HTML.pm: |big|, |tt|, |s|, |strike|, and |u| are implemented.
721            Raise not-part-of-HTML5 error for |acronym|.
722    
723    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
724    
725            * HTML.pm: HTML5 attribute status added.
726    
727    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
728    
729            * HTML.pm: Standardized status for attributes are added (HTML5
730            info are not added yet).  Make element or attribute not defined
731            by HTML5 spec as a conformance error (though it is not clearly
732            defined by HTML5 spec as non-conforming).  Note that more work
733            is needed for non-standard attribute thing, since the current
734            implementation prevents non-standard attribute from being
735            syntactically checked (otherwise it is treated as if a
736            standard attribute).
737    
738    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
739    
740            * HTML.pm: Standardized status attributes are added.
741    
742    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
743    
744            * HTML.pm: Invalid |meta| in |noscript| should be erred
745            as usual.
746    
747    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
748    
749            * HTML.pm: Updated for |del|-and-significant problem.
750    
751    2008-02-24  Wakaba  <wakaba@suika.fam.cx>
752    
753            * HTML.pm (datagrid): Condition was incorrect.
754    
755    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
756    
757            * HTML.pm (%HTMLProseContentChecker, details, figure): Don't
758            change state when a transparent element is encountered.
759            (details check): Reimplemented.
760    
761    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
762    
763            * HTML.pm (object check_end): Don't check significant content
764            if the element is used as a transparent element.
765            (video check): Reimplemented.
766    
767    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
768    
769            * HTML.pm: |figure| content checker reimplemented.  |object|
770            content checker for root element case reimplemented.
771    
772    2008-02-23  Wakaba  <wakaba@suika.fam.cx>
773    
774            * HTML.pm: Revised.
775    
776    2008-02-18  Wakaba  <wakaba@suika.fam.cx>
777    
778            * HTML.pm (object): Implemented (with some bug on transparentness
779            handling).
780    
781    2008-02-18  Wakaba  <wakaba@suika.fam.cx>
782    
783            * HTML.pm: s/m/mark/g (HTML5 revision 1232).
784    
785    2008-02-18  Wakaba  <wakaba@suika.fam.cx>
786    
787            * HTML.pm (img): |alt| is a SHOULD-level requirement now (since
788            the conformance checker cannot examine the semantics of the
789            image).
790    
791    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
792    
793            * HTML.pm: Useless old stuff are removed.  |datagrid|
794            was missing from |$HTMLInteractiveContent|.
795            (a): Use new |$HTMLInteractiveContent| in place
796            of |$HTMLIntetractiveElements|.
797            (caption): Use new |$HTMLPhrasingContentChecker| in place
798            of |$HTMLStrictlyInlineChecker|.
799    
800    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
801    
802            * HTML.pm (figure): Implemented.
803            (video, audio): In no-parent-element case with |src| attribute,
804            the content model is now prose content.
805    
806    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
807    
808            * HTML.pm (noscript): Reimplemented.
809    
810    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
811    
812            * HTML.pm: |<meta http-equiv=Content-Type| support (HTML5 revision
813            1180).
814    
815    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
816    
817            * HTML.pm (th): |th| now requires phrasing content.  |div|
818            now requires prose content.
819    
820    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
821    
822            * HTML.pm: Error messages revised.
823    
824    2008-02-17  Wakaba  <wakaba@suika.fam.cx>
825    
826            * HTML.pm: Most part of December 2007 Content Model is implemented.
827    
828    2008-02-10  Wakaba  <wakaba@suika.fam.cx>
829    
830            * HTML.pm (<style>): CSS validation code removed; instead,
831            it does invoke subdoc callback to ask to the callee to validate
832            the style sheet separately.
833    
834    2008-02-09  Wakaba  <wakaba@suika.fam.cx>
835    
836            * HTML.pm (<style>): Initial version of CSS validation support.
837    
838    2007-11-25  Wakaba  <wakaba@suika.fam.cx>
839    
840            * HTML.pm ($HTMLSignificantContentErrors): New.
841    
842    2007-11-25  Wakaba  <wakaba@suika.fam.cx>      
843    
844            * HTML.pm: Support for checking for significant content (HTML5
845            revision 1114).  Note that the current implementation has
846            an issue on treatment for transparent or semi-transparent
847            elements.
848    
849            * Atom.pm: Support for significant content checking (for composed
850            HTML-Atom documents).
851    
852    2007-11-25  Wakaba  <wakaba@suika.fam.cx>
853    
854            * HTML.pm (header): Descendant constraint is redefined by
855            new todo item type |descendant|.
856    
857    2007-11-24  Wakaba  <wakaba@suika.fam.cx>
858    
859            * HTML.pm (nest/@filter, rule/@condition): Implemented.
860            (nest/@mode): Definition was wrong.
861            ($HTMLSelectorsAttrChecker): New.
862    
863    2007-11-23  Wakaba  <wakaba@suika.fam.cx>
864    
865            * HTML.pm (meta): Character references in |charset| attribute
866            values are now erred.
867    
868    2007-11-23  Wakaba  <wakaba@suika.fam.cx>
869    
870            * HTML.pm (meta): |charset| value tests implemented.
871    
872    2007-11-11  Wakaba  <wakaba@suika.fam.cx>
873    
874            * HTML.pm: Raise bad-context error for proposed link types.
875    
876    2007-11-07  Wakaba  <wakaba@suika.fam.cx>
877    
878            * HTML.pm: Specialized error for old charset syntax.
879    
880    2007-11-07  Wakaba  <wakaba@suika.fam.cx>
881    
882            * HTML.pm: Make |rel="up up"| conforming (HTML5 revision 1130).
883    
884    2007-11-04  Wakaba  <wakaba@suika.fam.cx>
885    
886            * HTML.pm: Allow <html manifest=URI>.
887    
888    2007-11-04  Wakaba  <wakaba@suika.fam.cx>
889    
890            * HTML.pm: Don't allow <a><img ismap></a> (<a> w/o href="") (HTML5
891            revision 1115).
892    
893    2007-11-04  Wakaba  <wakaba@suika.fam.cx>
894    
895            * HTML.pm: <base> w/o @target and @href is non-conforming (HTML5
896            revision 1115).
897    
898    2007-11-04  Wakaba  <wakaba@suika.fam.cx>
899    
900            * HTML.pm: "Significant" has been gone (HTML5 revision 1114).
901    
902  2007-10-26  Wakaba  <wakaba@suika.fam.cx>  2007-10-26  Wakaba  <wakaba@suika.fam.cx>
903    
904          * HTML.pm: Support for |poster| attribute (HTML5 revision 1097).          * HTML.pm: Support for |poster| attribute (HTML5 revision 1097).

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.181

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24