/[suikacvs]/markup/html/whatpm/Whatpm/HTML.pm.src
Suika

Diff of /markup/html/whatpm/Whatpm/HTML.pm.src

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

revision 1.121 by wakaba, Thu Mar 20 08:04:58 2008 UTC revision 1.181 by wakaba, Mon Sep 15 02:54:12 2008 UTC
# Line 8  use Error qw(:try); Line 8  use Error qw(:try);
8  ## doc.write ('');  ## doc.write ('');
9  ## alert (doc.compatMode);  ## alert (doc.compatMode);
10    
11  ## TODO: Control charcters and noncharacters are not allowed (HTML5 revision 1263)  require IO::Handle;
12  ## TODO: 1252 parse error (revision 1264)  
13  ## TODO: 8859-11 = 874 (revision 1271)  my $HTML_NS = q<http://www.w3.org/1999/xhtml>;
14    my $MML_NS = q<http://www.w3.org/1998/Math/MathML>;
15  my $permitted_slash_tag_name = {  my $SVG_NS = q<http://www.w3.org/2000/svg>;
16    base => 1,  my $XLINK_NS = q<http://www.w3.org/1999/xlink>;
17    link => 1,  my $XML_NS = q<http://www.w3.org/XML/1998/namespace>;
18    meta => 1,  my $XMLNS_NS = q<http://www.w3.org/2000/xmlns/>;
19    hr => 1,  
20    br => 1,  sub A_EL () { 0b1 }
21    img => 1,  sub ADDRESS_EL () { 0b10 }
22    embed => 1,  sub BODY_EL () { 0b100 }
23    param => 1,  sub BUTTON_EL () { 0b1000 }
24    area => 1,  sub CAPTION_EL () { 0b10000 }
25    col => 1,  sub DD_EL () { 0b100000 }
26    input => 1,  sub DIV_EL () { 0b1000000 }
27    sub DT_EL () { 0b10000000 }
28    sub FORM_EL () { 0b100000000 }
29    sub FORMATTING_EL () { 0b1000000000 }
30    sub FRAMESET_EL () { 0b10000000000 }
31    sub HEADING_EL () { 0b100000000000 }
32    sub HTML_EL () { 0b1000000000000 }
33    sub LI_EL () { 0b10000000000000 }
34    sub NOBR_EL () { 0b100000000000000 }
35    sub OPTION_EL () { 0b1000000000000000 }
36    sub OPTGROUP_EL () { 0b10000000000000000 }
37    sub P_EL () { 0b100000000000000000 }
38    sub SELECT_EL () { 0b1000000000000000000 }
39    sub TABLE_EL () { 0b10000000000000000000 }
40    sub TABLE_CELL_EL () { 0b100000000000000000000 }
41    sub TABLE_ROW_EL () { 0b1000000000000000000000 }
42    sub TABLE_ROW_GROUP_EL () { 0b10000000000000000000000 }
43    sub MISC_SCOPING_EL () { 0b100000000000000000000000 }
44    sub MISC_SPECIAL_EL () { 0b1000000000000000000000000 }
45    sub FOREIGN_EL () { 0b10000000000000000000000000 }
46    sub FOREIGN_FLOW_CONTENT_EL () { 0b100000000000000000000000000 }
47    sub MML_AXML_EL () { 0b1000000000000000000000000000 }
48    sub RUBY_EL () { 0b10000000000000000000000000000 }
49    sub RUBY_COMPONENT_EL () { 0b100000000000000000000000000000 }
50    
51    sub TABLE_ROWS_EL () {
52      TABLE_EL |
53      TABLE_ROW_EL |
54      TABLE_ROW_GROUP_EL
55    }
56    
57    ## NOTE: Used in "generate implied end tags" algorithm.
58    ## NOTE: There is a code where a modified version of END_TAG_OPTIONAL_EL
59    ## is used in "generate implied end tags" implementation (search for the
60    ## function mae).
61    sub END_TAG_OPTIONAL_EL () {
62      DD_EL |
63      DT_EL |
64      LI_EL |
65      P_EL |
66      RUBY_COMPONENT_EL
67    }
68    
69    ## NOTE: Used in </body> and EOF algorithms.
70    sub ALL_END_TAG_OPTIONAL_EL () {
71      DD_EL |
72      DT_EL |
73      LI_EL |
74      P_EL |
75    
76      BODY_EL |
77      HTML_EL |
78      TABLE_CELL_EL |
79      TABLE_ROW_EL |
80      TABLE_ROW_GROUP_EL
81    }
82    
83    sub SCOPING_EL () {
84      BUTTON_EL |
85      CAPTION_EL |
86      HTML_EL |
87      TABLE_EL |
88      TABLE_CELL_EL |
89      MISC_SCOPING_EL
90    }
91    
92    sub TABLE_SCOPING_EL () {
93      HTML_EL |
94      TABLE_EL
95    }
96    
97    sub TABLE_ROWS_SCOPING_EL () {
98      HTML_EL |
99      TABLE_ROW_GROUP_EL
100    }
101    
102    sub TABLE_ROW_SCOPING_EL () {
103      HTML_EL |
104      TABLE_ROW_EL
105    }
106    
107    sub SPECIAL_EL () {
108      ADDRESS_EL |
109      BODY_EL |
110      DIV_EL |
111    
112      DD_EL |
113      DT_EL |
114      LI_EL |
115      P_EL |
116    
117      FORM_EL |
118      FRAMESET_EL |
119      HEADING_EL |
120      OPTION_EL |
121      OPTGROUP_EL |
122      SELECT_EL |
123      TABLE_ROW_EL |
124      TABLE_ROW_GROUP_EL |
125      MISC_SPECIAL_EL
126    }
127    
128    my $el_category = {
129      a => A_EL | FORMATTING_EL,
130      address => ADDRESS_EL,
131      applet => MISC_SCOPING_EL,
132      area => MISC_SPECIAL_EL,
133      b => FORMATTING_EL,
134      base => MISC_SPECIAL_EL,
135      basefont => MISC_SPECIAL_EL,
136      bgsound => MISC_SPECIAL_EL,
137      big => FORMATTING_EL,
138      blockquote => MISC_SPECIAL_EL,
139      body => BODY_EL,
140      br => MISC_SPECIAL_EL,
141      button => BUTTON_EL,
142      caption => CAPTION_EL,
143      center => MISC_SPECIAL_EL,
144      col => MISC_SPECIAL_EL,
145      colgroup => MISC_SPECIAL_EL,
146      dd => DD_EL,
147      dir => MISC_SPECIAL_EL,
148      div => DIV_EL,
149      dl => MISC_SPECIAL_EL,
150      dt => DT_EL,
151      em => FORMATTING_EL,
152      embed => MISC_SPECIAL_EL,
153      fieldset => MISC_SPECIAL_EL,
154      font => FORMATTING_EL,
155      form => FORM_EL,
156      frame => MISC_SPECIAL_EL,
157      frameset => FRAMESET_EL,
158      h1 => HEADING_EL,
159      h2 => HEADING_EL,
160      h3 => HEADING_EL,
161      h4 => HEADING_EL,
162      h5 => HEADING_EL,
163      h6 => HEADING_EL,
164      head => MISC_SPECIAL_EL,
165      hr => MISC_SPECIAL_EL,
166      html => HTML_EL,
167      i => FORMATTING_EL,
168      iframe => MISC_SPECIAL_EL,
169      img => MISC_SPECIAL_EL,
170      input => MISC_SPECIAL_EL,
171      isindex => MISC_SPECIAL_EL,
172      li => LI_EL,
173      link => MISC_SPECIAL_EL,
174      listing => MISC_SPECIAL_EL,
175      marquee => MISC_SCOPING_EL,
176      menu => MISC_SPECIAL_EL,
177      meta => MISC_SPECIAL_EL,
178      nobr => NOBR_EL | FORMATTING_EL,
179      noembed => MISC_SPECIAL_EL,
180      noframes => MISC_SPECIAL_EL,
181      noscript => MISC_SPECIAL_EL,
182      object => MISC_SCOPING_EL,
183      ol => MISC_SPECIAL_EL,
184      optgroup => OPTGROUP_EL,
185      option => OPTION_EL,
186      p => P_EL,
187      param => MISC_SPECIAL_EL,
188      plaintext => MISC_SPECIAL_EL,
189      pre => MISC_SPECIAL_EL,
190      rp => RUBY_COMPONENT_EL,
191      rt => RUBY_COMPONENT_EL,
192      ruby => RUBY_EL,
193      s => FORMATTING_EL,
194      script => MISC_SPECIAL_EL,
195      select => SELECT_EL,
196      small => FORMATTING_EL,
197      spacer => MISC_SPECIAL_EL,
198      strike => FORMATTING_EL,
199      strong => FORMATTING_EL,
200      style => MISC_SPECIAL_EL,
201      table => TABLE_EL,
202      tbody => TABLE_ROW_GROUP_EL,
203      td => TABLE_CELL_EL,
204      textarea => MISC_SPECIAL_EL,
205      tfoot => TABLE_ROW_GROUP_EL,
206      th => TABLE_CELL_EL,
207      thead => TABLE_ROW_GROUP_EL,
208      title => MISC_SPECIAL_EL,
209      tr => TABLE_ROW_EL,
210      tt => FORMATTING_EL,
211      u => FORMATTING_EL,
212      ul => MISC_SPECIAL_EL,
213      wbr => MISC_SPECIAL_EL,
214    };
215    
216    my $el_category_f = {
217      $MML_NS => {
218        'annotation-xml' => MML_AXML_EL,
219        mi => FOREIGN_FLOW_CONTENT_EL,
220        mo => FOREIGN_FLOW_CONTENT_EL,
221        mn => FOREIGN_FLOW_CONTENT_EL,
222        ms => FOREIGN_FLOW_CONTENT_EL,
223        mtext => FOREIGN_FLOW_CONTENT_EL,
224      },
225      $SVG_NS => {
226        foreignObject => FOREIGN_FLOW_CONTENT_EL,
227        desc => FOREIGN_FLOW_CONTENT_EL,
228        title => FOREIGN_FLOW_CONTENT_EL,
229      },
230      ## NOTE: In addition, FOREIGN_EL is set to non-HTML elements.
231    };
232    
233    my $svg_attr_name = {
234      attributename => 'attributeName',
235      attributetype => 'attributeType',
236      basefrequency => 'baseFrequency',
237      baseprofile => 'baseProfile',
238      calcmode => 'calcMode',
239      clippathunits => 'clipPathUnits',
240      contentscripttype => 'contentScriptType',
241      contentstyletype => 'contentStyleType',
242      diffuseconstant => 'diffuseConstant',
243      edgemode => 'edgeMode',
244      externalresourcesrequired => 'externalResourcesRequired',
245      filterres => 'filterRes',
246      filterunits => 'filterUnits',
247      glyphref => 'glyphRef',
248      gradienttransform => 'gradientTransform',
249      gradientunits => 'gradientUnits',
250      kernelmatrix => 'kernelMatrix',
251      kernelunitlength => 'kernelUnitLength',
252      keypoints => 'keyPoints',
253      keysplines => 'keySplines',
254      keytimes => 'keyTimes',
255      lengthadjust => 'lengthAdjust',
256      limitingconeangle => 'limitingConeAngle',
257      markerheight => 'markerHeight',
258      markerunits => 'markerUnits',
259      markerwidth => 'markerWidth',
260      maskcontentunits => 'maskContentUnits',
261      maskunits => 'maskUnits',
262      numoctaves => 'numOctaves',
263      pathlength => 'pathLength',
264      patterncontentunits => 'patternContentUnits',
265      patterntransform => 'patternTransform',
266      patternunits => 'patternUnits',
267      pointsatx => 'pointsAtX',
268      pointsaty => 'pointsAtY',
269      pointsatz => 'pointsAtZ',
270      preservealpha => 'preserveAlpha',
271      preserveaspectratio => 'preserveAspectRatio',
272      primitiveunits => 'primitiveUnits',
273      refx => 'refX',
274      refy => 'refY',
275      repeatcount => 'repeatCount',
276      repeatdur => 'repeatDur',
277      requiredextensions => 'requiredExtensions',
278      requiredfeatures => 'requiredFeatures',
279      specularconstant => 'specularConstant',
280      specularexponent => 'specularExponent',
281      spreadmethod => 'spreadMethod',
282      startoffset => 'startOffset',
283      stddeviation => 'stdDeviation',
284      stitchtiles => 'stitchTiles',
285      surfacescale => 'surfaceScale',
286      systemlanguage => 'systemLanguage',
287      tablevalues => 'tableValues',
288      targetx => 'targetX',
289      targety => 'targetY',
290      textlength => 'textLength',
291      viewbox => 'viewBox',
292      viewtarget => 'viewTarget',
293      xchannelselector => 'xChannelSelector',
294      ychannelselector => 'yChannelSelector',
295      zoomandpan => 'zoomAndPan',
296    };
297    
298    my $foreign_attr_xname = {
299      'xlink:actuate' => [$XLINK_NS, ['xlink', 'actuate']],
300      'xlink:arcrole' => [$XLINK_NS, ['xlink', 'arcrole']],
301      'xlink:href' => [$XLINK_NS, ['xlink', 'href']],
302      'xlink:role' => [$XLINK_NS, ['xlink', 'role']],
303      'xlink:show' => [$XLINK_NS, ['xlink', 'show']],
304      'xlink:title' => [$XLINK_NS, ['xlink', 'title']],
305      'xlink:type' => [$XLINK_NS, ['xlink', 'type']],
306      'xml:base' => [$XML_NS, ['xml', 'base']],
307      'xml:lang' => [$XML_NS, ['xml', 'lang']],
308      'xml:space' => [$XML_NS, ['xml', 'space']],
309      'xmlns' => [$XMLNS_NS, [undef, 'xmlns']],
310      'xmlns:xlink' => [$XMLNS_NS, ['xmlns', 'xlink']],
311  };  };
312    
313    ## ISSUE: xmlns:xlink="non-xlink-ns" is not an error.
314    
315  my $c1_entity_char = {  my $c1_entity_char = {
316    0x80 => 0x20AC,    0x80 => 0x20AC,
317    0x81 => 0xFFFD,    0x81 => 0xFFFD,
# Line 61  my $c1_entity_char = { Line 347  my $c1_entity_char = {
347    0x9F => 0x0178,    0x9F => 0x0178,
348  }; # $c1_entity_char  }; # $c1_entity_char
349    
 my $special_category = {  
   address => 1, area => 1, base => 1, basefont => 1, bgsound => 1,  
   blockquote => 1, body => 1, br => 1, center => 1, col => 1, colgroup => 1,  
   dd => 1, dir => 1, div => 1, dl => 1, dt => 1, embed => 1, fieldset => 1,  
   form => 1, frame => 1, frameset => 1, h1 => 1, h2 => 1, h3 => 1,  
   h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, iframe => 1, image => 1,  
   img => 1, input => 1, isindex => 1, li => 1, link => 1, listing => 1,  
   menu => 1, meta => 1, noembed => 1, noframes => 1, noscript => 1,  
   ol => 1, optgroup => 1, option => 1, p => 1, param => 1, plaintext => 1,  
   pre => 1, script => 1, select => 1, spacer => 1, style => 1, tbody => 1,  
   textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,  
 };  
 my $scoping_category = {  
   applet => 1, button => 1, caption => 1, html => 1, marquee => 1, object => 1,  
   table => 1, td => 1, th => 1,  
 };  
 my $formatting_category = {  
   a => 1, b => 1, big => 1, em => 1, font => 1, i => 1, nobr => 1,  
   s => 1, small => 1, strile => 1, strong => 1, tt => 1, u => 1,  
 };  
 # $phrasing_category: all other elements  
   
350  sub parse_byte_string ($$$$;$) {  sub parse_byte_string ($$$$;$) {
351      my $self = shift;
352      my $charset_name = shift;
353      open my $input, '<', ref $_[0] ? $_[0] : \($_[0]);
354      return $self->parse_byte_stream ($charset_name, $input, @_[1..$#_]);
355    } # parse_byte_string
356    
357    sub parse_byte_stream ($$$$;$$) {
358      # my ($self, $charset_name, $byte_stream, $doc, $onerror, $get_wrapper) = @_;
359    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
360    my $charset = shift;    my $charset_name = shift;
361    my $bytes_s = ref $_[0] ? $_[0] : \($_[0]);    my $byte_stream = $_[0];
362    my $s;  
363        my $onerror = $_[2] || sub {
364    if (defined $charset) {      my (%opt) = @_;
365      require Encode; ## TODO: decode(utf8) don't delete BOM      warn "Parse error ($opt{type})\n";
366      $s = \ (Encode::decode ($charset, $$bytes_s));    };
367      $self->{input_encoding} = lc $charset; ## TODO: normalize name    $self->{parse_error} = $onerror; # updated later by parse_char_string
368      $self->{confident} = 1;  
369    } else {    my $get_wrapper = $_[3] || sub ($) {
370      ## TODO: Implement HTML5 detection algorithm      return $_[0]; # $_[0] = byte stream handle, returned = arg to char handle
371      };
372    
373      ## HTML5 encoding sniffing algorithm
374      require Message::Charset::Info;
375      my $charset;
376      my $buffer;
377      my ($char_stream, $e_status);
378    
379      SNIFFING: {
380        ## NOTE: By setting |allow_fallback| option true when the
381        ## |get_decode_handle| method is invoked, we ignore what the HTML5
382        ## spec requires, i.e. unsupported encoding should be ignored.
383          ## TODO: We should not do this unless the parser is invoked
384          ## in the conformance checking mode, in which this behavior
385          ## would be useful.
386    
387        ## Step 1
388        if (defined $charset_name) {
389          $charset = Message::Charset::Info->get_by_html_name ($charset_name);
390              ## TODO: Is this ok?  Transfer protocol's parameter should be
391              ## interpreted in its semantics?
392    
393          ## ISSUE: Unsupported encoding is not ignored according to the spec.
394          ($char_stream, $e_status) = $charset->get_decode_handle
395              ($byte_stream, allow_error_reporting => 1,
396               allow_fallback => 1);
397          if ($char_stream) {
398            $self->{confident} = 1;
399            last SNIFFING;
400          } else {
401            ## TODO: unsupported error
402          }
403        }
404    
405        ## Step 2
406        my $byte_buffer = '';
407        for (1..1024) {
408          my $char = $byte_stream->getc;
409          last unless defined $char;
410          $byte_buffer .= $char;
411        } ## TODO: timeout
412    
413        ## Step 3
414        if ($byte_buffer =~ /^\xFE\xFF/) {
415          $charset = Message::Charset::Info->get_by_html_name ('utf-16be');
416          ($char_stream, $e_status) = $charset->get_decode_handle
417              ($byte_stream, allow_error_reporting => 1,
418               allow_fallback => 1, byte_buffer => \$byte_buffer);
419          $self->{confident} = 1;
420          last SNIFFING;
421        } elsif ($byte_buffer =~ /^\xFF\xFE/) {
422          $charset = Message::Charset::Info->get_by_html_name ('utf-16le');
423          ($char_stream, $e_status) = $charset->get_decode_handle
424              ($byte_stream, allow_error_reporting => 1,
425               allow_fallback => 1, byte_buffer => \$byte_buffer);
426          $self->{confident} = 1;
427          last SNIFFING;
428        } elsif ($byte_buffer =~ /^\xEF\xBB\xBF/) {
429          $charset = Message::Charset::Info->get_by_html_name ('utf-8');
430          ($char_stream, $e_status) = $charset->get_decode_handle
431              ($byte_stream, allow_error_reporting => 1,
432               allow_fallback => 1, byte_buffer => \$byte_buffer);
433          $self->{confident} = 1;
434          last SNIFFING;
435        }
436    
437        ## Step 4
438        ## TODO: <meta charset>
439    
440        ## Step 5
441        ## TODO: from history
442    
443        ## Step 6
444      require Whatpm::Charset::UniversalCharDet;      require Whatpm::Charset::UniversalCharDet;
445      $charset = Whatpm::Charset::UniversalCharDet->detect_byte_string      $charset_name = Whatpm::Charset::UniversalCharDet->detect_byte_string
446          (substr ($$bytes_s, 0, 1024));          ($byte_buffer);
447      $charset ||= 'windows-1252';      if (defined $charset_name) {
448      $s = \ (Encode::decode ($charset, $$bytes_s));        $charset = Message::Charset::Info->get_by_html_name ($charset_name);
449      $self->{input_encoding} = $charset;  
450          ## ISSUE: Unsupported encoding is not ignored according to the spec.
451          require Whatpm::Charset::DecodeHandle;
452          $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
453              ($byte_stream);
454          ($char_stream, $e_status) = $charset->get_decode_handle
455              ($buffer, allow_error_reporting => 1,
456               allow_fallback => 1, byte_buffer => \$byte_buffer);
457          if ($char_stream) {
458            $buffer->{buffer} = $byte_buffer;
459            !!!parse-error (type => 'sniffing:chardet',
460                            text => $charset_name,
461                            level => $self->{level}->{info},
462                            layer => 'encode',
463                            line => 1, column => 1);
464            $self->{confident} = 0;
465            last SNIFFING;
466          }
467        }
468    
469        ## Step 7: default
470        ## TODO: Make this configurable.
471        $charset = Message::Charset::Info->get_by_html_name ('windows-1252');
472            ## NOTE: We choose |windows-1252| here, since |utf-8| should be
473            ## detectable in the step 6.
474        require Whatpm::Charset::DecodeHandle;
475        $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
476            ($byte_stream);
477        ($char_stream, $e_status)
478            = $charset->get_decode_handle ($buffer,
479                                           allow_error_reporting => 1,
480                                           allow_fallback => 1,
481                                           byte_buffer => \$byte_buffer);
482        $buffer->{buffer} = $byte_buffer;
483        !!!parse-error (type => 'sniffing:default',
484                        text => 'windows-1252',
485                        level => $self->{level}->{info},
486                        line => 1, column => 1,
487                        layer => 'encode');
488      $self->{confident} = 0;      $self->{confident} = 0;
489      } # SNIFFING
490    
491      if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
492        $self->{input_encoding} = $charset->get_iana_name; ## TODO: Should we set actual charset decoder's encoding name?
493        !!!parse-error (type => 'chardecode:fallback',
494                        #text => $self->{input_encoding},
495                        level => $self->{level}->{uncertain},
496                        line => 1, column => 1,
497                        layer => 'encode');
498      } elsif (not ($e_status &
499                    Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL ())) {
500        $self->{input_encoding} = $charset->get_iana_name;
501        !!!parse-error (type => 'chardecode:no error',
502                        text => $self->{input_encoding},
503                        level => $self->{level}->{uncertain},
504                        line => 1, column => 1,
505                        layer => 'encode');
506      } else {
507        $self->{input_encoding} = $charset->get_iana_name;
508    }    }
509    
510    $self->{change_encoding} = sub {    $self->{change_encoding} = sub {
511      my $self = shift;      my $self = shift;
512      my $charset = lc shift;      $charset_name = shift;
513      my $token = shift;      my $token = shift;
     ## TODO: if $charset is supported  
     ## TODO: normalize charset name  
514    
515      ## "Change the encoding" algorithm:      $charset = Message::Charset::Info->get_by_html_name ($charset_name);
516        ($char_stream, $e_status) = $charset->get_decode_handle
517            ($byte_stream, allow_error_reporting => 1, allow_fallback => 1,
518             byte_buffer => \ $buffer->{buffer});
519        
520        if ($char_stream) { # if supported
521          ## "Change the encoding" algorithm:
522    
523      ## Step 1            ## Step 1    
524      if ($charset eq 'utf-16') { ## ISSUE: UTF-16BE -> UTF-8? UTF-16LE -> UTF-8?        if ($charset->{category} &
525        $charset = 'utf-8';            Message::Charset::Info::CHARSET_CATEGORY_UTF16 ()) {
526      }          $charset = Message::Charset::Info->get_by_html_name ('utf-8');
527            ($char_stream, $e_status) = $charset->get_decode_handle
528                ($byte_stream,
529                 byte_buffer => \ $buffer->{buffer});
530          }
531          $charset_name = $charset->get_iana_name;
532          
533          ## Step 2
534          if (defined $self->{input_encoding} and
535              $self->{input_encoding} eq $charset_name) {
536            !!!parse-error (type => 'charset label:matching',
537                            text => $charset_name,
538                            level => $self->{level}->{info});
539            $self->{confident} = 1;
540            return;
541          }
542    
543      ## Step 2        !!!parse-error (type => 'charset label detected',
544      if (defined $self->{input_encoding} and                        text => $self->{input_encoding},
545          $self->{input_encoding} eq $charset) {                        value => $charset_name,
546        $self->{confident} = 1;                        level => $self->{level}->{warn},
547        return;                        token => $token);
548          
549          ## Step 3
550          # if (can) {
551            ## change the encoding on the fly.
552            #$self->{confident} = 1;
553            #return;
554          # }
555          
556          ## Step 4
557          throw Whatpm::HTML::RestartParser ();
558      }      }
559      }; # $self->{change_encoding}
560    
561      !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.    my $char_onerror = sub {
562          ':'.$charset, level => 'w', token => $token);      my (undef, $type, %opt) = @_;
563        !!!parse-error (layer => 'encode',
564      ## Step 3                      line => $self->{line}, column => $self->{column} + 1,
565      # if (can) {                      %opt, type => $type);
566        ## change the encoding on the fly.      if ($opt{octets}) {
567        #$self->{confident} = 1;        ${$opt{octets}} = "\x{FFFD}"; # relacement character
568        #return;      }
569      # }    };
570    
571      ## Step 4    my $wrapped_char_stream = $get_wrapper->($char_stream);
572      throw Whatpm::HTML::RestartParser (charset => $charset);    $wrapped_char_stream->onerror ($char_onerror);
   }; # $self->{change_encoding}  
573    
574    my @args = @_; shift @args; # $s    my @args = @_; shift @args; # $s
575    my $return;    my $return;
576    try {    try {
577      $return = $self->parse_char_string ($s, @args);        $return = $self->parse_char_stream ($wrapped_char_stream, @args);  
578    } catch Whatpm::HTML::RestartParser with {    } catch Whatpm::HTML::RestartParser with {
579      my $charset = shift->{charset};      ## NOTE: Invoked after {change_encoding}.
580      $s = \ (Encode::decode ($charset, $$bytes_s));      
581      $self->{input_encoding} = $charset; ## TODO: normalize      if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
582          $self->{input_encoding} = $charset->get_iana_name; ## TODO: Should we set actual charset decoder's encoding name?
583          !!!parse-error (type => 'chardecode:fallback',
584                          level => $self->{level}->{uncertain},
585                          #text => $self->{input_encoding},
586                          line => 1, column => 1,
587                          layer => 'encode');
588        } elsif (not ($e_status &
589                      Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL ())) {
590          $self->{input_encoding} = $charset->get_iana_name;
591          !!!parse-error (type => 'chardecode:no error',
592                          text => $self->{input_encoding},
593                          level => $self->{level}->{uncertain},
594                          line => 1, column => 1,
595                          layer => 'encode');
596        } else {
597          $self->{input_encoding} = $charset->get_iana_name;
598        }
599      $self->{confident} = 1;      $self->{confident} = 1;
600      $return = $self->parse_char_string ($s, @args);  
601        $wrapped_char_stream = $get_wrapper->($char_stream);
602        $wrapped_char_stream->onerror ($char_onerror);
603    
604        $return = $self->parse_char_stream ($wrapped_char_stream, @args);
605    };    };
606    return $return;    return $return;
607  } # parse_byte_string  } # parse_byte_stream
608    
609  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM
610  ## and the HTML layer MUST ignore it.  However, we does strip BOM in  ## and the HTML layer MUST ignore it.  However, we does strip BOM in
# Line 163  sub parse_byte_string ($$$$;$) { Line 615  sub parse_byte_string ($$$$;$) {
615  ## such as |parse_byte_string| in this module, must ensure that it does  ## such as |parse_byte_string| in this module, must ensure that it does
616  ## strip the BOM and never strip any ZWNBSP.  ## strip the BOM and never strip any ZWNBSP.
617    
618  *parse_char_string = \&parse_string;  sub parse_char_string ($$$;$$) {
619      #my ($self, $s, $doc, $onerror, $get_wrapper) = @_;
620      my $self = shift;
621      my $s = ref $_[0] ? $_[0] : \($_[0]);
622      require Whatpm::Charset::DecodeHandle;
623      my $input = Whatpm::Charset::DecodeHandle::CharString->new ($s);
624      if ($_[3]) {
625        $input = $_[3]->($input);
626      }
627      return $self->parse_char_stream ($input, @_[1..$#_]);
628    } # parse_char_string
629    *parse_string = \&parse_char_string; ## NOTE: Alias for backward compatibility.
630    
631    my $disallowed_control_chars =
632    {
633     0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
634     0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
635     0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
636     0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
637     0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
638     0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
639     0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
640     0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
641     0x10FFFE => 1, 0x10FFFF => 1,
642    };
643    $disallowed_control_chars->{$_} = 1
644        for 0x0001 .. 0x0008, 0x000E .. 0x001F, 0x007F .. 0x009F,
645            0xD800 .. 0xDFFF, 0xFDD0 .. 0xFDDF;
646    ## ISSUE: U+FDE0-U+FDEF are not excluded
647    
648  sub parse_string ($$$;$) {  sub parse_char_stream ($$$;$) {
649    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
650    my $s = ref $_[0] ? $_[0] : \($_[0]);    my $input = $_[0];
651    $self->{document} = $_[1];    $self->{document} = $_[1];
652    @{$self->{document}->child_nodes} = ();    @{$self->{document}->child_nodes} = ();
653    
# Line 176  sub parse_string ($$$;$) { Line 656  sub parse_string ($$$;$) {
656    $self->{confident} = 1 unless exists $self->{confident};    $self->{confident} = 1 unless exists $self->{confident};
657    $self->{document}->input_encoding ($self->{input_encoding})    $self->{document}->input_encoding ($self->{input_encoding})
658        if defined $self->{input_encoding};        if defined $self->{input_encoding};
659    ## TODO: |{input_encoding}| is needless?
660    
661    my $i = 0;    my $i = 0;
662    $self->{line_prev} = $self->{line} = 1;    $self->{line_prev} = $self->{line} = 1;
663    $self->{column_prev} = $self->{column} = 0;    $self->{column_prev} = -1;
664      $self->{column} = 0;
665    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
666      my $self = shift;      my $self = shift;
667    
668      pop @{$self->{prev_char}};      my $char = '';
669      unshift @{$self->{prev_char}}, $self->{next_char};      if (defined $self->{next_next_char}) {
670          $char = $self->{next_next_char};
671          delete $self->{next_next_char};
672          $self->{next_char} = ord $char;
673        } else {
674          $self->{char_buffer} = '';
675          $self->{char_buffer_pos} = 0;
676    
677          my $count = $input->manakai_read_until
678             ($self->{char_buffer},
679              qr/(?![\x{FDD0}-\x{FDDF}\x{FFFE}\x{FFFF}\x{1FFFE}\x{1FFFF}\x{2FFFE}\x{2FFFF}\x{3FFFE}\x{3FFFF}\x{4FFFE}\x{4FFFF}\x{5FFFE}\x{5FFFF}\x{6FFFE}\x{6FFFF}\x{7FFFE}\x{7FFFF}\x{8FFFE}\x{8FFFF}\x{9FFFE}\x{9FFFF}\x{AFFFE}\x{AFFFF}\x{BFFFE}\x{BFFFF}\x{CFFFE}\x{CFFFF}\x{DFFFE}\x{DFFFF}\x{EFFFE}\x{EFFFF}\x{FFFFE}\x{FFFFF}])[\x20-\x7E\xA0-\x{D7FF}\x{E000}-\x{10FFFD}]/,
680              $self->{char_buffer_pos});
681          if ($count) {
682            $self->{line_prev} = $self->{line};
683            $self->{column_prev} = $self->{column};
684            $self->{column}++;
685            $self->{next_char}
686                = ord substr ($self->{char_buffer}, $self->{char_buffer_pos}++, 1);
687            return;
688          }
689    
690      $self->{next_char} = -1 and return if $i >= length $$s;        if ($input->read ($char, 1)) {
691      $self->{next_char} = ord substr $$s, $i++, 1;          $self->{next_char} = ord $char;
692          } else {
693            $self->{next_char} = -1;
694            return;
695          }
696        }
697    
698      ($self->{line_prev}, $self->{column_prev})      ($self->{line_prev}, $self->{column_prev})
699          = ($self->{line}, $self->{column});          = ($self->{line}, $self->{column});
700      $self->{column}++;      $self->{column}++;
701            
702      if ($self->{next_char} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
703          !!!cp ('j1');
704        $self->{line}++;        $self->{line}++;
705        $self->{column} = 0;        $self->{column} = 0;
706      } elsif ($self->{next_char} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
707        $i++ if substr ($$s, $i, 1) eq "\x0A";        !!!cp ('j2');
708    ## TODO: support for abort/streaming
709          my $next = '';
710          if ($input->read ($next, 1) and $next ne "\x0A") {
711            $self->{next_next_char} = $next;
712          }
713        $self->{next_char} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
714        $self->{line}++;        $self->{line}++;
715        $self->{column} = 0;        $self->{column} = 0;
716      } elsif ($self->{next_char} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
717          !!!cp ('j3');
718        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
719      } elsif ($self->{next_char} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
720          !!!cp ('j4');
721        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
722        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
723        } elsif ($disallowed_control_chars->{$self->{next_char}}) {
724          !!!cp ('j5');
725          if ($self->{next_char} < 0x10000) {
726            !!!parse-error (type => 'control char',
727                            text => (sprintf 'U+%04X', $self->{next_char}));
728          } else {
729            !!!parse-error (type => 'control char',
730                            text => (sprintf 'U-%08X', $self->{next_char}));
731          }
732      }      }
733    };    };
734    $self->{prev_char} = [-1, -1, -1];  
735    $self->{next_char} = -1;    $self->{read_until} = sub {
736        #my ($scalar, $specials_range, $offset) = @_;
737        return 0 if defined $self->{next_next_char};
738    
739        my $pattern = qr/(?![$_[1]\x{FDD0}-\x{FDDF}\x{FFFE}\x{FFFF}\x{1FFFE}\x{1FFFF}\x{2FFFE}\x{2FFFF}\x{3FFFE}\x{3FFFF}\x{4FFFE}\x{4FFFF}\x{5FFFE}\x{5FFFF}\x{6FFFE}\x{6FFFF}\x{7FFFE}\x{7FFFF}\x{8FFFE}\x{8FFFF}\x{9FFFE}\x{9FFFF}\x{AFFFE}\x{AFFFF}\x{BFFFE}\x{BFFFF}\x{CFFFE}\x{CFFFF}\x{DFFFE}\x{DFFFF}\x{EFFFE}\x{EFFFF}\x{FFFFE}\x{FFFFF}])[\x20-\x7E\xA0-\x{D7FF}\x{E000}-\x{10FFFD}]/;
740        my $offset = $_[2] || 0;
741    
742        if ($self->{char_buffer_pos} < length $self->{char_buffer}) {
743          pos ($self->{char_buffer}) = $self->{char_buffer_pos};
744          if ($self->{char_buffer} =~ /\G(?>$pattern)+/) {
745            substr ($_[0], $offset)
746                = substr ($self->{char_buffer}, $-[0], $+[0] - $-[0]);
747            my $count = $+[0] - $-[0];
748            if ($count) {
749              $self->{column} += $count;
750              $self->{char_buffer_pos} += $count;
751              $self->{line_prev} = $self->{line};
752              $self->{column_prev} = $self->{column} - 1;
753              $self->{prev_char} = [-1, -1, -1];
754              $self->{next_char} = -1;
755            }
756            return $count;
757          } else {
758            return 0;
759          }
760        } else {
761          my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
762          if ($count) {
763            $self->{column} += $count;
764            $self->{line_prev} = $self->{line};
765            $self->{column_prev} = $self->{column} - 1;
766            $self->{prev_char} = [-1, -1, -1];
767            $self->{next_char} = -1;
768          }
769          return $count;
770        }
771      }; # $self->{read_until}
772    
773    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
774      my (%opt) = @_;      my (%opt) = @_;
# Line 229  sub parse_string ($$$;$) { Line 788  sub parse_string ($$$;$) {
788    delete $self->{parse_error}; # remove loop    delete $self->{parse_error}; # remove loop
789    
790    return $self->{document};    return $self->{document};
791  } # parse_string  } # parse_char_stream
792    
793  sub new ($) {  sub new ($) {
794    my $class = shift;    my $class = shift;
795    my $self = bless {}, $class;    my $self = bless {
796        level => {must => 'm',
797                  should => 's',
798                  warn => 'w',
799                  info => 'i',
800                  uncertain => 'u'},
801      }, $class;
802    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
803      $self->{next_char} = -1;      $self->{next_char} = -1;
804    };    };
# Line 262  sub RCDATA_CONTENT_MODEL () { CM_ENTITY Line 827  sub RCDATA_CONTENT_MODEL () { CM_ENTITY
827  sub PCDATA_CONTENT_MODEL () { CM_ENTITY | CM_FULL_MARKUP }  sub PCDATA_CONTENT_MODEL () { CM_ENTITY | CM_FULL_MARKUP }
828    
829  sub DATA_STATE () { 0 }  sub DATA_STATE () { 0 }
830  sub ENTITY_DATA_STATE () { 1 }  #sub ENTITY_DATA_STATE () { 1 }
831  sub TAG_OPEN_STATE () { 2 }  sub TAG_OPEN_STATE () { 2 }
832  sub CLOSE_TAG_OPEN_STATE () { 3 }  sub CLOSE_TAG_OPEN_STATE () { 3 }
833  sub TAG_NAME_STATE () { 4 }  sub TAG_NAME_STATE () { 4 }
# Line 273  sub BEFORE_ATTRIBUTE_VALUE_STATE () { 8 Line 838  sub BEFORE_ATTRIBUTE_VALUE_STATE () { 8
838  sub ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE () { 9 }  sub ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE () { 9 }
839  sub ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE () { 10 }  sub ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE () { 10 }
840  sub ATTRIBUTE_VALUE_UNQUOTED_STATE () { 11 }  sub ATTRIBUTE_VALUE_UNQUOTED_STATE () { 11 }
841  sub ENTITY_IN_ATTRIBUTE_VALUE_STATE () { 12 }  #sub ENTITY_IN_ATTRIBUTE_VALUE_STATE () { 12 }
842  sub MARKUP_DECLARATION_OPEN_STATE () { 13 }  sub MARKUP_DECLARATION_OPEN_STATE () { 13 }
843  sub COMMENT_START_STATE () { 14 }  sub COMMENT_START_STATE () { 14 }
844  sub COMMENT_START_DASH_STATE () { 15 }  sub COMMENT_START_DASH_STATE () { 15 }
# Line 295  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO Line 860  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO
860  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }
861  sub BOGUS_DOCTYPE_STATE () { 32 }  sub BOGUS_DOCTYPE_STATE () { 32 }
862  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }
863    sub SELF_CLOSING_START_TAG_STATE () { 34 }
864    sub CDATA_SECTION_STATE () { 35 }
865    sub MD_HYPHEN_STATE () { 36 } # "markup declaration open state" in the spec
866    sub MD_DOCTYPE_STATE () { 37 } # "markup declaration open state" in the spec
867    sub MD_CDATA_STATE () { 38 } # "markup declaration open state" in the spec
868    sub CDATA_PCDATA_CLOSE_TAG_STATE () { 39 } # "close tag open state" in the spec
869    sub CDATA_SECTION_MSE1_STATE () { 40 } # "CDATA section state" in the spec
870    sub CDATA_SECTION_MSE2_STATE () { 41 } # "CDATA section state" in the spec
871    sub PUBLIC_STATE () { 42 } # "after DOCTYPE name state" in the spec
872    sub SYSTEM_STATE () { 43 } # "after DOCTYPE name state" in the spec
873    ## NOTE: "Entity data state", "entity in attribute value state", and
874    ## "consume a character reference" algorithm are jointly implemented
875    ## using the following six states:
876    sub ENTITY_STATE () { 44 }
877    sub ENTITY_HASH_STATE () { 45 }
878    sub NCR_NUM_STATE () { 46 }
879    sub HEXREF_X_STATE () { 47 }
880    sub HEXREF_HEX_STATE () { 48 }
881    sub ENTITY_NAME_STATE () { 49 }
882    
883  sub DOCTYPE_TOKEN () { 1 }  sub DOCTYPE_TOKEN () { 1 }
884  sub COMMENT_TOKEN () { 2 }  sub COMMENT_TOKEN () { 2 }
# Line 312  sub ROW_IMS ()        { 0b10000000 } Line 896  sub ROW_IMS ()        { 0b10000000 }
896  sub BODY_AFTER_IMS () { 0b100000000 }  sub BODY_AFTER_IMS () { 0b100000000 }
897  sub FRAME_IMS ()      { 0b1000000000 }  sub FRAME_IMS ()      { 0b1000000000 }
898  sub SELECT_IMS ()     { 0b10000000000 }  sub SELECT_IMS ()     { 0b10000000000 }
899    sub IN_FOREIGN_CONTENT_IM () { 0b100000000000 }
900        ## NOTE: "in foreign content" insertion mode is special; it is combined
901        ## with the secondary insertion mode.  In this parser, they are stored
902        ## together in the bit-or'ed form.
903    
904  ## NOTE: "initial" and "before html" insertion modes have no constants.  ## NOTE: "initial" and "before html" insertion modes have no constants.
905    
# Line 343  sub IN_COLUMN_GROUP_IM () { 0b10 } Line 931  sub IN_COLUMN_GROUP_IM () { 0b10 }
931  sub _initialize_tokenizer ($) {  sub _initialize_tokenizer ($) {
932    my $self = shift;    my $self = shift;
933    $self->{state} = DATA_STATE; # MUST    $self->{state} = DATA_STATE; # MUST
934      #$self->{state_keyword}; # initialized when used
935      #$self->{entity__value}; # initialized when used
936      #$self->{entity__match}; # initialized when used
937    $self->{content_model} = PCDATA_CONTENT_MODEL; # be    $self->{content_model} = PCDATA_CONTENT_MODEL; # be
938    undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE    undef $self->{current_token};
939    undef $self->{current_attribute};    undef $self->{current_attribute};
940    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
941    undef $self->{last_attribute_value_state};    #$self->{prev_state}; # initialized when used
942    $self->{char} = [];    delete $self->{self_closing};
943    # $self->{next_char}    $self->{char_buffer} = '';
944      $self->{char_buffer_pos} = 0;
945      $self->{prev_char} = [-1, -1, -1];
946      $self->{next_char} = -1;
947    !!!next-input-character;    !!!next-input-character;
948    $self->{token} = [];    $self->{token} = [];
949    # $self->{escape}    # $self->{escape}
# Line 368  sub _initialize_tokenizer ($) { Line 962  sub _initialize_tokenizer ($) {
962  ##        ->{value}  ##        ->{value}
963  ##        ->{has_reference} == 1 or 0  ##        ->{has_reference} == 1 or 0
964  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)
965    ## NOTE: The "self-closing flag" is hold as |$self->{self_closing}|.
966    ##     |->{self_closing}| is used to save the value of |$self->{self_closing}|
967    ##     while the token is pushed back to the stack.
968    
969  ## Emitted token MUST immediately be handled by the tree construction state.  ## Emitted token MUST immediately be handled by the tree construction state.
970    
# Line 377  sub _initialize_tokenizer ($) { Line 974  sub _initialize_tokenizer ($) {
974  ## has completed loading.  If one has, then it MUST be executed  ## has completed loading.  If one has, then it MUST be executed
975  ## and removed from the list.  ## and removed from the list.
976    
977  ## NOTE: HTML5 "Writing HTML documents" section, applied to  ## TODO: Polytheistic slash SHOULD NOT be used. (Applied only to atheists.)
978  ## documents and not to user agents and conformance checkers,  ## (This requirement was dropped from HTML5 spec, unfortunately.)
 ## contains some requirements that are not detected by the  
 ## parsing algorithm:  
 ## - Some requirements on character encoding declarations. ## TODO  
 ## - "Elements MUST NOT contain content that their content model disallows."  
 ##   ... Some are parse error, some are not (will be reported by c.c.).  
 ## - Polytheistic slash SHOULD NOT be used. (Applied only to atheists.) ## TODO  
 ## - Text (in elements, attributes, and comments) SHOULD NOT contain  
 ##   control characters other than space characters. ## TODO: (what is control character? C0, C1 and DEL?  Unicode control character?)  
   
 ## TODO: HTML5 poses authors two SHOULD-level requirements that cannot  
 ## be detected by the HTML5 parsing algorithm:  
 ## - Text,  
979    
980  sub _get_next_token ($) {  sub _get_next_token ($) {
981    my $self = shift;    my $self = shift;
982    
983      if ($self->{self_closing}) {
984        !!!parse-error (type => 'nestc', token => $self->{current_token});
985        ## NOTE: The |self_closing| flag is only set by start tag token.
986        ## In addition, when a start tag token is emitted, it is always set to
987        ## |current_token|.
988        delete $self->{self_closing};
989      }
990    
991    if (@{$self->{token}}) {    if (@{$self->{token}}) {
992        $self->{self_closing} = $self->{token}->[0]->{self_closing};
993      return shift @{$self->{token}};      return shift @{$self->{token}};
994    }    }
995    
# Line 404  sub _get_next_token ($) { Line 999  sub _get_next_token ($) {
999          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA
1000              not $self->{escape}) {              not $self->{escape}) {
1001            !!!cp (1);            !!!cp (1);
1002            $self->{state} = ENTITY_DATA_STATE;            ## NOTE: In the spec, the tokenizer is switched to the
1003              ## "entity data state".  In this implementation, the tokenizer
1004              ## is switched to the |ENTITY_STATE|, which is an implementation
1005              ## of the "consume a character reference" algorithm.
1006              $self->{entity_additional} = -1;
1007              $self->{prev_state} = DATA_STATE;
1008              $self->{state} = ENTITY_STATE;
1009            !!!next-input-character;            !!!next-input-character;
1010            redo A;            redo A;
1011          } else {          } else {
# Line 468  sub _get_next_token ($) { Line 1069  sub _get_next_token ($) {
1069                     data => chr $self->{next_char},                     data => chr $self->{next_char},
1070                     line => $self->{line}, column => $self->{column},                     line => $self->{line}, column => $self->{column},
1071                    };                    };
1072          $self->{read_until}->($token->{data}, q[-!<>&], length $token->{data});
1073    
1074        ## Stay in the data state        ## Stay in the data state
1075        !!!next-input-character;        !!!next-input-character;
1076    
1077        !!!emit ($token);        !!!emit ($token);
1078    
1079        redo A;        redo A;
     } elsif ($self->{state} == ENTITY_DATA_STATE) {  
       ## (cannot happen in CDATA state)  
   
       my ($l, $c) = ($self->{line_prev}, $self->{column_prev});  
         
       my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);  
   
       $self->{state} = DATA_STATE;  
       # next-input-character is already done  
   
       unless (defined $token) {  
         !!!cp (13);  
         !!!emit ({type => CHARACTER_TOKEN, data => '&',  
                   line => $l, column => $c,  
                  });  
       } else {  
         !!!cp (14);  
         !!!emit ($token);  
       }  
   
       redo A;  
1080      } elsif ($self->{state} == TAG_OPEN_STATE) {      } elsif ($self->{state} == TAG_OPEN_STATE) {
1081        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
1082          if ($self->{next_char} == 0x002F) { # /          if ($self->{next_char} == 0x002F) { # /
# Line 574  sub _get_next_token ($) { Line 1156  sub _get_next_token ($) {
1156            redo A;            redo A;
1157          } else {          } else {
1158            !!!cp (23);            !!!cp (23);
1159            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago',
1160                              line => $self->{line_prev},
1161                              column => $self->{column_prev});
1162            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1163            ## reconsume            ## reconsume
1164    
# Line 589  sub _get_next_token ($) { Line 1173  sub _get_next_token ($) {
1173          die "$0: $self->{content_model} in tag open";          die "$0: $self->{content_model} in tag open";
1174        }        }
1175      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
1176          ## NOTE: The "close tag open state" in the spec is implemented as
1177          ## |CLOSE_TAG_OPEN_STATE| and |CDATA_PCDATA_CLOSE_TAG_STATE|.
1178    
1179        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"
1180        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
1181          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
1182              $self->{state} = CDATA_PCDATA_CLOSE_TAG_STATE;
1183            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            $self->{state_keyword} = '';
1184            my @next_char;            ## Reconsume.
1185            TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {            redo A;
             push @next_char, $self->{next_char};  
             my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);  
             my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;  
             if ($self->{next_char} == $c or $self->{next_char} == $C) {  
               !!!cp (24);  
               !!!next-input-character;  
               next TAGNAME;  
             } else {  
               !!!cp (25);  
               $self->{next_char} = shift @next_char; # reconsume  
               !!!back-next-input-character (@next_char);  
               $self->{state} = DATA_STATE;  
   
               !!!emit ({type => CHARACTER_TOKEN, data => '</',  
                         line => $l, column => $c,  
                        });  
     
               redo A;  
             }  
           }  
           push @next_char, $self->{next_char};  
         
           unless ($self->{next_char} == 0x0009 or # HT  
                   $self->{next_char} == 0x000A or # LF  
                   $self->{next_char} == 0x000B or # VT  
                   $self->{next_char} == 0x000C or # FF  
                   $self->{next_char} == 0x0020 or # SP  
                   $self->{next_char} == 0x003E or # >  
                   $self->{next_char} == 0x002F or # /  
                   $self->{next_char} == -1) {  
             !!!cp (26);  
             $self->{next_char} = shift @next_char; # reconsume  
             !!!back-next-input-character (@next_char);  
             $self->{state} = DATA_STATE;  
             !!!emit ({type => CHARACTER_TOKEN, data => '</',  
                       line => $l, column => $c,  
                      });  
             redo A;  
           } else {  
             !!!cp (27);  
             $self->{next_char} = shift @next_char;  
             !!!back-next-input-character (@next_char);  
             # and consume...  
           }  
1186          } else {          } else {
1187            ## No start tag token has ever been emitted            ## No start tag token has ever been emitted
1188              ## NOTE: See <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>.
1189            !!!cp (28);            !!!cp (28);
           # next-input-character is already done  
1190            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1191              ## Reconsume.
1192            !!!emit ({type => CHARACTER_TOKEN, data => '</',            !!!emit ({type => CHARACTER_TOKEN, data => '</',
1193                      line => $l, column => $c,                      line => $l, column => $c,
1194                     });                     });
1195            redo A;            redo A;
1196          }          }
1197        }        }
1198          
1199        if (0x0041 <= $self->{next_char} and        if (0x0041 <= $self->{next_char} and
1200            $self->{next_char} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
1201          !!!cp (29);          !!!cp (29);
# Line 698  sub _get_next_token ($) { Line 1242  sub _get_next_token ($) {
1242                                    line => $self->{line_prev}, # "<" of "</"                                    line => $self->{line_prev}, # "<" of "</"
1243                                    column => $self->{column_prev} - 1,                                    column => $self->{column_prev} - 1,
1244                                   };                                   };
1245          ## $self->{next_char} is intentionally left as is          ## NOTE: $self->{next_char} is intentionally left as is.
1246          redo A;          ## Although the "anything else" case of the spec not explicitly
1247            ## states that the next input character is to be reconsumed,
1248            ## it will be included to the |data| of the comment token
1249            ## generated from the bogus end tag, as defined in the
1250            ## "bogus comment state" entry.
1251            redo A;
1252          }
1253        } elsif ($self->{state} == CDATA_PCDATA_CLOSE_TAG_STATE) {
1254          my $ch = substr $self->{last_emitted_start_tag_name}, length $self->{state_keyword}, 1;
1255          if (length $ch) {
1256            my $CH = $ch;
1257            $ch =~ tr/a-z/A-Z/;
1258            my $nch = chr $self->{next_char};
1259            if ($nch eq $ch or $nch eq $CH) {
1260              !!!cp (24);
1261              ## Stay in the state.
1262              $self->{state_keyword} .= $nch;
1263              !!!next-input-character;
1264              redo A;
1265            } else {
1266              !!!cp (25);
1267              $self->{state} = DATA_STATE;
1268              ## Reconsume.
1269              !!!emit ({type => CHARACTER_TOKEN,
1270                        data => '</' . $self->{state_keyword},
1271                        line => $self->{line_prev},
1272                        column => $self->{column_prev} - 1 - length $self->{state_keyword},
1273                       });
1274              redo A;
1275            }
1276          } else { # after "<{tag-name}"
1277            unless ({
1278                     0x0009 => 1, # HT
1279                     0x000A => 1, # LF
1280                     0x000B => 1, # VT
1281                     0x000C => 1, # FF
1282                     0x0020 => 1, # SP
1283                     0x003E => 1, # >
1284                     0x002F => 1, # /
1285                     -1 => 1, # EOF
1286                    }->{$self->{next_char}}) {
1287              !!!cp (26);
1288              ## Reconsume.
1289              $self->{state} = DATA_STATE;
1290              !!!emit ({type => CHARACTER_TOKEN,
1291                        data => '</' . $self->{state_keyword},
1292                        line => $self->{line_prev},
1293                        column => $self->{column_prev} - 1 - length $self->{state_keyword},
1294                       });
1295              redo A;
1296            } else {
1297              !!!cp (27);
1298              $self->{current_token}
1299                  = {type => END_TAG_TOKEN,
1300                     tag_name => $self->{last_emitted_start_tag_name},
1301                     line => $self->{line_prev},
1302                     column => $self->{column_prev} - 1 - length $self->{state_keyword}};
1303              $self->{state} = TAG_NAME_STATE;
1304              ## Reconsume.
1305              redo A;
1306            }
1307        }        }
1308      } elsif ($self->{state} == TAG_NAME_STATE) {      } elsif ($self->{state} == TAG_NAME_STATE) {
1309        if ($self->{next_char} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
# Line 765  sub _get_next_token ($) { Line 1369  sub _get_next_token ($) {
1369    
1370          redo A;          redo A;
1371        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1372            !!!cp (42);
1373            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1374          !!!next-input-character;          !!!next-input-character;
         if ($self->{next_char} == 0x003E and # >  
             $self->{current_token}->{type} == START_TAG_TOKEN and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           !!!cp (42);  
           #  
         } else {  
           !!!cp (43);  
           !!!parse-error (type => 'nestc');  
         }  
         $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;  
         # next-input-character is already done  
1375          redo A;          redo A;
1376        } else {        } else {
1377          !!!cp (44);          !!!cp (44);
# Line 829  sub _get_next_token ($) { Line 1423  sub _get_next_token ($) {
1423          !!!next-input-character;          !!!next-input-character;
1424          redo A;          redo A;
1425        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1426            !!!cp (50);
1427            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1428          !!!next-input-character;          !!!next-input-character;
         if ($self->{next_char} == 0x003E and # >  
             $self->{current_token}->{type} == START_TAG_TOKEN and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           !!!cp (50);  
           #  
         } else {  
           !!!cp (51);  
           !!!parse-error (type => 'nestc');  
         }  
         ## Stay in the state  
         # next-input-character is already done  
1429          redo A;          redo A;
1430        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1431          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
# Line 889  sub _get_next_token ($) { Line 1473  sub _get_next_token ($) {
1473          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
1474              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
1475            !!!cp (57);            !!!cp (57);
1476            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name}, line => $self->{current_attribute}->{line}, column => $self->{current_attribute}->{column});            !!!parse-error (type => 'duplicate attribute', text => $self->{current_attribute}->{name}, line => $self->{current_attribute}->{line}, column => $self->{current_attribute}->{column});
1477            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
1478          } else {          } else {
1479            !!!cp (58);            !!!cp (58);
# Line 942  sub _get_next_token ($) { Line 1526  sub _get_next_token ($) {
1526          !!!next-input-character;          !!!next-input-character;
1527          redo A;          redo A;
1528        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1529            !!!cp (64);
1530          $before_leave->();          $before_leave->();
1531            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1532          !!!next-input-character;          !!!next-input-character;
         if ($self->{next_char} == 0x003E and # >  
             $self->{current_token}->{type} == START_TAG_TOKEN and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           !!!cp (64);  
           #  
         } else {  
           !!!cp (65);  
           !!!parse-error (type => 'nestc');  
         }  
         $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;  
         # next-input-character is already done  
1533          redo A;          redo A;
1534        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1535          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
# Line 1042  sub _get_next_token ($) { Line 1616  sub _get_next_token ($) {
1616          !!!next-input-character;          !!!next-input-character;
1617          redo A;          redo A;
1618        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1619            !!!cp (77);
1620            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1621          !!!next-input-character;          !!!next-input-character;
         if ($self->{next_char} == 0x003E and # >  
             $self->{current_token}->{type} == START_TAG_TOKEN and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           !!!cp (77);  
           #  
         } else {  
           !!!cp (78);  
           !!!parse-error (type => 'nestc');  
           ## TODO: Different error type for <aa / bb> than <aa/>  
         }  
         $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;  
         # next-input-character is already done  
1622          redo A;          redo A;
1623        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1624          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
# Line 1081  sub _get_next_token ($) { Line 1644  sub _get_next_token ($) {
1644    
1645          redo A;          redo A;
1646        } else {        } else {
1647          !!!cp (82);          if ($self->{next_char} == 0x0022 or # "
1648                $self->{next_char} == 0x0027) { # '
1649              !!!cp (78);
1650              !!!parse-error (type => 'bad attribute name');
1651            } else {
1652              !!!cp (82);
1653            }
1654          $self->{current_attribute}          $self->{current_attribute}
1655              = {name => chr ($self->{next_char}),              = {name => chr ($self->{next_char}),
1656                 value => '',                 value => '',
# Line 1116  sub _get_next_token ($) { Line 1685  sub _get_next_token ($) {
1685          !!!next-input-character;          !!!next-input-character;
1686          redo A;          redo A;
1687        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1688            !!!parse-error (type => 'empty unquoted attribute value');
1689          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1690            !!!cp (87);            !!!cp (87);
1691            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
# Line 1180  sub _get_next_token ($) { Line 1750  sub _get_next_token ($) {
1750          redo A;          redo A;
1751        } elsif ($self->{next_char} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1752          !!!cp (96);          !!!cp (96);
1753          $self->{last_attribute_value_state} = $self->{state};          ## NOTE: In the spec, the tokenizer is switched to the
1754          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          ## "entity in attribute value state".  In this implementation, the
1755            ## tokenizer is switched to the |ENTITY_STATE|, which is an
1756            ## implementation of the "consume a character reference" algorithm.
1757            $self->{prev_state} = $self->{state};
1758            $self->{entity_additional} = 0x0022; # "
1759            $self->{state} = ENTITY_STATE;
1760          !!!next-input-character;          !!!next-input-character;
1761          redo A;          redo A;
1762        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
# Line 1210  sub _get_next_token ($) { Line 1785  sub _get_next_token ($) {
1785        } else {        } else {
1786          !!!cp (100);          !!!cp (100);
1787          $self->{current_attribute}->{value} .= chr ($self->{next_char});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1788            $self->{read_until}->($self->{current_attribute}->{value},
1789                                  q["&],
1790                                  length $self->{current_attribute}->{value});
1791    
1792          ## Stay in the state          ## Stay in the state
1793          !!!next-input-character;          !!!next-input-character;
1794          redo A;          redo A;
# Line 1222  sub _get_next_token ($) { Line 1801  sub _get_next_token ($) {
1801          redo A;          redo A;
1802        } elsif ($self->{next_char} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1803          !!!cp (102);          !!!cp (102);
1804          $self->{last_attribute_value_state} = $self->{state};          ## NOTE: In the spec, the tokenizer is switched to the
1805          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          ## "entity in attribute value state".  In this implementation, the
1806            ## tokenizer is switched to the |ENTITY_STATE|, which is an
1807            ## implementation of the "consume a character reference" algorithm.
1808            $self->{entity_additional} = 0x0027; # '
1809            $self->{prev_state} = $self->{state};
1810            $self->{state} = ENTITY_STATE;
1811          !!!next-input-character;          !!!next-input-character;
1812          redo A;          redo A;
1813        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
# Line 1252  sub _get_next_token ($) { Line 1836  sub _get_next_token ($) {
1836        } else {        } else {
1837          !!!cp (106);          !!!cp (106);
1838          $self->{current_attribute}->{value} .= chr ($self->{next_char});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1839            $self->{read_until}->($self->{current_attribute}->{value},
1840                                  q['&],
1841                                  length $self->{current_attribute}->{value});
1842    
1843          ## Stay in the state          ## Stay in the state
1844          !!!next-input-character;          !!!next-input-character;
1845          redo A;          redo A;
# Line 1268  sub _get_next_token ($) { Line 1856  sub _get_next_token ($) {
1856          redo A;          redo A;
1857        } elsif ($self->{next_char} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1858          !!!cp (108);          !!!cp (108);
1859          $self->{last_attribute_value_state} = $self->{state};          ## NOTE: In the spec, the tokenizer is switched to the
1860          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          ## "entity in attribute value state".  In this implementation, the
1861            ## tokenizer is switched to the |ENTITY_STATE|, which is an
1862            ## implementation of the "consume a character reference" algorithm.
1863            $self->{entity_additional} = -1;
1864            $self->{prev_state} = $self->{state};
1865            $self->{state} = ENTITY_STATE;
1866          !!!next-input-character;          !!!next-input-character;
1867          redo A;          redo A;
1868        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
# Line 1329  sub _get_next_token ($) { Line 1922  sub _get_next_token ($) {
1922            !!!cp (116);            !!!cp (116);
1923          }          }
1924          $self->{current_attribute}->{value} .= chr ($self->{next_char});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1925            $self->{read_until}->($self->{current_attribute}->{value},
1926                                  q["'=& >],
1927                                  length $self->{current_attribute}->{value});
1928    
1929          ## Stay in the state          ## Stay in the state
1930          !!!next-input-character;          !!!next-input-character;
1931          redo A;          redo A;
1932        }        }
     } elsif ($self->{state} == ENTITY_IN_ATTRIBUTE_VALUE_STATE) {  
       my $token = $self->_tokenize_attempt_to_consume_an_entity  
           (1,  
            $self->{last_attribute_value_state}  
              == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE ? 0x0022 : # "  
            $self->{last_attribute_value_state}  
              == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE ? 0x0027 : # '  
            -1);  
   
       unless (defined $token) {  
         !!!cp (117);  
         $self->{current_attribute}->{value} .= '&';  
       } else {  
         !!!cp (118);  
         $self->{current_attribute}->{value} .= $token->{data};  
         $self->{current_attribute}->{has_reference} = $token->{has_reference};  
         ## ISSUE: spec says "append the returned character token to the current attribute's value"  
       }  
   
       $self->{state} = $self->{last_attribute_value_state};  
       # next-input-character is already done  
       redo A;  
1933      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {
1934        if ($self->{next_char} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1935            $self->{next_char} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
# Line 1388  sub _get_next_token ($) { Line 1963  sub _get_next_token ($) {
1963    
1964          redo A;          redo A;
1965        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1966            !!!cp (122);
1967            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1968          !!!next-input-character;          !!!next-input-character;
1969          if ($self->{next_char} == 0x003E and # >          redo A;
1970              $self->{current_token}->{type} == START_TAG_TOKEN and        } elsif ($self->{next_char} == -1) {
1971              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {          !!!parse-error (type => 'unclosed tag');
1972            # permitted slash          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1973            !!!cp (122);            !!!cp (122.3);
1974            #            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1975            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1976              if ($self->{current_token}->{attributes}) {
1977                !!!cp (122.1);
1978                !!!parse-error (type => 'end tag attribute');
1979              } else {
1980                ## NOTE: This state should never be reached.
1981                !!!cp (122.2);
1982              }
1983          } else {          } else {
1984            !!!cp (123);            die "$0: $self->{current_token}->{type}: Unknown token type";
           !!!parse-error (type => 'nestc');  
1985          }          }
1986          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = DATA_STATE;
1987          # next-input-character is already done          ## Reconsume.
1988            !!!emit ($self->{current_token}); # start tag or end tag
1989          redo A;          redo A;
1990        } else {        } else {
1991          !!!cp (124);          !!!cp ('124.1');
1992          !!!parse-error (type => 'no space between attributes');          !!!parse-error (type => 'no space between attributes');
1993          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1994          ## reconsume          ## reconsume
1995          redo A;          redo A;
1996        }        }
1997      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {      } elsif ($self->{state} == SELF_CLOSING_START_TAG_STATE) {
1998        ## (only happen if PCDATA state)        if ($self->{next_char} == 0x003E) { # >
1999                  if ($self->{current_token}->{type} == END_TAG_TOKEN) {
2000        ## NOTE: Set by the previous state            !!!cp ('124.2');
2001        #my $token = {type => COMMENT_TOKEN, data => ''};            !!!parse-error (type => 'nestc', token => $self->{current_token});
2002              ## TODO: Different type than slash in start tag
2003        BC: {            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
2004          if ($self->{next_char} == 0x003E) { # >            if ($self->{current_token}->{attributes}) {
2005            !!!cp (124);              !!!cp ('124.4');
2006            $self->{state} = DATA_STATE;              !!!parse-error (type => 'end tag attribute');
2007            !!!next-input-character;            } else {
2008                !!!cp ('124.5');
2009            !!!emit ($self->{current_token}); # comment            }
2010              ## TODO: Test |<title></title/>|
2011            } else {
2012              !!!cp ('124.3');
2013              $self->{self_closing} = 1;
2014            }
2015    
2016            redo A;          $self->{state} = DATA_STATE;
2017          } elsif ($self->{next_char} == -1) {          !!!next-input-character;
           !!!cp (125);  
           $self->{state} = DATA_STATE;  
           ## reconsume  
2018    
2019            !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # start tag or end tag
2020    
2021            redo A;          redo A;
2022          } elsif ($self->{next_char} == -1) {
2023            !!!parse-error (type => 'unclosed tag');
2024            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
2025              !!!cp (124.7);
2026              $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
2027            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
2028              if ($self->{current_token}->{attributes}) {
2029                !!!cp (124.5);
2030                !!!parse-error (type => 'end tag attribute');
2031              } else {
2032                ## NOTE: This state should never be reached.
2033                !!!cp (124.6);
2034              }
2035          } else {          } else {
2036            !!!cp (126);            die "$0: $self->{current_token}->{type}: Unknown token type";
           $self->{current_token}->{data} .= chr ($self->{next_char}); # comment  
           !!!next-input-character;  
           redo BC;  
2037          }          }
2038        } # BC          $self->{state} = DATA_STATE;
2039            ## Reconsume.
2040        die "$0: _get_next_token: unexpected case [BC]";          !!!emit ($self->{current_token}); # start tag or end tag
2041      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {          redo A;
2042          } else {
2043            !!!cp ('124.4');
2044            !!!parse-error (type => 'nestc');
2045            ## TODO: This error type is wrong.
2046            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
2047            ## Reconsume.
2048            redo A;
2049          }
2050        } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
2051        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
2052    
2053        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1);        ## NOTE: Unlike spec's "bogus comment state", this implementation
2054          ## consumes characters one-by-one basis.
2055          
2056          if ($self->{next_char} == 0x003E) { # >
2057            !!!cp (124);
2058            $self->{state} = DATA_STATE;
2059            !!!next-input-character;
2060    
2061            !!!emit ($self->{current_token}); # comment
2062            redo A;
2063          } elsif ($self->{next_char} == -1) {
2064            !!!cp (125);
2065            $self->{state} = DATA_STATE;
2066            ## reconsume
2067    
2068            !!!emit ($self->{current_token}); # comment
2069            redo A;
2070          } else {
2071            !!!cp (126);
2072            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
2073            $self->{read_until}->($self->{current_token}->{data},
2074                                  q[>],
2075                                  length $self->{current_token}->{data});
2076    
2077        my @next_char;          ## Stay in the state.
2078        push @next_char, $self->{next_char};          !!!next-input-character;
2079            redo A;
2080          }
2081        } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
2082          ## (only happen if PCDATA state)
2083                
2084        if ($self->{next_char} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
2085            !!!cp (133);
2086            $self->{state} = MD_HYPHEN_STATE;
2087          !!!next-input-character;          !!!next-input-character;
2088          push @next_char, $self->{next_char};          redo A;
         if ($self->{next_char} == 0x002D) { # -  
           !!!cp (127);  
           $self->{current_token} = {type => COMMENT_TOKEN, data => '',  
                                     line => $l, column => $c,  
                                    };  
           $self->{state} = COMMENT_START_STATE;  
           !!!next-input-character;  
           redo A;  
         } else {  
           !!!cp (128);  
         }  
2089        } elsif ($self->{next_char} == 0x0044 or # D        } elsif ($self->{next_char} == 0x0044 or # D
2090                 $self->{next_char} == 0x0064) { # d                 $self->{next_char} == 0x0064) { # d
2091            ## ASCII case-insensitive.
2092            !!!cp (130);
2093            $self->{state} = MD_DOCTYPE_STATE;
2094            $self->{state_keyword} = chr $self->{next_char};
2095          !!!next-input-character;          !!!next-input-character;
2096          push @next_char, $self->{next_char};          redo A;
2097          if ($self->{next_char} == 0x004F or # O        } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM and
2098              $self->{next_char} == 0x006F) { # o                 $self->{open_elements}->[-1]->[1] & FOREIGN_EL and
2099            !!!next-input-character;                 $self->{next_char} == 0x005B) { # [
2100            push @next_char, $self->{next_char};          !!!cp (135.4);                
2101            if ($self->{next_char} == 0x0043 or # C          $self->{state} = MD_CDATA_STATE;
2102                $self->{next_char} == 0x0063) { # c          $self->{state_keyword} = '[';
2103              !!!next-input-character;          !!!next-input-character;
2104              push @next_char, $self->{next_char};          redo A;
             if ($self->{next_char} == 0x0054 or # T  
                 $self->{next_char} == 0x0074) { # t  
               !!!next-input-character;  
               push @next_char, $self->{next_char};  
               if ($self->{next_char} == 0x0059 or # Y  
                   $self->{next_char} == 0x0079) { # y  
                 !!!next-input-character;  
                 push @next_char, $self->{next_char};  
                 if ($self->{next_char} == 0x0050 or # P  
                     $self->{next_char} == 0x0070) { # p  
                   !!!next-input-character;  
                   push @next_char, $self->{next_char};  
                   if ($self->{next_char} == 0x0045 or # E  
                       $self->{next_char} == 0x0065) { # e  
                     !!!cp (129);  
                     ## TODO: What a stupid code this is!  
                     $self->{state} = DOCTYPE_STATE;  
                     $self->{current_token} = {type => DOCTYPE_TOKEN,  
                                               quirks => 1,  
                                               line => $l, column => $c,  
                                              };  
                     !!!next-input-character;  
                     redo A;  
                   } else {  
                     !!!cp (130);  
                   }  
                 } else {  
                   !!!cp (131);  
                 }  
               } else {  
                 !!!cp (132);  
               }  
             } else {  
               !!!cp (133);  
             }  
           } else {  
             !!!cp (134);  
           }  
         } else {  
           !!!cp (135);  
         }  
2105        } else {        } else {
2106          !!!cp (136);          !!!cp (136);
2107        }        }
2108    
2109        !!!parse-error (type => 'bogus comment');        !!!parse-error (type => 'bogus comment',
2110        $self->{next_char} = shift @next_char;                        line => $self->{line_prev},
2111        !!!back-next-input-character (@next_char);                        column => $self->{column_prev} - 1);
2112          ## Reconsume.
2113        $self->{state} = BOGUS_COMMENT_STATE;        $self->{state} = BOGUS_COMMENT_STATE;
2114        $self->{current_token} = {type => COMMENT_TOKEN, data => '',        $self->{current_token} = {type => COMMENT_TOKEN, data => '',
2115                                  line => $l, column => $c,                                  line => $self->{line_prev},
2116                                    column => $self->{column_prev} - 1,
2117                                 };                                 };
2118        redo A;        redo A;
2119              } elsif ($self->{state} == MD_HYPHEN_STATE) {
2120        ## ISSUE: typos in spec: chacacters, is is a parse error        if ($self->{next_char} == 0x002D) { # -
2121        ## ISSUE: spec is somewhat unclear on "is the first character that will be in the comment"; what is "that will be in the comment" is what the algorithm defines, isn't it?          !!!cp (127);
2122            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
2123                                      line => $self->{line_prev},
2124                                      column => $self->{column_prev} - 2,
2125                                     };
2126            $self->{state} = COMMENT_START_STATE;
2127            !!!next-input-character;
2128            redo A;
2129          } else {
2130            !!!cp (128);
2131            !!!parse-error (type => 'bogus comment',
2132                            line => $self->{line_prev},
2133                            column => $self->{column_prev} - 2);
2134            $self->{state} = BOGUS_COMMENT_STATE;
2135            ## Reconsume.
2136            $self->{current_token} = {type => COMMENT_TOKEN,
2137                                      data => '-',
2138                                      line => $self->{line_prev},
2139                                      column => $self->{column_prev} - 2,
2140                                     };
2141            redo A;
2142          }
2143        } elsif ($self->{state} == MD_DOCTYPE_STATE) {
2144          ## ASCII case-insensitive.
2145          if ($self->{next_char} == [
2146                undef,
2147                0x004F, # O
2148                0x0043, # C
2149                0x0054, # T
2150                0x0059, # Y
2151                0x0050, # P
2152              ]->[length $self->{state_keyword}] or
2153              $self->{next_char} == [
2154                undef,
2155                0x006F, # o
2156                0x0063, # c
2157                0x0074, # t
2158                0x0079, # y
2159                0x0070, # p
2160              ]->[length $self->{state_keyword}]) {
2161            !!!cp (131);
2162            ## Stay in the state.
2163            $self->{state_keyword} .= chr $self->{next_char};
2164            !!!next-input-character;
2165            redo A;
2166          } elsif ((length $self->{state_keyword}) == 6 and
2167                   ($self->{next_char} == 0x0045 or # E
2168                    $self->{next_char} == 0x0065)) { # e
2169            !!!cp (129);
2170            $self->{state} = DOCTYPE_STATE;
2171            $self->{current_token} = {type => DOCTYPE_TOKEN,
2172                                      quirks => 1,
2173                                      line => $self->{line_prev},
2174                                      column => $self->{column_prev} - 7,
2175                                     };
2176            !!!next-input-character;
2177            redo A;
2178          } else {
2179            !!!cp (132);        
2180            !!!parse-error (type => 'bogus comment',
2181                            line => $self->{line_prev},
2182                            column => $self->{column_prev} - 1 - length $self->{state_keyword});
2183            $self->{state} = BOGUS_COMMENT_STATE;
2184            ## Reconsume.
2185            $self->{current_token} = {type => COMMENT_TOKEN,
2186                                      data => $self->{state_keyword},
2187                                      line => $self->{line_prev},
2188                                      column => $self->{column_prev} - 1 - length $self->{state_keyword},
2189                                     };
2190            redo A;
2191          }
2192        } elsif ($self->{state} == MD_CDATA_STATE) {
2193          if ($self->{next_char} == {
2194                '[' => 0x0043, # C
2195                '[C' => 0x0044, # D
2196                '[CD' => 0x0041, # A
2197                '[CDA' => 0x0054, # T
2198                '[CDAT' => 0x0041, # A
2199              }->{$self->{state_keyword}}) {
2200            !!!cp (135.1);
2201            ## Stay in the state.
2202            $self->{state_keyword} .= chr $self->{next_char};
2203            !!!next-input-character;
2204            redo A;
2205          } elsif ($self->{state_keyword} eq '[CDATA' and
2206                   $self->{next_char} == 0x005B) { # [
2207            !!!cp (135.2);
2208            $self->{current_token} = {type => CHARACTER_TOKEN,
2209                                      data => '',
2210                                      line => $self->{line_prev},
2211                                      column => $self->{column_prev} - 7};
2212            $self->{state} = CDATA_SECTION_STATE;
2213            !!!next-input-character;
2214            redo A;
2215          } else {
2216            !!!cp (135.3);
2217            !!!parse-error (type => 'bogus comment',
2218                            line => $self->{line_prev},
2219                            column => $self->{column_prev} - 1 - length $self->{state_keyword});
2220            $self->{state} = BOGUS_COMMENT_STATE;
2221            ## Reconsume.
2222            $self->{current_token} = {type => COMMENT_TOKEN,
2223                                      data => $self->{state_keyword},
2224                                      line => $self->{line_prev},
2225                                      column => $self->{column_prev} - 1 - length $self->{state_keyword},
2226                                     };
2227            redo A;
2228          }
2229      } elsif ($self->{state} == COMMENT_START_STATE) {      } elsif ($self->{state} == COMMENT_START_STATE) {
2230        if ($self->{next_char} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
2231          !!!cp (137);          !!!cp (137);
# Line 1613  sub _get_next_token ($) { Line 2308  sub _get_next_token ($) {
2308        } else {        } else {
2309          !!!cp (147);          !!!cp (147);
2310          $self->{current_token}->{data} .= chr ($self->{next_char}); # comment          $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
2311            $self->{read_until}->($self->{current_token}->{data},
2312                                  q[-],
2313                                  length $self->{current_token}->{data});
2314    
2315          ## Stay in the state          ## Stay in the state
2316          !!!next-input-character;          !!!next-input-character;
2317          redo A;          redo A;
# Line 1797  sub _get_next_token ($) { Line 2496  sub _get_next_token ($) {
2496          redo A;          redo A;
2497        } elsif ($self->{next_char} == 0x0050 or # P        } elsif ($self->{next_char} == 0x0050 or # P
2498                 $self->{next_char} == 0x0070) { # p                 $self->{next_char} == 0x0070) { # p
2499            $self->{state} = PUBLIC_STATE;
2500            $self->{state_keyword} = chr $self->{next_char};
2501          !!!next-input-character;          !!!next-input-character;
2502          if ($self->{next_char} == 0x0055 or # U          redo A;
             $self->{next_char} == 0x0075) { # u  
           !!!next-input-character;  
           if ($self->{next_char} == 0x0042 or # B  
               $self->{next_char} == 0x0062) { # b  
             !!!next-input-character;  
             if ($self->{next_char} == 0x004C or # L  
                 $self->{next_char} == 0x006C) { # l  
               !!!next-input-character;  
               if ($self->{next_char} == 0x0049 or # I  
                   $self->{next_char} == 0x0069) { # i  
                 !!!next-input-character;  
                 if ($self->{next_char} == 0x0043 or # C  
                     $self->{next_char} == 0x0063) { # c  
                   !!!cp (168);  
                   $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;  
                   !!!next-input-character;  
                   redo A;  
                 } else {  
                   !!!cp (169);  
                 }  
               } else {  
                 !!!cp (170);  
               }  
             } else {  
               !!!cp (171);  
             }  
           } else {  
             !!!cp (172);  
           }  
         } else {  
           !!!cp (173);  
         }  
   
         #  
2503        } elsif ($self->{next_char} == 0x0053 or # S        } elsif ($self->{next_char} == 0x0053 or # S
2504                 $self->{next_char} == 0x0073) { # s                 $self->{next_char} == 0x0073) { # s
2505            $self->{state} = SYSTEM_STATE;
2506            $self->{state_keyword} = chr $self->{next_char};
2507          !!!next-input-character;          !!!next-input-character;
2508          if ($self->{next_char} == 0x0059 or # Y          redo A;
             $self->{next_char} == 0x0079) { # y  
           !!!next-input-character;  
           if ($self->{next_char} == 0x0053 or # S  
               $self->{next_char} == 0x0073) { # s  
             !!!next-input-character;  
             if ($self->{next_char} == 0x0054 or # T  
                 $self->{next_char} == 0x0074) { # t  
               !!!next-input-character;  
               if ($self->{next_char} == 0x0045 or # E  
                   $self->{next_char} == 0x0065) { # e  
                 !!!next-input-character;  
                 if ($self->{next_char} == 0x004D or # M  
                     $self->{next_char} == 0x006D) { # m  
                   !!!cp (174);  
                   $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;  
                   !!!next-input-character;  
                   redo A;  
                 } else {  
                   !!!cp (175);  
                 }  
               } else {  
                 !!!cp (176);  
               }  
             } else {  
               !!!cp (177);  
             }  
           } else {  
             !!!cp (178);  
           }  
         } else {  
           !!!cp (179);  
         }  
   
         #  
2509        } else {        } else {
2510          !!!cp (180);          !!!cp (180);
2511            !!!parse-error (type => 'string after DOCTYPE name');
2512            $self->{current_token}->{quirks} = 1;
2513    
2514            $self->{state} = BOGUS_DOCTYPE_STATE;
2515          !!!next-input-character;          !!!next-input-character;
2516          #          redo A;
2517        }        }
2518        } elsif ($self->{state} == PUBLIC_STATE) {
2519          ## ASCII case-insensitive
2520          if ($self->{next_char} == [
2521                undef,
2522                0x0055, # U
2523                0x0042, # B
2524                0x004C, # L
2525                0x0049, # I
2526              ]->[length $self->{state_keyword}] or
2527              $self->{next_char} == [
2528                undef,
2529                0x0075, # u
2530                0x0062, # b
2531                0x006C, # l
2532                0x0069, # i
2533              ]->[length $self->{state_keyword}]) {
2534            !!!cp (175);
2535            ## Stay in the state.
2536            $self->{state_keyword} .= chr $self->{next_char};
2537            !!!next-input-character;
2538            redo A;
2539          } elsif ((length $self->{state_keyword}) == 5 and
2540                   ($self->{next_char} == 0x0043 or # C
2541                    $self->{next_char} == 0x0063)) { # c
2542            !!!cp (168);
2543            $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
2544            !!!next-input-character;
2545            redo A;
2546          } else {
2547            !!!cp (169);
2548            !!!parse-error (type => 'string after DOCTYPE name',
2549                            line => $self->{line_prev},
2550                            column => $self->{column_prev} + 1 - length $self->{state_keyword});
2551            $self->{current_token}->{quirks} = 1;
2552    
2553        !!!parse-error (type => 'string after DOCTYPE name');          $self->{state} = BOGUS_DOCTYPE_STATE;
2554        $self->{current_token}->{quirks} = 1;          ## Reconsume.
2555            redo A;
2556          }
2557        } elsif ($self->{state} == SYSTEM_STATE) {
2558          ## ASCII case-insensitive
2559          if ($self->{next_char} == [
2560                undef,
2561                0x0059, # Y
2562                0x0053, # S
2563                0x0054, # T
2564                0x0045, # E
2565              ]->[length $self->{state_keyword}] or
2566              $self->{next_char} == [
2567                undef,
2568                0x0079, # y
2569                0x0073, # s
2570                0x0074, # t
2571                0x0065, # e
2572              ]->[length $self->{state_keyword}]) {
2573            !!!cp (170);
2574            ## Stay in the state.
2575            $self->{state_keyword} .= chr $self->{next_char};
2576            !!!next-input-character;
2577            redo A;
2578          } elsif ((length $self->{state_keyword}) == 5 and
2579                   ($self->{next_char} == 0x004D or # M
2580                    $self->{next_char} == 0x006D)) { # m
2581            !!!cp (171);
2582            $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2583            !!!next-input-character;
2584            redo A;
2585          } else {
2586            !!!cp (172);
2587            !!!parse-error (type => 'string after DOCTYPE name',
2588                            line => $self->{line_prev},
2589                            column => $self->{column_prev} + 1 - length $self->{state_keyword});
2590            $self->{current_token}->{quirks} = 1;
2591    
2592        $self->{state} = BOGUS_DOCTYPE_STATE;          $self->{state} = BOGUS_DOCTYPE_STATE;
2593        # next-input-character is already done          ## Reconsume.
2594        redo A;          redo A;
2595          }
2596      } elsif ($self->{state} == BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {      } elsif ($self->{state} == BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {
2597        if ({        if ({
2598              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
# Line 1967  sub _get_next_token ($) { Line 2677  sub _get_next_token ($) {
2677          !!!cp (190);          !!!cp (190);
2678          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
2679              .= chr $self->{next_char};              .= chr $self->{next_char};
2680            $self->{read_until}->($self->{current_token}->{public_identifier},
2681                                  q[">],
2682                                  length $self->{current_token}->{public_identifier});
2683    
2684          ## Stay in the state          ## Stay in the state
2685          !!!next-input-character;          !!!next-input-character;
2686          redo A;          redo A;
# Line 2003  sub _get_next_token ($) { Line 2717  sub _get_next_token ($) {
2717          !!!cp (194);          !!!cp (194);
2718          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
2719              .= chr $self->{next_char};              .= chr $self->{next_char};
2720            $self->{read_until}->($self->{current_token}->{public_identifier},
2721                                  q['>],
2722                                  length $self->{current_token}->{public_identifier});
2723    
2724          ## Stay in the state          ## Stay in the state
2725          !!!next-input-character;          !!!next-input-character;
2726          redo A;          redo A;
# Line 2115  sub _get_next_token ($) { Line 2833  sub _get_next_token ($) {
2833          redo A;          redo A;
2834        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2835          !!!cp (208);          !!!cp (208);
2836          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2837    
2838          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2839          !!!next-input-character;          !!!next-input-character;
# Line 2139  sub _get_next_token ($) { Line 2857  sub _get_next_token ($) {
2857          !!!cp (210);          !!!cp (210);
2858          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2859              .= chr $self->{next_char};              .= chr $self->{next_char};
2860            $self->{read_until}->($self->{current_token}->{system_identifier},
2861                                  q[">],
2862                                  length $self->{current_token}->{system_identifier});
2863    
2864          ## Stay in the state          ## Stay in the state
2865          !!!next-input-character;          !!!next-input-character;
2866          redo A;          redo A;
# Line 2151  sub _get_next_token ($) { Line 2873  sub _get_next_token ($) {
2873          redo A;          redo A;
2874        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2875          !!!cp (212);          !!!cp (212);
2876          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2877    
2878          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2879          !!!next-input-character;          !!!next-input-character;
# Line 2175  sub _get_next_token ($) { Line 2897  sub _get_next_token ($) {
2897          !!!cp (214);          !!!cp (214);
2898          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2899              .= chr $self->{next_char};              .= chr $self->{next_char};
2900            $self->{read_until}->($self->{current_token}->{system_identifier},
2901                                  q['>],
2902                                  length $self->{current_token}->{system_identifier});
2903    
2904          ## Stay in the state          ## Stay in the state
2905          !!!next-input-character;          !!!next-input-character;
2906          redo A;          redo A;
# Line 2199  sub _get_next_token ($) { Line 2925  sub _get_next_token ($) {
2925        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
2926          !!!cp (217);          !!!cp (217);
2927          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
   
2928          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2929          ## reconsume          ## reconsume
2930    
# Line 2236  sub _get_next_token ($) { Line 2961  sub _get_next_token ($) {
2961          redo A;          redo A;
2962        } else {        } else {
2963          !!!cp (221);          !!!cp (221);
2964            my $s = '';
2965            $self->{read_until}->($s, q[>], 0);
2966    
2967          ## Stay in the state          ## Stay in the state
2968          !!!next-input-character;          !!!next-input-character;
2969          redo A;          redo A;
2970        }        }
2971      } else {      } elsif ($self->{state} == CDATA_SECTION_STATE) {
2972        die "$0: $self->{state}: Unknown state";        ## NOTE: "CDATA section state" in the state is jointly implemented
2973      }        ## by three states, |CDATA_SECTION_STATE|, |CDATA_SECTION_MSE1_STATE|,
2974    } # A          ## and |CDATA_SECTION_MSE2_STATE|.
2975          
2976          if ($self->{next_char} == 0x005D) { # ]
2977            !!!cp (221.1);
2978            $self->{state} = CDATA_SECTION_MSE1_STATE;
2979            !!!next-input-character;
2980            redo A;
2981          } elsif ($self->{next_char} == -1) {
2982            $self->{state} = DATA_STATE;
2983            !!!next-input-character;
2984            if (length $self->{current_token}->{data}) { # character
2985              !!!cp (221.2);
2986              !!!emit ($self->{current_token}); # character
2987            } else {
2988              !!!cp (221.3);
2989              ## No token to emit. $self->{current_token} is discarded.
2990            }        
2991            redo A;
2992          } else {
2993            !!!cp (221.4);
2994            $self->{current_token}->{data} .= chr $self->{next_char};
2995            $self->{read_until}->($self->{current_token}->{data},
2996                                  q<]>,
2997                                  length $self->{current_token}->{data});
2998    
2999    die "$0: _get_next_token: unexpected case";          ## Stay in the state.
3000  } # _get_next_token          !!!next-input-character;
3001            redo A;
3002          }
3003    
3004  sub _tokenize_attempt_to_consume_an_entity ($$$) {        ## ISSUE: "text tokens" in spec.
3005    my ($self, $in_attr, $additional) = @_;      } elsif ($self->{state} == CDATA_SECTION_MSE1_STATE) {
3006          if ($self->{next_char} == 0x005D) { # ]
3007            !!!cp (221.5);
3008            $self->{state} = CDATA_SECTION_MSE2_STATE;
3009            !!!next-input-character;
3010            redo A;
3011          } else {
3012            !!!cp (221.6);
3013            $self->{current_token}->{data} .= ']';
3014            $self->{state} = CDATA_SECTION_STATE;
3015            ## Reconsume.
3016            redo A;
3017          }
3018        } elsif ($self->{state} == CDATA_SECTION_MSE2_STATE) {
3019          if ($self->{next_char} == 0x003E) { # >
3020            $self->{state} = DATA_STATE;
3021            !!!next-input-character;
3022            if (length $self->{current_token}->{data}) { # character
3023              !!!cp (221.7);
3024              !!!emit ($self->{current_token}); # character
3025            } else {
3026              !!!cp (221.8);
3027              ## No token to emit. $self->{current_token} is discarded.
3028            }
3029            redo A;
3030          } elsif ($self->{next_char} == 0x005D) { # ]
3031            !!!cp (221.9); # character
3032            $self->{current_token}->{data} .= ']'; ## Add first "]" of "]]]".
3033            ## Stay in the state.
3034            !!!next-input-character;
3035            redo A;
3036          } else {
3037            !!!cp (221.11);
3038            $self->{current_token}->{data} .= ']]'; # character
3039            $self->{state} = CDATA_SECTION_STATE;
3040            ## Reconsume.
3041            redo A;
3042          }
3043        } elsif ($self->{state} == ENTITY_STATE) {
3044          if ({
3045            0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
3046            0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, &
3047            $self->{entity_additional} => 1,
3048          }->{$self->{next_char}}) {
3049            !!!cp (1001);
3050            ## Don't consume
3051            ## No error
3052            ## Return nothing.
3053            #
3054          } elsif ($self->{next_char} == 0x0023) { # #
3055            !!!cp (999);
3056            $self->{state} = ENTITY_HASH_STATE;
3057            $self->{state_keyword} = '#';
3058            !!!next-input-character;
3059            redo A;
3060          } elsif ((0x0041 <= $self->{next_char} and
3061                    $self->{next_char} <= 0x005A) or # A..Z
3062                   (0x0061 <= $self->{next_char} and
3063                    $self->{next_char} <= 0x007A)) { # a..z
3064            !!!cp (998);
3065            require Whatpm::_NamedEntityList;
3066            $self->{state} = ENTITY_NAME_STATE;
3067            $self->{state_keyword} = chr $self->{next_char};
3068            $self->{entity__value} = $self->{state_keyword};
3069            $self->{entity__match} = 0;
3070            !!!next-input-character;
3071            redo A;
3072          } else {
3073            !!!cp (1027);
3074            !!!parse-error (type => 'bare ero');
3075            ## Return nothing.
3076            #
3077          }
3078    
3079    my ($l, $c) = ($self->{line_prev}, $self->{column_prev});        ## NOTE: No character is consumed by the "consume a character
3080          ## reference" algorithm.  In other word, there is an "&" character
3081          ## that does not introduce a character reference, which would be
3082          ## appended to the parent element or the attribute value in later
3083          ## process of the tokenizer.
3084    
3085          if ($self->{prev_state} == DATA_STATE) {
3086            !!!cp (997);
3087            $self->{state} = $self->{prev_state};
3088            ## Reconsume.
3089            !!!emit ({type => CHARACTER_TOKEN, data => '&',
3090                      line => $self->{line_prev},
3091                      column => $self->{column_prev},
3092                     });
3093            redo A;
3094          } else {
3095            !!!cp (996);
3096            $self->{current_attribute}->{value} .= '&';
3097            $self->{state} = $self->{prev_state};
3098            ## Reconsume.
3099            redo A;
3100          }
3101        } elsif ($self->{state} == ENTITY_HASH_STATE) {
3102          if ($self->{next_char} == 0x0078 or # x
3103              $self->{next_char} == 0x0058) { # X
3104            !!!cp (995);
3105            $self->{state} = HEXREF_X_STATE;
3106            $self->{state_keyword} .= chr $self->{next_char};
3107            !!!next-input-character;
3108            redo A;
3109          } elsif (0x0030 <= $self->{next_char} and
3110                   $self->{next_char} <= 0x0039) { # 0..9
3111            !!!cp (994);
3112            $self->{state} = NCR_NUM_STATE;
3113            $self->{state_keyword} = $self->{next_char} - 0x0030;
3114            !!!next-input-character;
3115            redo A;
3116          } else {
3117            !!!parse-error (type => 'bare nero',
3118                            line => $self->{line_prev},
3119                            column => $self->{column_prev} - 1);
3120    
3121    if ({          ## NOTE: According to the spec algorithm, nothing is returned,
3122         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,          ## and then "&#" is appended to the parent element or the attribute
3123         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR          ## value in the later processing.
3124         $additional => 1,  
3125        }->{$self->{next_char}}) {          if ($self->{prev_state} == DATA_STATE) {
3126      !!!cp (1001);            !!!cp (1019);
3127      ## Don't consume            $self->{state} = $self->{prev_state};
3128      ## No error            ## Reconsume.
3129      return undef;            !!!emit ({type => CHARACTER_TOKEN,
3130    } elsif ($self->{next_char} == 0x0023) { # #                      data => '&#',
3131      !!!next-input-character;                      line => $self->{line_prev},
3132      if ($self->{next_char} == 0x0078 or # x                      column => $self->{column_prev} - 1,
3133          $self->{next_char} == 0x0058) { # X                     });
3134        my $code;            redo A;
       X: {  
         my $x_char = $self->{next_char};  
         !!!next-input-character;  
         if (0x0030 <= $self->{next_char} and  
             $self->{next_char} <= 0x0039) { # 0..9  
           !!!cp (1002);  
           $code ||= 0;  
           $code *= 0x10;  
           $code += $self->{next_char} - 0x0030;  
           redo X;  
         } elsif (0x0061 <= $self->{next_char} and  
                  $self->{next_char} <= 0x0066) { # a..f  
           !!!cp (1003);  
           $code ||= 0;  
           $code *= 0x10;  
           $code += $self->{next_char} - 0x0060 + 9;  
           redo X;  
         } elsif (0x0041 <= $self->{next_char} and  
                  $self->{next_char} <= 0x0046) { # A..F  
           !!!cp (1004);  
           $code ||= 0;  
           $code *= 0x10;  
           $code += $self->{next_char} - 0x0040 + 9;  
           redo X;  
         } elsif (not defined $code) { # no hexadecimal digit  
           !!!cp (1005);  
           !!!parse-error (type => 'bare hcro', line => $l, column => $c);  
           !!!back-next-input-character ($x_char, $self->{next_char});  
           $self->{next_char} = 0x0023; # #  
           return undef;  
         } elsif ($self->{next_char} == 0x003B) { # ;  
           !!!cp (1006);  
           !!!next-input-character;  
3135          } else {          } else {
3136            !!!cp (1007);            !!!cp (993);
3137            !!!parse-error (type => 'no refc', line => $l, column => $c);            $self->{current_attribute}->{value} .= '&#';
3138              $self->{state} = $self->{prev_state};
3139              ## Reconsume.
3140              redo A;
3141          }          }
3142          }
3143          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {      } elsif ($self->{state} == NCR_NUM_STATE) {
3144            !!!cp (1008);        if (0x0030 <= $self->{next_char} and
3145            !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);            $self->{next_char} <= 0x0039) { # 0..9
           $code = 0xFFFD;  
         } elsif ($code > 0x10FFFF) {  
           !!!cp (1009);  
           !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);  
           $code = 0xFFFD;  
         } elsif ($code == 0x000D) {  
           !!!cp (1010);  
           !!!parse-error (type => 'CR character reference', line => $l, column => $c);  
           $code = 0x000A;  
         } elsif (0x80 <= $code and $code <= 0x9F) {  
           !!!cp (1011);  
           !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);  
           $code = $c1_entity_char->{$code};  
         }  
   
         return {type => CHARACTER_TOKEN, data => chr $code,  
                 has_reference => 1,  
                 line => $l, column => $c,  
                };  
       } # X  
     } elsif (0x0030 <= $self->{next_char} and  
              $self->{next_char} <= 0x0039) { # 0..9  
       my $code = $self->{next_char} - 0x0030;  
       !!!next-input-character;  
         
       while (0x0030 <= $self->{next_char} and  
                 $self->{next_char} <= 0x0039) { # 0..9  
3146          !!!cp (1012);          !!!cp (1012);
3147          $code *= 10;          $self->{state_keyword} *= 10;
3148          $code += $self->{next_char} - 0x0030;          $self->{state_keyword} += $self->{next_char} - 0x0030;
3149                    
3150            ## Stay in the state.
3151          !!!next-input-character;          !!!next-input-character;
3152        }          redo A;
3153          } elsif ($self->{next_char} == 0x003B) { # ;
       if ($self->{next_char} == 0x003B) { # ;  
3154          !!!cp (1013);          !!!cp (1013);
3155          !!!next-input-character;          !!!next-input-character;
3156            #
3157        } else {        } else {
3158          !!!cp (1014);          !!!cp (1014);
3159          !!!parse-error (type => 'no refc', line => $l, column => $c);          !!!parse-error (type => 'no refc');
3160            ## Reconsume.
3161            #
3162        }        }
3163    
3164          my $code = $self->{state_keyword};
3165          my $l = $self->{line_prev};
3166          my $c = $self->{column_prev};
3167        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
3168          !!!cp (1015);          !!!cp (1015);
3169          !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);          !!!parse-error (type => 'invalid character reference',
3170                            text => (sprintf 'U+%04X', $code),
3171                            line => $l, column => $c);
3172          $code = 0xFFFD;          $code = 0xFFFD;
3173        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
3174          !!!cp (1016);          !!!cp (1016);
3175          !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);          !!!parse-error (type => 'invalid character reference',
3176                            text => (sprintf 'U-%08X', $code),
3177                            line => $l, column => $c);
3178          $code = 0xFFFD;          $code = 0xFFFD;
3179        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
3180          !!!cp (1017);          !!!cp (1017);
3181          !!!parse-error (type => 'CR character reference', line => $l, column => $c);          !!!parse-error (type => 'CR character reference',
3182                            line => $l, column => $c);
3183          $code = 0x000A;          $code = 0x000A;
3184        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
3185          !!!cp (1018);          !!!cp (1018);
3186          !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);          !!!parse-error (type => 'C1 character reference',
3187                            text => (sprintf 'U+%04X', $code),
3188                            line => $l, column => $c);
3189          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
3190        }        }
3191          
3192        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1,        if ($self->{prev_state} == DATA_STATE) {
3193                line => $l, column => $c,          !!!cp (992);
3194               };          $self->{state} = $self->{prev_state};
3195      } else {          ## Reconsume.
3196        !!!cp (1019);          !!!emit ({type => CHARACTER_TOKEN, data => chr $code,
3197        !!!parse-error (type => 'bare nero', line => $l, column => $c);                    line => $l, column => $c,
3198        !!!back-next-input-character ($self->{next_char});                   });
3199        $self->{next_char} = 0x0023; # #          redo A;
3200        return undef;        } else {
3201      }          !!!cp (991);
3202    } elsif ((0x0041 <= $self->{next_char} and          $self->{current_attribute}->{value} .= chr $code;
3203              $self->{next_char} <= 0x005A) or          $self->{current_attribute}->{has_reference} = 1;
3204             (0x0061 <= $self->{next_char} and          $self->{state} = $self->{prev_state};
3205              $self->{next_char} <= 0x007A)) {          ## Reconsume.
3206      my $entity_name = chr $self->{next_char};          redo A;
3207      !!!next-input-character;        }
3208        } elsif ($self->{state} == HEXREF_X_STATE) {
3209      my $value = $entity_name;        if ((0x0030 <= $self->{next_char} and $self->{next_char} <= 0x0039) or
3210      my $match = 0;            (0x0041 <= $self->{next_char} and $self->{next_char} <= 0x0046) or
3211      require Whatpm::_NamedEntityList;            (0x0061 <= $self->{next_char} and $self->{next_char} <= 0x0066)) {
3212      our $EntityChar;          # 0..9, A..F, a..f
3213            !!!cp (990);
3214      while (length $entity_name < 10 and          $self->{state} = HEXREF_HEX_STATE;
3215             ## NOTE: Some number greater than the maximum length of entity name          $self->{state_keyword} = 0;
3216             ((0x0041 <= $self->{next_char} and # a          ## Reconsume.
3217               $self->{next_char} <= 0x005A) or # x          redo A;
3218              (0x0061 <= $self->{next_char} and # a        } else {
3219               $self->{next_char} <= 0x007A) or # z          !!!parse-error (type => 'bare hcro',
3220              (0x0030 <= $self->{next_char} and # 0                          line => $self->{line_prev},
3221               $self->{next_char} <= 0x0039) or # 9                          column => $self->{column_prev} - 2);
3222              $self->{next_char} == 0x003B)) { # ;  
3223        $entity_name .= chr $self->{next_char};          ## NOTE: According to the spec algorithm, nothing is returned,
3224        if (defined $EntityChar->{$entity_name}) {          ## and then "&#" followed by "X" or "x" is appended to the parent
3225          if ($self->{next_char} == 0x003B) { # ;          ## element or the attribute value in the later processing.
3226            !!!cp (1020);  
3227            $value = $EntityChar->{$entity_name};          if ($self->{prev_state} == DATA_STATE) {
3228            $match = 1;            !!!cp (1005);
3229            !!!next-input-character;            $self->{state} = $self->{prev_state};
3230            last;            ## Reconsume.
3231              !!!emit ({type => CHARACTER_TOKEN,
3232                        data => '&' . $self->{state_keyword},
3233                        line => $self->{line_prev},
3234                        column => $self->{column_prev} - length $self->{state_keyword},
3235                       });
3236              redo A;
3237          } else {          } else {
3238            !!!cp (1021);            !!!cp (989);
3239            $value = $EntityChar->{$entity_name};            $self->{current_attribute}->{value} .= '&' . $self->{state_keyword};
3240            $match = -1;            $self->{state} = $self->{prev_state};
3241              ## Reconsume.
3242              redo A;
3243            }
3244          }
3245        } elsif ($self->{state} == HEXREF_HEX_STATE) {
3246          if (0x0030 <= $self->{next_char} and $self->{next_char} <= 0x0039) {
3247            # 0..9
3248            !!!cp (1002);
3249            $self->{state_keyword} *= 0x10;
3250            $self->{state_keyword} += $self->{next_char} - 0x0030;
3251            ## Stay in the state.
3252            !!!next-input-character;
3253            redo A;
3254          } elsif (0x0061 <= $self->{next_char} and
3255                   $self->{next_char} <= 0x0066) { # a..f
3256            !!!cp (1003);
3257            $self->{state_keyword} *= 0x10;
3258            $self->{state_keyword} += $self->{next_char} - 0x0060 + 9;
3259            ## Stay in the state.
3260            !!!next-input-character;
3261            redo A;
3262          } elsif (0x0041 <= $self->{next_char} and
3263                   $self->{next_char} <= 0x0046) { # A..F
3264            !!!cp (1004);
3265            $self->{state_keyword} *= 0x10;
3266            $self->{state_keyword} += $self->{next_char} - 0x0040 + 9;
3267            ## Stay in the state.
3268            !!!next-input-character;
3269            redo A;
3270          } elsif ($self->{next_char} == 0x003B) { # ;
3271            !!!cp (1006);
3272            !!!next-input-character;
3273            #
3274          } else {
3275            !!!cp (1007);
3276            !!!parse-error (type => 'no refc',
3277                            line => $self->{line},
3278                            column => $self->{column});
3279            ## Reconsume.
3280            #
3281          }
3282    
3283          my $code = $self->{state_keyword};
3284          my $l = $self->{line_prev};
3285          my $c = $self->{column_prev};
3286          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
3287            !!!cp (1008);
3288            !!!parse-error (type => 'invalid character reference',
3289                            text => (sprintf 'U+%04X', $code),
3290                            line => $l, column => $c);
3291            $code = 0xFFFD;
3292          } elsif ($code > 0x10FFFF) {
3293            !!!cp (1009);
3294            !!!parse-error (type => 'invalid character reference',
3295                            text => (sprintf 'U-%08X', $code),
3296                            line => $l, column => $c);
3297            $code = 0xFFFD;
3298          } elsif ($code == 0x000D) {
3299            !!!cp (1010);
3300            !!!parse-error (type => 'CR character reference', line => $l, column => $c);
3301            $code = 0x000A;
3302          } elsif (0x80 <= $code and $code <= 0x9F) {
3303            !!!cp (1011);
3304            !!!parse-error (type => 'C1 character reference', text => (sprintf 'U+%04X', $code), line => $l, column => $c);
3305            $code = $c1_entity_char->{$code};
3306          }
3307    
3308          if ($self->{prev_state} == DATA_STATE) {
3309            !!!cp (988);
3310            $self->{state} = $self->{prev_state};
3311            ## Reconsume.
3312            !!!emit ({type => CHARACTER_TOKEN, data => chr $code,
3313                      line => $l, column => $c,
3314                     });
3315            redo A;
3316          } else {
3317            !!!cp (987);
3318            $self->{current_attribute}->{value} .= chr $code;
3319            $self->{current_attribute}->{has_reference} = 1;
3320            $self->{state} = $self->{prev_state};
3321            ## Reconsume.
3322            redo A;
3323          }
3324        } elsif ($self->{state} == ENTITY_NAME_STATE) {
3325          if (length $self->{state_keyword} < 30 and
3326              ## NOTE: Some number greater than the maximum length of entity name
3327              ((0x0041 <= $self->{next_char} and # a
3328                $self->{next_char} <= 0x005A) or # x
3329               (0x0061 <= $self->{next_char} and # a
3330                $self->{next_char} <= 0x007A) or # z
3331               (0x0030 <= $self->{next_char} and # 0
3332                $self->{next_char} <= 0x0039) or # 9
3333               $self->{next_char} == 0x003B)) { # ;
3334            our $EntityChar;
3335            $self->{state_keyword} .= chr $self->{next_char};
3336            if (defined $EntityChar->{$self->{state_keyword}}) {
3337              if ($self->{next_char} == 0x003B) { # ;
3338                !!!cp (1020);
3339                $self->{entity__value} = $EntityChar->{$self->{state_keyword}};
3340                $self->{entity__match} = 1;
3341                !!!next-input-character;
3342                #
3343              } else {
3344                !!!cp (1021);
3345                $self->{entity__value} = $EntityChar->{$self->{state_keyword}};
3346                $self->{entity__match} = -1;
3347                ## Stay in the state.
3348                !!!next-input-character;
3349                redo A;
3350              }
3351            } else {
3352              !!!cp (1022);
3353              $self->{entity__value} .= chr $self->{next_char};
3354              $self->{entity__match} *= 2;
3355              ## Stay in the state.
3356            !!!next-input-character;            !!!next-input-character;
3357              redo A;
3358            }
3359          }
3360    
3361          my $data;
3362          my $has_ref;
3363          if ($self->{entity__match} > 0) {
3364            !!!cp (1023);
3365            $data = $self->{entity__value};
3366            $has_ref = 1;
3367            #
3368          } elsif ($self->{entity__match} < 0) {
3369            !!!parse-error (type => 'no refc');
3370            if ($self->{prev_state} != DATA_STATE and # in attribute
3371                $self->{entity__match} < -1) {
3372              !!!cp (1024);
3373              $data = '&' . $self->{state_keyword};
3374              #
3375            } else {
3376              !!!cp (1025);
3377              $data = $self->{entity__value};
3378              $has_ref = 1;
3379              #
3380          }          }
3381        } else {        } else {
3382          !!!cp (1022);          !!!cp (1026);
3383          $value .= chr $self->{next_char};          !!!parse-error (type => 'bare ero',
3384          $match *= 2;                          line => $self->{line_prev},
3385          !!!next-input-character;                          column => $self->{column_prev} - length $self->{state_keyword});
3386            $data = '&' . $self->{state_keyword};
3387            #
3388        }        }
3389      }    
3390              ## NOTE: In these cases, when a character reference is found,
3391      if ($match > 0) {        ## it is consumed and a character token is returned, or, otherwise,
3392        !!!cp (1023);        ## nothing is consumed and returned, according to the spec algorithm.
3393        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,        ## In this implementation, anything that has been examined by the
3394                line => $l, column => $c,        ## tokenizer is appended to the parent element or the attribute value
3395               };        ## as string, either literal string when no character reference or
3396      } elsif ($match < 0) {        ## entity-replaced string otherwise, in this stage, since any characters
3397        !!!parse-error (type => 'no refc', line => $l, column => $c);        ## that would not be consumed are appended in the data state or in an
3398        if ($in_attr and $match < -1) {        ## appropriate attribute value state anyway.
3399          !!!cp (1024);  
3400          return {type => CHARACTER_TOKEN, data => '&'.$entity_name,        if ($self->{prev_state} == DATA_STATE) {
3401                  line => $l, column => $c,          !!!cp (986);
3402                 };          $self->{state} = $self->{prev_state};
3403        } else {          ## Reconsume.
3404          !!!cp (1025);          !!!emit ({type => CHARACTER_TOKEN,
3405          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,                    data => $data,
3406                  line => $l, column => $c,                    line => $self->{line_prev},
3407                 };                    column => $self->{column_prev} + 1 - length $self->{state_keyword},
3408                     });
3409            redo A;
3410          } else {
3411            !!!cp (985);
3412            $self->{current_attribute}->{value} .= $data;
3413            $self->{current_attribute}->{has_reference} = 1 if $has_ref;
3414            $self->{state} = $self->{prev_state};
3415            ## Reconsume.
3416            redo A;
3417        }        }
3418      } else {      } else {
3419        !!!cp (1026);        die "$0: $self->{state}: Unknown state";
       !!!parse-error (type => 'bare ero', line => $l, column => $c);  
       ## NOTE: "No characters are consumed" in the spec.  
       return {type => CHARACTER_TOKEN, data => '&'.$value,  
               line => $l, column => $c,  
              };  
3420      }      }
3421    } else {    } # A  
3422      !!!cp (1027);  
3423      ## no characters are consumed    die "$0: _get_next_token: unexpected case";
3424      !!!parse-error (type => 'bare ero', line => $l, column => $c);  } # _get_next_token
     return undef;  
   }  
 } # _tokenize_attempt_to_consume_an_entity  
3425    
3426  sub _initialize_tree_constructor ($) {  sub _initialize_tree_constructor ($) {
3427    my $self = shift;    my $self = shift;
# Line 2462  sub _initialize_tree_constructor ($) { Line 3430  sub _initialize_tree_constructor ($) {
3430    ## TODO: Turn mutation events off # MUST    ## TODO: Turn mutation events off # MUST
3431    ## TODO: Turn loose Document option (manakai extension) on    ## TODO: Turn loose Document option (manakai extension) on
3432    $self->{document}->manakai_is_html (1); # MUST    $self->{document}->manakai_is_html (1); # MUST
3433      $self->{document}->set_user_data (manakai_source_line => 1);
3434      $self->{document}->set_user_data (manakai_source_column => 1);
3435  } # _initialize_tree_constructor  } # _initialize_tree_constructor
3436    
3437  sub _terminate_tree_constructor ($) {  sub _terminate_tree_constructor ($) {
# Line 2516  sub _tree_construction_initial ($) { Line 3486  sub _tree_construction_initial ($) {
3486        ## language.        ## language.
3487        my $doctype_name = $token->{name};        my $doctype_name = $token->{name};
3488        $doctype_name = '' unless defined $doctype_name;        $doctype_name = '' unless defined $doctype_name;
3489        $doctype_name =~ tr/a-z/A-Z/;        $doctype_name =~ tr/a-z/A-Z/; # ASCII case-insensitive
3490        if (not defined $token->{name} or # <!DOCTYPE>        if (not defined $token->{name} or # <!DOCTYPE>
           defined $token->{public_identifier} or  
3491            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
3492          !!!cp ('t1');          !!!cp ('t1');
3493          !!!parse-error (type => 'not HTML5', token => $token);          !!!parse-error (type => 'not HTML5', token => $token);
3494        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
3495          !!!cp ('t2');          !!!cp ('t2');
         ## ISSUE: ASCII case-insensitive? (in fact it does not matter)  
3496          !!!parse-error (type => 'not HTML5', token => $token);          !!!parse-error (type => 'not HTML5', token => $token);
3497          } elsif (defined $token->{public_identifier}) {
3498            if ($token->{public_identifier} eq 'XSLT-compat') {
3499              !!!cp ('t1.2');
3500              !!!parse-error (type => 'XSLT-compat', token => $token,
3501                              level => $self->{level}->{should});
3502            } else {
3503              !!!parse-error (type => 'not HTML5', token => $token);
3504            }
3505        } else {        } else {
3506          !!!cp ('t3');          !!!cp ('t3');
3507            #
3508        }        }
3509                
3510        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
3511          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
3512          ## NOTE: Default value for both |public_id| and |system_id| attributes
3513          ## are empty strings, so that we don't set any value in missing cases.
3514        $doctype->public_id ($token->{public_identifier})        $doctype->public_id ($token->{public_identifier})
3515            if defined $token->{public_identifier};            if defined $token->{public_identifier};
3516        $doctype->system_id ($token->{system_identifier})        $doctype->system_id ($token->{system_identifier})
# Line 2546  sub _tree_construction_initial ($) { Line 3525  sub _tree_construction_initial ($) {
3525        } elsif (defined $token->{public_identifier}) {        } elsif (defined $token->{public_identifier}) {
3526          my $pubid = $token->{public_identifier};          my $pubid = $token->{public_identifier};
3527          $pubid =~ tr/a-z/A-z/;          $pubid =~ tr/a-z/A-z/;
3528          if ({          my $prefix = [
3529            "+//SILMARIL//DTD HTML PRO V0R11 19970101//EN" => 1,            "+//SILMARIL//DTD HTML PRO V0R11 19970101//",
3530            "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,            "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
3531            "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,            "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
3532            "-//IETF//DTD HTML 2.0 LEVEL 1//EN" => 1,            "-//IETF//DTD HTML 2.0 LEVEL 1//",
3533            "-//IETF//DTD HTML 2.0 LEVEL 2//EN" => 1,            "-//IETF//DTD HTML 2.0 LEVEL 2//",
3534            "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//",
3535            "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//",
3536            "-//IETF//DTD HTML 2.0 STRICT//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT//",
3537            "-//IETF//DTD HTML 2.0//EN" => 1,            "-//IETF//DTD HTML 2.0//",
3538            "-//IETF//DTD HTML 2.1E//EN" => 1,            "-//IETF//DTD HTML 2.1E//",
3539            "-//IETF//DTD HTML 3.0//EN" => 1,            "-//IETF//DTD HTML 3.0//",
3540            "-//IETF//DTD HTML 3.0//EN//" => 1,            "-//IETF//DTD HTML 3.2 FINAL//",
3541            "-//IETF//DTD HTML 3.2 FINAL//EN" => 1,            "-//IETF//DTD HTML 3.2//",
3542            "-//IETF//DTD HTML 3.2//EN" => 1,            "-//IETF//DTD HTML 3//",
3543            "-//IETF//DTD HTML 3//EN" => 1,            "-//IETF//DTD HTML LEVEL 0//",
3544            "-//IETF//DTD HTML LEVEL 0//EN" => 1,            "-//IETF//DTD HTML LEVEL 1//",
3545            "-//IETF//DTD HTML LEVEL 0//EN//2.0" => 1,            "-//IETF//DTD HTML LEVEL 2//",
3546            "-//IETF//DTD HTML LEVEL 1//EN" => 1,            "-//IETF//DTD HTML LEVEL 3//",
3547            "-//IETF//DTD HTML LEVEL 1//EN//2.0" => 1,            "-//IETF//DTD HTML STRICT LEVEL 0//",
3548            "-//IETF//DTD HTML LEVEL 2//EN" => 1,            "-//IETF//DTD HTML STRICT LEVEL 1//",
3549            "-//IETF//DTD HTML LEVEL 2//EN//2.0" => 1,            "-//IETF//DTD HTML STRICT LEVEL 2//",
3550            "-//IETF//DTD HTML LEVEL 3//EN" => 1,            "-//IETF//DTD HTML STRICT LEVEL 3//",
3551            "-//IETF//DTD HTML LEVEL 3//EN//3.0" => 1,            "-//IETF//DTD HTML STRICT//",
3552            "-//IETF//DTD HTML STRICT LEVEL 0//EN" => 1,            "-//IETF//DTD HTML//",
3553            "-//IETF//DTD HTML STRICT LEVEL 0//EN//2.0" => 1,            "-//METRIUS//DTD METRIUS PRESENTATIONAL//",
3554            "-//IETF//DTD HTML STRICT LEVEL 1//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//",
3555            "-//IETF//DTD HTML STRICT LEVEL 1//EN//2.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//",
3556            "-//IETF//DTD HTML STRICT LEVEL 2//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//",
3557            "-//IETF//DTD HTML STRICT LEVEL 2//EN//2.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//",
3558            "-//IETF//DTD HTML STRICT LEVEL 3//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//",
3559            "-//IETF//DTD HTML STRICT LEVEL 3//EN//3.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//",
3560            "-//IETF//DTD HTML STRICT//EN" => 1,            "-//NETSCAPE COMM. CORP.//DTD HTML//",
3561            "-//IETF//DTD HTML STRICT//EN//2.0" => 1,            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//",
3562            "-//IETF//DTD HTML STRICT//EN//3.0" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//",
3563            "-//IETF//DTD HTML//EN" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//",
3564            "-//IETF//DTD HTML//EN//2.0" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//",
3565            "-//IETF//DTD HTML//EN//3.0" => 1,            "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//",
3566            "-//METRIUS//DTD METRIUS PRESENTATIONAL//EN" => 1,            "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//",
3567            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//EN" => 1,            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//",
3568            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//EN" => 1,            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//",
3569            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//",
3570            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//",
3571            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//EN" => 1,            "-//W3C//DTD HTML 3 1995-03-24//",
3572            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//EN" => 1,            "-//W3C//DTD HTML 3.2 DRAFT//",
3573            "-//NETSCAPE COMM. CORP.//DTD HTML//EN" => 1,            "-//W3C//DTD HTML 3.2 FINAL//",
3574            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,            "-//W3C//DTD HTML 3.2//",
3575            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,            "-//W3C//DTD HTML 3.2S DRAFT//",
3576            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,            "-//W3C//DTD HTML 4.0 FRAMESET//",
3577            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//EN" => 1,            "-//W3C//DTD HTML 4.0 TRANSITIONAL//",
3578            "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//EN" => 1,            "-//W3C//DTD HTML EXPERIMETNAL 19960712//",
3579            "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//EN" => 1,            "-//W3C//DTD HTML EXPERIMENTAL 970421//",
3580            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,            "-//W3C//DTD W3 HTML//",
3581            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,            "-//W3O//DTD W3 HTML 3.0//",
3582            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,            "-//WEBTECHS//DTD MOZILLA HTML 2.0//",
3583            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//EN" => 1,            "-//WEBTECHS//DTD MOZILLA HTML//",
3584            "-//W3C//DTD HTML 3 1995-03-24//EN" => 1,          ]; # $prefix
3585            "-//W3C//DTD HTML 3.2 DRAFT//EN" => 1,          my $match;
3586            "-//W3C//DTD HTML 3.2 FINAL//EN" => 1,          for (@$prefix) {
3587            "-//W3C//DTD HTML 3.2//EN" => 1,            if (substr ($prefix, 0, length $_) eq $_) {
3588            "-//W3C//DTD HTML 3.2S DRAFT//EN" => 1,              $match = 1;
3589            "-//W3C//DTD HTML 4.0 FRAMESET//EN" => 1,              last;
3590            "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN" => 1,            }
3591            "-//W3C//DTD HTML EXPERIMETNAL 19960712//EN" => 1,          }
3592            "-//W3C//DTD HTML EXPERIMENTAL 970421//EN" => 1,          if ($match or
3593            "-//W3C//DTD W3 HTML//EN" => 1,              $pubid eq "-//W3O//DTD W3 HTML STRICT 3.0//EN//" or
3594            "-//W3O//DTD W3 HTML 3.0//EN" => 1,              $pubid eq "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" or
3595            "-//W3O//DTD W3 HTML 3.0//EN//" => 1,              $pubid eq "HTML") {
           "-//W3O//DTD W3 HTML STRICT 3.0//EN//" => 1,  
           "-//WEBTECHS//DTD MOZILLA HTML 2.0//EN" => 1,  
           "-//WEBTECHS//DTD MOZILLA HTML//EN" => 1,  
           "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,  
           "HTML" => 1,  
         }->{$pubid}) {  
3596            !!!cp ('t5');            !!!cp ('t5');
3597            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
3598          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or          } elsif ($pubid =~ m[^-//W3C//DTD HTML 4.01 FRAMESET//] or
3599                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {                   $pubid =~ m[^-//W3C//DTD HTML 4.01 TRANSITIONAL//]) {
3600            if (defined $token->{system_identifier}) {            if (defined $token->{system_identifier}) {
3601              !!!cp ('t6');              !!!cp ('t6');
3602              $self->{document}->manakai_compat_mode ('quirks');              $self->{document}->manakai_compat_mode ('quirks');
# Line 2631  sub _tree_construction_initial ($) { Line 3604  sub _tree_construction_initial ($) {
3604              !!!cp ('t7');              !!!cp ('t7');
3605              $self->{document}->manakai_compat_mode ('limited quirks');              $self->{document}->manakai_compat_mode ('limited quirks');
3606            }            }
3607          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 FRAMESET//EN" or          } elsif ($pubid =~ m[^-//W3C//DTD XHTML 1.0 FRAMESET//] or
3608                   $pubid eq "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN") {                   $pubid =~ m[^-//W3C//DTD XHTML 1.0 TRANSITIONAL//]) {
3609            !!!cp ('t8');            !!!cp ('t8');
3610            $self->{document}->manakai_compat_mode ('limited quirks');            $self->{document}->manakai_compat_mode ('limited quirks');
3611          } else {          } else {
# Line 2645  sub _tree_construction_initial ($) { Line 3618  sub _tree_construction_initial ($) {
3618          my $sysid = $token->{system_identifier};          my $sysid = $token->{system_identifier};
3619          $sysid =~ tr/A-Z/a-z/;          $sysid =~ tr/A-Z/a-z/;
3620          if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {          if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
3621            ## TODO: Check the spec: PUBLIC "(limited quirks)" "(quirks)"            ## NOTE: Ensure that |PUBLIC "(limited quirks)" "(quirks)"| is
3622              ## marked as quirks.
3623            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
3624            !!!cp ('t11');            !!!cp ('t11');
3625          } else {          } else {
# Line 2668  sub _tree_construction_initial ($) { Line 3642  sub _tree_construction_initial ($) {
3642        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3643        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
3644        ## reprocess        ## reprocess
3645          !!!ack-later;
3646        return;        return;
3647      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
3648        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
# Line 2748  sub _tree_construction_root_element ($) Line 3723  sub _tree_construction_root_element ($)
3723        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
3724          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
3725            my $root_element;            my $root_element;
3726            !!!create-element ($root_element, $token->{tag_name}, $token->{attributes}, $token);            !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
3727            $self->{document}->append_child ($root_element);            $self->{document}->append_child ($root_element);
3728            push @{$self->{open_elements}}, [$root_element, 'html'];            push @{$self->{open_elements}},
3729                  [$root_element, $el_category->{html}];
3730    
3731            if ($token->{attributes}->{manifest}) {            if ($token->{attributes}->{manifest}) {
3732              !!!cp ('t24');              !!!cp ('t24');
# Line 2765  sub _tree_construction_root_element ($) Line 3741  sub _tree_construction_root_element ($)
3741              $self->{application_cache_selection}->(undef);              $self->{application_cache_selection}->(undef);
3742            }            }
3743    
3744              !!!nack ('t25c');
3745    
3746            !!!next-token;            !!!next-token;
3747            return; ## Go to the "before head" insertion mode.            return; ## Go to the "before head" insertion mode.
3748          } else {          } else {
# Line 2781  sub _tree_construction_root_element ($) Line 3759  sub _tree_construction_root_element ($)
3759          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
3760        }        }
3761    
3762      my $root_element; !!!create-element ($root_element, 'html',, $token);      my $root_element;
3763        !!!create-element ($root_element, $HTML_NS, 'html',, $token);
3764      $self->{document}->append_child ($root_element);      $self->{document}->append_child ($root_element);
3765      push @{$self->{open_elements}}, [$root_element, 'html'];      push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
3766    
3767      $self->{application_cache_selection}->(undef);      $self->{application_cache_selection}->(undef);
3768    
3769      ## NOTE: Reprocess the token.      ## NOTE: Reprocess the token.
3770        !!!ack-later;
3771      return; ## Go to the "before head" insertion mode.      return; ## Go to the "before head" insertion mode.
3772    
3773      ## ISSUE: There is an issue in the spec      ## ISSUE: There is an issue in the spec
# Line 2811  sub _reset_insertion_mode ($) { Line 3791  sub _reset_insertion_mode ($) {
3791        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
3792          $last = 1;          $last = 1;
3793          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
3794            if ($self->{inner_html_node}->[1] eq 'td' or            !!!cp ('t28');
3795                $self->{inner_html_node}->[1] eq 'th') {            $node = $self->{inner_html_node};
3796              !!!cp ('t27');          } else {
3797              #            die "_reset_insertion_mode: t27";
           } else {  
             !!!cp ('t28');  
             $node = $self->{inner_html_node};  
           }  
3798          }          }
3799        }        }
3800              
3801        ## Step 4..13        ## Step 4..14
3802        my $new_mode = {        my $new_mode;
3803          if ($node->[1] & FOREIGN_EL) {
3804            !!!cp ('t28.1');
3805            ## NOTE: Strictly spaking, the line below only applies to MathML and
3806            ## SVG elements.  Currently the HTML syntax supports only MathML and
3807            ## SVG elements as foreigners.
3808            $new_mode = IN_BODY_IM | IN_FOREIGN_CONTENT_IM;
3809          } elsif ($node->[1] & TABLE_CELL_EL) {
3810            if ($last) {
3811              !!!cp ('t28.2');
3812              #
3813            } else {
3814              !!!cp ('t28.3');
3815              $new_mode = IN_CELL_IM;
3816            }
3817          } else {
3818            !!!cp ('t28.4');
3819            $new_mode = {
3820                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
3821                        ## NOTE: |option| and |optgroup| do not set                        ## NOTE: |option| and |optgroup| do not set
3822                        ## insertion mode to "in select" by themselves.                        ## insertion mode to "in select" by themselves.
                       td => IN_CELL_IM,  
                       th => IN_CELL_IM,  
3823                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
3824                        tbody => IN_TABLE_BODY_IM,                        tbody => IN_TABLE_BODY_IM,
3825                        thead => IN_TABLE_BODY_IM,                        thead => IN_TABLE_BODY_IM,
# Line 2839  sub _reset_insertion_mode ($) { Line 3830  sub _reset_insertion_mode ($) {
3830                        head => IN_BODY_IM, # not in head!                        head => IN_BODY_IM, # not in head!
3831                        body => IN_BODY_IM,                        body => IN_BODY_IM,
3832                        frameset => IN_FRAMESET_IM,                        frameset => IN_FRAMESET_IM,
3833                       }->{$node->[1]};                       }->{$node->[0]->manakai_local_name};
3834          }
3835        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
3836                
3837        ## Step 14        ## Step 15
3838        if ($node->[1] eq 'html') {        if ($node->[1] & HTML_EL) {
3839          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
3840            !!!cp ('t29');            !!!cp ('t29');
3841            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
# Line 2857  sub _reset_insertion_mode ($) { Line 3849  sub _reset_insertion_mode ($) {
3849          !!!cp ('t31');          !!!cp ('t31');
3850        }        }
3851                
3852        ## Step 15        ## Step 16
3853        $self->{insertion_mode} = IN_BODY_IM and return if $last;        $self->{insertion_mode} = IN_BODY_IM and return if $last;
3854                
3855        ## Step 16        ## Step 17
3856        $i--;        $i--;
3857        $node = $self->{open_elements}->[$i];        $node = $self->{open_elements}->[$i];
3858                
3859        ## Step 17        ## Step 18
3860        redo S3;        redo S3;
3861      } # S3      } # S3
3862    
# Line 2976  sub _tree_construction_main ($) { Line 3968  sub _tree_construction_main ($) {
3968      ## Step 1      ## Step 1
3969      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
3970      my $el;      my $el;
3971      !!!create-element ($el, $start_tag_name, $token->{attributes}, $token);      !!!create-element ($el, $HTML_NS, $start_tag_name, $token->{attributes}, $token);
3972    
3973      ## Step 2      ## Step 2
3974      $insert->($el);      $insert->($el);
# Line 2987  sub _tree_construction_main ($) { Line 3979  sub _tree_construction_main ($) {
3979    
3980      ## Step 4      ## Step 4
3981      my $text = '';      my $text = '';
3982        !!!nack ('t40.1');
3983      !!!next-token;      !!!next-token;
3984      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
3985        !!!cp ('t40');        !!!cp ('t40');
# Line 3013  sub _tree_construction_main ($) { Line 4006  sub _tree_construction_main ($) {
4006        ## NOTE: An end-of-file token.        ## NOTE: An end-of-file token.
4007        if ($content_model_flag == CDATA_CONTENT_MODEL) {        if ($content_model_flag == CDATA_CONTENT_MODEL) {
4008          !!!cp ('t43');          !!!cp ('t43');
4009          !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);          !!!parse-error (type => 'in CDATA:#eof', token => $token);
4010        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
4011          !!!cp ('t44');          !!!cp ('t44');
4012          !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);          !!!parse-error (type => 'in RCDATA:#eof', token => $token);
4013        } else {        } else {
4014          die "$0: $content_model_flag in parse_rcdata";          die "$0: $content_model_flag in parse_rcdata";
4015        }        }
# Line 3026  sub _tree_construction_main ($) { Line 4019  sub _tree_construction_main ($) {
4019    
4020    my $script_start_tag = sub () {    my $script_start_tag = sub () {
4021      my $script_el;      my $script_el;
4022      !!!create-element ($script_el, 'script', $token->{attributes}, $token);      !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
4023      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
4024    
4025      $self->{content_model} = CDATA_CONTENT_MODEL;      $self->{content_model} = CDATA_CONTENT_MODEL;
4026      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
4027            
4028      my $text = '';      my $text = '';
4029        !!!nack ('t45.1');
4030      !!!next-token;      !!!next-token;
4031      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
4032        !!!cp ('t45');        !!!cp ('t45');
# Line 3052  sub _tree_construction_main ($) { Line 4046  sub _tree_construction_main ($) {
4046        ## Ignore the token        ## Ignore the token
4047      } else {      } else {
4048        !!!cp ('t48');        !!!cp ('t48');
4049        !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);        !!!parse-error (type => 'in CDATA:#eof', token => $token);
4050        ## ISSUE: And ignore?        ## ISSUE: And ignore?
4051        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
4052      }      }
# Line 3090  sub _tree_construction_main ($) { Line 4084  sub _tree_construction_main ($) {
4084        my $formatting_element;        my $formatting_element;
4085        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
4086        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
4087          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[0] eq '#marker') {
4088              !!!cp ('t52');
4089              last AFE;
4090            } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
4091                         eq $tag_name) {
4092            !!!cp ('t51');            !!!cp ('t51');
4093            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
4094            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
4095            last AFE;            last AFE;
         } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {  
           !!!cp ('t52');  
           last AFE;  
4096          }          }
4097        } # AFE        } # AFE
4098        unless (defined $formatting_element) {        unless (defined $formatting_element) {
4099          !!!cp ('t53');          !!!cp ('t53');
4100          !!!parse-error (type => 'unmatched end tag:'.$tag_name, token => $end_tag_token);          !!!parse-error (type => 'unmatched end tag', text => $tag_name, token => $end_tag_token);
4101          ## Ignore the token          ## Ignore the token
4102          !!!next-token;          !!!next-token;
4103          return;          return;
# Line 3119  sub _tree_construction_main ($) { Line 4114  sub _tree_construction_main ($) {
4114              last INSCOPE;              last INSCOPE;
4115            } else { # in open elements but not in scope            } else { # in open elements but not in scope
4116              !!!cp ('t55');              !!!cp ('t55');
4117              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},              !!!parse-error (type => 'unmatched end tag',
4118                                text => $token->{tag_name},
4119                              token => $end_tag_token);                              token => $end_tag_token);
4120              ## Ignore the token              ## Ignore the token
4121              !!!next-token;              !!!next-token;
4122              return;              return;
4123            }            }
4124          } elsif ({          } elsif ($node->[1] & SCOPING_EL) {
                   applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                   button => 1, marquee => 1, object => 1, html => 1,  
                  }->{$node->[1]}) {  
4125            !!!cp ('t56');            !!!cp ('t56');
4126            $in_scope = 0;            $in_scope = 0;
4127          }          }
4128        } # INSCOPE        } # INSCOPE
4129        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
4130          !!!cp ('t57');          !!!cp ('t57');
4131          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},          !!!parse-error (type => 'unmatched end tag',
4132                            text => $token->{tag_name},
4133                          token => $end_tag_token);                          token => $end_tag_token);
4134          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
4135          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
# Line 3143  sub _tree_construction_main ($) { Line 4137  sub _tree_construction_main ($) {
4137        }        }
4138        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
4139          !!!cp ('t58');          !!!cp ('t58');
4140          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1],          !!!parse-error (type => 'not closed',
4141                            text => $self->{open_elements}->[-1]->[0]
4142                                ->manakai_local_name,
4143                          token => $end_tag_token);                          token => $end_tag_token);
4144        }        }
4145                
# Line 3152  sub _tree_construction_main ($) { Line 4148  sub _tree_construction_main ($) {
4148        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
4149        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
4150          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
4151          if (not $formatting_category->{$node->[1]} and          if (not ($node->[1] & FORMATTING_EL) and
4152              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
4153              ($special_category->{$node->[1]} or              ($node->[1] & SPECIAL_EL or
4154               $scoping_category->{$node->[1]})) { ## Scoping is redundant, maybe               $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
4155            !!!cp ('t59');            !!!cp ('t59');
4156            $furthest_block = $node;            $furthest_block = $node;
4157            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
# Line 3241  sub _tree_construction_main ($) { Line 4237  sub _tree_construction_main ($) {
4237        } # S7          } # S7  
4238                
4239        ## Step 8        ## Step 8
4240        if ({        if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
            table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,  
           }->{$common_ancestor_node->[1]}) {  
4241          my $foster_parent_element;          my $foster_parent_element;
4242          my $next_sibling;          my $next_sibling;
4243                           OE: for (reverse 0..$#{$self->{open_elements}}) {          OE: for (reverse 0..$#{$self->{open_elements}}) {
4244                             if ($self->{open_elements}->[$_]->[1] eq 'table') {            if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
4245                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4246                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
4247                                 !!!cp ('t65.1');                                 !!!cp ('t65.1');
# Line 3320  sub _tree_construction_main ($) { Line 4314  sub _tree_construction_main ($) {
4314    
4315    my $insert_to_foster = sub {    my $insert_to_foster = sub {
4316      my $child = shift;      my $child = shift;
4317      if ({      if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
          table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,  
         }->{$self->{open_elements}->[-1]->[1]}) {  
4318        # MUST        # MUST
4319        my $foster_parent_element;        my $foster_parent_element;
4320        my $next_sibling;        my $next_sibling;
4321                           OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
4322                             if ($self->{open_elements}->[$_]->[1] eq 'table') {          if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
4323                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4324                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
4325                                 !!!cp ('t70');                                 !!!cp ('t70');
# Line 3352  sub _tree_construction_main ($) { Line 4344  sub _tree_construction_main ($) {
4344      }      }
4345    }; # $insert_to_foster    }; # $insert_to_foster
4346    
4347    B: {    B: while (1) {
4348      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
4349        !!!cp ('t73');        !!!cp ('t73');
4350        !!!parse-error (type => 'DOCTYPE in the middle', token => $token);        !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
4351        ## Ignore the token        ## Ignore the token
4352        ## Stay in the phase        ## Stay in the phase
4353        !!!next-token;        !!!next-token;
4354        redo B;        next B;
4355      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
4356               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
4357        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4358          !!!cp ('t79');          !!!cp ('t79');
4359          !!!parse-error (type => 'after html:html', token => $token);          !!!parse-error (type => 'after html', text => 'html', token => $token);
4360          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
4361        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
4362          !!!cp ('t80');          !!!cp ('t80');
4363          !!!parse-error (type => 'after html:html', token => $token);          !!!parse-error (type => 'after html', text => 'html', token => $token);
4364          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
4365        } else {        } else {
4366          !!!cp ('t81');          !!!cp ('t81');
# Line 3385  sub _tree_construction_main ($) { Line 4377  sub _tree_construction_main ($) {
4377               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
4378          }          }
4379        }        }
4380          !!!nack ('t84.1');
4381        !!!next-token;        !!!next-token;
4382        redo B;        next B;
4383      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
4384        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
4385        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
# Line 3400  sub _tree_construction_main ($) { Line 4393  sub _tree_construction_main ($) {
4393          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
4394        }        }
4395        !!!next-token;        !!!next-token;
4396        redo B;        next B;
4397      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
4398          if ($token->{type} == CHARACTER_TOKEN) {
4399            !!!cp ('t87.1');
4400            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4401            !!!next-token;
4402            next B;
4403          } elsif ($token->{type} == START_TAG_TOKEN) {
4404            if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
4405                 $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
4406                not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
4407                ($token->{tag_name} eq 'svg' and
4408                 $self->{open_elements}->[-1]->[1] & MML_AXML_EL)) {
4409              ## NOTE: "using the rules for secondary insertion mode"then"continue"
4410              !!!cp ('t87.2');
4411              #
4412            } elsif ({
4413                      b => 1, big => 1, blockquote => 1, body => 1, br => 1,
4414                      center => 1, code => 1, dd => 1, div => 1, dl => 1, dt => 1,
4415                      em => 1, embed => 1, font => 1, h1 => 1, h2 => 1, h3 => 1,
4416                      h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, i => 1,
4417                      img => 1, li => 1, listing => 1, menu => 1, meta => 1,
4418                      nobr => 1, ol => 1, p => 1, pre => 1, ruby => 1, s => 1,
4419                      small => 1, span => 1, strong => 1, strike => 1, sub => 1,
4420                      sup => 1, table => 1, tt => 1, u => 1, ul => 1, var => 1,
4421                     }->{$token->{tag_name}}) {
4422              !!!cp ('t87.2');
4423              !!!parse-error (type => 'not closed',
4424                              text => $self->{open_elements}->[-1]->[0]
4425                                  ->manakai_local_name,
4426                              token => $token);
4427    
4428              pop @{$self->{open_elements}}
4429                  while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4430    
4431              $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4432              ## Reprocess.
4433              next B;
4434            } else {
4435              my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
4436              my $tag_name = $token->{tag_name};
4437              if ($nsuri eq $SVG_NS) {
4438                $tag_name = {
4439                   altglyph => 'altGlyph',
4440                   altglyphdef => 'altGlyphDef',
4441                   altglyphitem => 'altGlyphItem',
4442                   animatecolor => 'animateColor',
4443                   animatemotion => 'animateMotion',
4444                   animatetransform => 'animateTransform',
4445                   clippath => 'clipPath',
4446                   feblend => 'feBlend',
4447                   fecolormatrix => 'feColorMatrix',
4448                   fecomponenttransfer => 'feComponentTransfer',
4449                   fecomposite => 'feComposite',
4450                   feconvolvematrix => 'feConvolveMatrix',
4451                   fediffuselighting => 'feDiffuseLighting',
4452                   fedisplacementmap => 'feDisplacementMap',
4453                   fedistantlight => 'feDistantLight',
4454                   feflood => 'feFlood',
4455                   fefunca => 'feFuncA',
4456                   fefuncb => 'feFuncB',
4457                   fefuncg => 'feFuncG',
4458                   fefuncr => 'feFuncR',
4459                   fegaussianblur => 'feGaussianBlur',
4460                   feimage => 'feImage',
4461                   femerge => 'feMerge',
4462                   femergenode => 'feMergeNode',
4463                   femorphology => 'feMorphology',
4464                   feoffset => 'feOffset',
4465                   fepointlight => 'fePointLight',
4466                   fespecularlighting => 'feSpecularLighting',
4467                   fespotlight => 'feSpotLight',
4468                   fetile => 'feTile',
4469                   feturbulence => 'feTurbulence',
4470                   foreignobject => 'foreignObject',
4471                   glyphref => 'glyphRef',
4472                   lineargradient => 'linearGradient',
4473                   radialgradient => 'radialGradient',
4474                   #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
4475                   textpath => 'textPath',  
4476                }->{$tag_name} || $tag_name;
4477              }
4478    
4479              ## "adjust SVG attributes" (SVG only) - done in insert-element-f
4480    
4481              ## "adjust foreign attributes" - done in insert-element-f
4482    
4483              !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
4484    
4485              if ($self->{self_closing}) {
4486                pop @{$self->{open_elements}};
4487                !!!ack ('t87.3');
4488              } else {
4489                !!!cp ('t87.4');
4490              }
4491    
4492              !!!next-token;
4493              next B;
4494            }
4495          } elsif ($token->{type} == END_TAG_TOKEN) {
4496            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4497            !!!cp ('t87.5');
4498            #
4499          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4500            !!!cp ('t87.6');
4501            !!!parse-error (type => 'not closed',
4502                            text => $self->{open_elements}->[-1]->[0]
4503                                ->manakai_local_name,
4504                            token => $token);
4505    
4506            pop @{$self->{open_elements}}
4507                while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4508    
4509            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4510            ## Reprocess.
4511            next B;
4512          } else {
4513            die "$0: $token->{type}: Unknown token type";        
4514          }
4515        }
4516    
4517        if ($self->{insertion_mode} & HEAD_IMS) {
4518        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4519          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4520            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4521              !!!cp ('t88.2');              !!!cp ('t88.2');
4522              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4523                #
4524            } else {            } else {
4525              !!!cp ('t88.1');              !!!cp ('t88.1');
4526              ## Ignore the token.              ## Ignore the token.
4527              !!!next-token;              #
             redo B;  
4528            }            }
4529            unless (length $token->{data}) {            unless (length $token->{data}) {
4530              !!!cp ('t88');              !!!cp ('t88');
4531              !!!next-token;              !!!next-token;
4532              redo B;              next B;
4533            }            }
4534    ## TODO: set $token->{column} appropriately
4535          }          }
4536    
4537          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4538            !!!cp ('t89');            !!!cp ('t89');
4539            ## As if <head>            ## As if <head>
4540            !!!create-element ($self->{head_element}, 'head',, $token);            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4541            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4542            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            push @{$self->{open_elements}},
4543                  [$self->{head_element}, $el_category->{head}];
4544    
4545            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4546            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
# Line 3435  sub _tree_construction_main ($) { Line 4550  sub _tree_construction_main ($) {
4550            !!!cp ('t90');            !!!cp ('t90');
4551            ## As if </noscript>            ## As if </noscript>
4552            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4553            !!!parse-error (type => 'in noscript:#character', token => $token);            !!!parse-error (type => 'in noscript:#text', token => $token);
4554                        
4555            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4556            ## As if </head>            ## As if </head>
# Line 3451  sub _tree_construction_main ($) { Line 4566  sub _tree_construction_main ($) {
4566            !!!cp ('t92');            !!!cp ('t92');
4567          }          }
4568    
4569              ## "after head" insertion mode          ## "after head" insertion mode
4570              ## As if <body>          ## As if <body>
4571              !!!insert-element ('body',, $token);          !!!insert-element ('body',, $token);
4572              $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
4573              ## reprocess          ## reprocess
4574              redo B;          next B;
4575            } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4576              if ($token->{tag_name} eq 'head') {          if ($token->{tag_name} eq 'head') {
4577                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4578                  !!!cp ('t93');              !!!cp ('t93');
4579                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes}, $token);              !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
4580                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              $self->{open_elements}->[-1]->[0]->append_child
4581                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];                  ($self->{head_element});
4582                  $self->{insertion_mode} = IN_HEAD_IM;              push @{$self->{open_elements}},
4583                  !!!next-token;                  [$self->{head_element}, $el_category->{head}];
4584                  redo B;              $self->{insertion_mode} = IN_HEAD_IM;
4585                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {              !!!nack ('t93.1');
4586                  !!!cp ('t94');              !!!next-token;
4587                  #              next B;
4588                } else {            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4589                  !!!cp ('t95');              !!!cp ('t93.2');
4590                  !!!parse-error (type => 'in head:head', token => $token); # or in head noscript              !!!parse-error (type => 'after head', text => 'head',
4591                  ## Ignore the token                              token => $token);
4592                  !!!next-token;              ## Ignore the token
4593                  redo B;              !!!nack ('t93.3');
4594                }              !!!next-token;
4595              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              next B;
4596                !!!cp ('t96');            } else {
4597                ## As if <head>              !!!cp ('t95');
4598                !!!create-element ($self->{head_element}, 'head',, $token);              !!!parse-error (type => 'in head:head',
4599                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                              token => $token); # or in head noscript
4600                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];              ## Ignore the token
4601                !!!nack ('t95.1');
4602                !!!next-token;
4603                next B;
4604              }
4605            } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4606              !!!cp ('t96');
4607              ## As if <head>
4608              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4609              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4610              push @{$self->{open_elements}},
4611                  [$self->{head_element}, $el_category->{head}];
4612    
4613                $self->{insertion_mode} = IN_HEAD_IM;            $self->{insertion_mode} = IN_HEAD_IM;
4614                ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4615              } else {          } else {
4616                !!!cp ('t97');            !!!cp ('t97');
4617              }          }
4618    
4619              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
4620                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4621                  !!!cp ('t98');                  !!!cp ('t98');
4622                  ## As if </noscript>                  ## As if </noscript>
4623                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4624                  !!!parse-error (type => 'in noscript:base', token => $token);                  !!!parse-error (type => 'in noscript', text => 'base',
4625                                    token => $token);
4626                                
4627                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4628                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
# Line 3506  sub _tree_construction_main ($) { Line 4633  sub _tree_construction_main ($) {
4633                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4634                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4635                  !!!cp ('t100');                  !!!cp ('t100');
4636                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4637                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4638                    push @{$self->{open_elements}},
4639                        [$self->{head_element}, $el_category->{head}];
4640                } else {                } else {
4641                  !!!cp ('t101');                  !!!cp ('t101');
4642                }                }
# Line 3515  sub _tree_construction_main ($) { Line 4644  sub _tree_construction_main ($) {
4644                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4645                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4646                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4647                  !!!nack ('t101.1');
4648                !!!next-token;                !!!next-token;
4649                redo B;                next B;
4650              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
4651                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4652                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4653                  !!!cp ('t102');                  !!!cp ('t102');
4654                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4655                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4656                    push @{$self->{open_elements}},
4657                        [$self->{head_element}, $el_category->{head}];
4658                } else {                } else {
4659                  !!!cp ('t103');                  !!!cp ('t103');
4660                }                }
# Line 3530  sub _tree_construction_main ($) { Line 4662  sub _tree_construction_main ($) {
4662                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4663                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4664                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4665                  !!!ack ('t103.1');
4666                !!!next-token;                !!!next-token;
4667                redo B;                next B;
4668              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
4669                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4670                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4671                  !!!cp ('t104');                  !!!cp ('t104');
4672                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4673                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4674                    push @{$self->{open_elements}},
4675                        [$self->{head_element}, $el_category->{head}];
4676                } else {                } else {
4677                  !!!cp ('t105');                  !!!cp ('t105');
4678                }                }
# Line 3545  sub _tree_construction_main ($) { Line 4680  sub _tree_construction_main ($) {
4680                my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4681    
4682                unless ($self->{confident}) {                unless ($self->{confident}) {
4683                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) {
4684                    !!!cp ('t106');                    !!!cp ('t106');
4685                      ## NOTE: Whether the encoding is supported or not is handled
4686                      ## in the {change_encoding} callback.
4687                    $self->{change_encoding}                    $self->{change_encoding}
4688                        ->($self, $token->{attributes}->{charset}->{value},                        ->($self, $token->{attributes}->{charset}->{value},
4689                           $token);                           $token);
# Line 3556  sub _tree_construction_main ($) { Line 4693  sub _tree_construction_main ($) {
4693                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
4694                                                 ->{has_reference});                                                 ->{has_reference});
4695                  } elsif ($token->{attributes}->{content}) {                  } elsif ($token->{attributes}->{content}) {
                   ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
4696                    if ($token->{attributes}->{content}->{value}                    if ($token->{attributes}->{content}->{value}
4697                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                        =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4698                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
4699                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4700                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20\x3B]*))/x) {
4701                      !!!cp ('t107');                      !!!cp ('t107');
4702                        ## NOTE: Whether the encoding is supported or not is handled
4703                        ## in the {change_encoding} callback.
4704                      $self->{change_encoding}                      $self->{change_encoding}
4705                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
4706                             $token);                             $token);
# Line 3593  sub _tree_construction_main ($) { Line 4731  sub _tree_construction_main ($) {
4731    
4732                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4733                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4734                  !!!ack ('t110.1');
4735                !!!next-token;                !!!next-token;
4736                redo B;                next B;
4737              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
4738                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4739                  !!!cp ('t111');                  !!!cp ('t111');
4740                  ## As if </noscript>                  ## As if </noscript>
4741                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4742                  !!!parse-error (type => 'in noscript:title', token => $token);                  !!!parse-error (type => 'in noscript', text => 'title',
4743                                    token => $token);
4744                                
4745                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4746                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4747                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4748                  !!!cp ('t112');                  !!!cp ('t112');
4749                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4750                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4751                    push @{$self->{open_elements}},
4752                        [$self->{head_element}, $el_category->{head}];
4753                } else {                } else {
4754                  !!!cp ('t113');                  !!!cp ('t113');
4755                }                }
# Line 3618  sub _tree_construction_main ($) { Line 4760  sub _tree_construction_main ($) {
4760                $parse_rcdata->(RCDATA_CONTENT_MODEL);                $parse_rcdata->(RCDATA_CONTENT_MODEL);
4761                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4762                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4763                redo B;                next B;
4764              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style' or
4765                         $token->{tag_name} eq 'noframes') {
4766                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
4767                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
4768                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4769                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4770                  !!!cp ('t114');                  !!!cp ('t114');
4771                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4772                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4773                    push @{$self->{open_elements}},
4774                        [$self->{head_element}, $el_category->{head}];
4775                } else {                } else {
4776                  !!!cp ('t115');                  !!!cp ('t115');
4777                }                }
4778                $parse_rcdata->(CDATA_CONTENT_MODEL);                $parse_rcdata->(CDATA_CONTENT_MODEL);
4779                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4780                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4781                redo B;                next B;
4782              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4783                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
4784                  !!!cp ('t116');                  !!!cp ('t116');
4785                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
4786                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4787                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
4788                    !!!nack ('t116.1');
4789                  !!!next-token;                  !!!next-token;
4790                  redo B;                  next B;
4791                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4792                  !!!cp ('t117');                  !!!cp ('t117');
4793                  !!!parse-error (type => 'in noscript:noscript', token => $token);                  !!!parse-error (type => 'in noscript', text => 'noscript',
4794                                    token => $token);
4795                  ## Ignore the token                  ## Ignore the token
4796                    !!!nack ('t117.1');
4797                  !!!next-token;                  !!!next-token;
4798                  redo B;                  next B;
4799                } else {                } else {
4800                  !!!cp ('t118');                  !!!cp ('t118');
4801                  #                  #
# Line 3657  sub _tree_construction_main ($) { Line 4805  sub _tree_construction_main ($) {
4805                  !!!cp ('t119');                  !!!cp ('t119');
4806                  ## As if </noscript>                  ## As if </noscript>
4807                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4808                  !!!parse-error (type => 'in noscript:script', token => $token);                  !!!parse-error (type => 'in noscript', text => 'script',
4809                                    token => $token);
4810                                
4811                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4812                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4813                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4814                  !!!cp ('t120');                  !!!cp ('t120');
4815                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4816                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4817                    push @{$self->{open_elements}},
4818                        [$self->{head_element}, $el_category->{head}];
4819                } else {                } else {
4820                  !!!cp ('t121');                  !!!cp ('t121');
4821                }                }
# Line 3673  sub _tree_construction_main ($) { Line 4824  sub _tree_construction_main ($) {
4824                $script_start_tag->();                $script_start_tag->();
4825                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4826                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4827                redo B;                next B;
4828              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
4829                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
4830                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4831                  !!!cp ('t122');                  !!!cp ('t122');
4832                  ## As if </noscript>                  ## As if </noscript>
4833                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4834                  !!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'in noscript',
4835                                    text => $token->{tag_name}, token => $token);
4836                                    
4837                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4838                  ## As if </head>                  ## As if </head>
# Line 3707  sub _tree_construction_main ($) { Line 4859  sub _tree_construction_main ($) {
4859                } else {                } else {
4860                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
4861                }                }
4862                  !!!nack ('t127.1');
4863                !!!next-token;                !!!next-token;
4864                redo B;                next B;
4865              } else {              } else {
4866                !!!cp ('t128');                !!!cp ('t128');
4867                #                #
# Line 3718  sub _tree_construction_main ($) { Line 4871  sub _tree_construction_main ($) {
4871                !!!cp ('t129');                !!!cp ('t129');
4872                ## As if </noscript>                ## As if </noscript>
4873                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4874                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'in noscript:/',
4875                                  text => $token->{tag_name}, token => $token);
4876                                
4877                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4878                ## As if </head>                ## As if </head>
# Line 3740  sub _tree_construction_main ($) { Line 4894  sub _tree_construction_main ($) {
4894              !!!insert-element ('body',, $token);              !!!insert-element ('body',, $token);
4895              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4896              ## reprocess              ## reprocess
4897              redo B;              !!!ack-later;
4898                next B;
4899            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
4900              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
4901                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4902                  !!!cp ('t132');                  !!!cp ('t132');
4903                  ## As if <head>                  ## As if <head>
4904                  !!!create-element ($self->{head_element}, 'head',, $token);                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4905                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4906                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4907                        [$self->{head_element}, $el_category->{head}];
4908    
4909                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4910                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4911                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4912                  !!!next-token;                  !!!next-token;
4913                  redo B;                  next B;
4914                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4915                  !!!cp ('t133');                  !!!cp ('t133');
4916                  ## As if </noscript>                  ## As if </noscript>
4917                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4918                  !!!parse-error (type => 'in noscript:/head', token => $token);                  !!!parse-error (type => 'in noscript:/',
4919                                    text => 'head', token => $token);
4920                                    
4921                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4922                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4923                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4924                  !!!next-token;                  !!!next-token;
4925                  redo B;                  next B;
4926                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4927                  !!!cp ('t134');                  !!!cp ('t134');
4928                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4929                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4930                  !!!next-token;                  !!!next-token;
4931                  redo B;                  next B;
4932                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4933                    !!!cp ('t134.1');
4934                    !!!parse-error (type => 'unmatched end tag', text => 'head',
4935                                    token => $token);
4936                    ## Ignore the token
4937                    !!!next-token;
4938                    next B;
4939                } else {                } else {
4940                  !!!cp ('t135');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 #  
4941                }                }
4942              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4943                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
# Line 3782  sub _tree_construction_main ($) { Line 4945  sub _tree_construction_main ($) {
4945                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4946                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4947                  !!!next-token;                  !!!next-token;
4948                  redo B;                  next B;
4949                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM or
4950                           $self->{insertion_mode} == AFTER_HEAD_IM) {
4951                  !!!cp ('t137');                  !!!cp ('t137');
4952                  !!!parse-error (type => 'unmatched end tag:noscript', token => $token);                  !!!parse-error (type => 'unmatched end tag',
4953                                    text => 'noscript', token => $token);
4954                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
4955                  !!!next-token;                  !!!next-token;
4956                  redo B;                  next B;
4957                } else {                } else {
4958                  !!!cp ('t138');                  !!!cp ('t138');
4959                  #                  #
# Line 3796  sub _tree_construction_main ($) { Line 4961  sub _tree_construction_main ($) {
4961              } elsif ({              } elsif ({
4962                        body => 1, html => 1,                        body => 1, html => 1,
4963                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4964                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM or
4965                  !!!cp ('t139');                    $self->{insertion_mode} == IN_HEAD_IM or
4966                  ## As if <head>                    $self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
                 !!!create-element ($self->{head_element}, 'head',, $token);  
                 $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
                 push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
   
                 $self->{insertion_mode} = IN_HEAD_IM;  
                 ## Reprocess in the "in head" insertion mode...  
               } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {  
4967                  !!!cp ('t140');                  !!!cp ('t140');
4968                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
4969                                    text => $token->{tag_name}, token => $token);
4970                    ## Ignore the token
4971                    !!!next-token;
4972                    next B;
4973                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4974                    !!!cp ('t140.1');
4975                    !!!parse-error (type => 'unmatched end tag',
4976                                    text => $token->{tag_name}, token => $token);
4977                  ## Ignore the token                  ## Ignore the token
4978                  !!!next-token;                  !!!next-token;
4979                  redo B;                  next B;
4980                } else {                } else {
4981                  !!!cp ('t141');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
4982                }                }
4983                              } elsif ($token->{tag_name} eq 'p') {
4984                #                !!!cp ('t142');
4985              } elsif ({                !!!parse-error (type => 'unmatched end tag',
4986                        p => 1, br => 1,                                text => $token->{tag_name}, token => $token);
4987                       }->{$token->{tag_name}}) {                ## Ignore the token
4988                  !!!next-token;
4989                  next B;
4990                } elsif ($token->{tag_name} eq 'br') {
4991                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4992                  !!!cp ('t142');                  !!!cp ('t142.2');
4993                  ## As if <head>                  ## (before head) as if <head>, (in head) as if </head>
4994                  !!!create-element ($self->{head_element}, 'head',, $token);                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4995                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4996                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  $self->{insertion_mode} = AFTER_HEAD_IM;
4997      
4998                    ## Reprocess in the "after head" insertion mode...
4999                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
5000                    !!!cp ('t143.2');
5001                    ## As if </head>
5002                    pop @{$self->{open_elements}};
5003                    $self->{insertion_mode} = AFTER_HEAD_IM;
5004      
5005                    ## Reprocess in the "after head" insertion mode...
5006                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
5007                    !!!cp ('t143.3');
5008                    ## ISSUE: Two parse errors for <head><noscript></br>
5009                    !!!parse-error (type => 'unmatched end tag',
5010                                    text => 'br', token => $token);
5011                    ## As if </noscript>
5012                    pop @{$self->{open_elements}};
5013                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
5014    
5015                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
5016                } else {                  ## As if </head>
5017                  !!!cp ('t143');                  pop @{$self->{open_elements}};
5018                }                  $self->{insertion_mode} = AFTER_HEAD_IM;
5019    
5020                #                  ## Reprocess in the "after head" insertion mode...
5021              } else {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
5022                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                  !!!cp ('t143.4');
                 !!!cp ('t144');  
5023                  #                  #
5024                } else {                } else {
5025                  !!!cp ('t145');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
5026                }                }
5027    
5028                  ## ISSUE: does not agree with IE7 - it doesn't ignore </br>.
5029                  !!!parse-error (type => 'unmatched end tag',
5030                                  text => 'br', token => $token);
5031                  ## Ignore the token
5032                  !!!next-token;
5033                  next B;
5034                } else {
5035                  !!!cp ('t145');
5036                  !!!parse-error (type => 'unmatched end tag',
5037                                  text => $token->{tag_name}, token => $token);
5038                  ## Ignore the token
5039                  !!!next-token;
5040                  next B;
5041              }              }
5042    
5043              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
5044                !!!cp ('t146');                !!!cp ('t146');
5045                ## As if </noscript>                ## As if </noscript>
5046                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5047                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'in noscript:/',
5048                                  text => $token->{tag_name}, token => $token);
5049                                
5050                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
5051                ## As if </head>                ## As if </head>
# Line 3866  sub _tree_construction_main ($) { Line 5061  sub _tree_construction_main ($) {
5061              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
5062  ## ISSUE: This case cannot be reached?  ## ISSUE: This case cannot be reached?
5063                !!!cp ('t148');                !!!cp ('t148');
5064                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'unmatched end tag',
5065                                  text => $token->{tag_name}, token => $token);
5066                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
5067                !!!next-token;                !!!next-token;
5068                redo B;                next B;
5069              } else {              } else {
5070                !!!cp ('t149');                !!!cp ('t149');
5071              }              }
# Line 3879  sub _tree_construction_main ($) { Line 5075  sub _tree_construction_main ($) {
5075              !!!insert-element ('body',, $token);              !!!insert-element ('body',, $token);
5076              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
5077              ## reprocess              ## reprocess
5078              redo B;              next B;
5079        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5080          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
5081            !!!cp ('t149.1');            !!!cp ('t149.1');
5082    
5083            ## NOTE: As if <head>            ## NOTE: As if <head>
5084            !!!create-element ($self->{head_element}, 'head',, $token);            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
5085            $self->{open_elements}->[-1]->[0]->append_child            $self->{open_elements}->[-1]->[0]->append_child
5086                ($self->{head_element});                ($self->{head_element});
5087            #push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            #push @{$self->{open_elements}},
5088              #    [$self->{head_element}, $el_category->{head}];
5089            #$self->{insertion_mode} = IN_HEAD_IM;            #$self->{insertion_mode} = IN_HEAD_IM;
5090            ## NOTE: Reprocess.            ## NOTE: Reprocess.
5091    
# Line 3932  sub _tree_construction_main ($) { Line 5129  sub _tree_construction_main ($) {
5129          !!!insert-element ('body',, $token);          !!!insert-element ('body',, $token);
5130          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
5131          ## NOTE: Reprocess.          ## NOTE: Reprocess.
5132          redo B;          next B;
5133        } else {        } else {
5134          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5135        }        }
# Line 3947  sub _tree_construction_main ($) { Line 5144  sub _tree_construction_main ($) {
5144              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5145    
5146              !!!next-token;              !!!next-token;
5147              redo B;              next B;
5148            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
5149              if ({              if ({
5150                   caption => 1, col => 1, colgroup => 1, tbody => 1,                   caption => 1, col => 1, colgroup => 1, tbody => 1,
# Line 3957  sub _tree_construction_main ($) { Line 5154  sub _tree_construction_main ($) {
5154                  ## have an element in table scope                  ## have an element in table scope
5155                  for (reverse 0..$#{$self->{open_elements}}) {                  for (reverse 0..$#{$self->{open_elements}}) {
5156                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5157                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] & TABLE_CELL_EL) {
5158                      !!!cp ('t151');                      !!!cp ('t151');
5159    
5160                      ## Close the cell                      ## Close the cell
5161                      !!!back-token; # <?>                      !!!back-token; # <x>
5162                      $token = {type => END_TAG_TOKEN, tag_name => $node->[1],                      $token = {type => END_TAG_TOKEN,
5163                                  tag_name => $node->[0]->manakai_local_name,
5164                                line => $token->{line},                                line => $token->{line},
5165                                column => $token->{column}};                                column => $token->{column}};
5166                      redo B;                      next B;
5167                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5168                      !!!cp ('t152');                      !!!cp ('t152');
5169                      ## ISSUE: This case can never be reached, maybe.                      ## ISSUE: This case can never be reached, maybe.
5170                      last;                      last;
# Line 3977  sub _tree_construction_main ($) { Line 5173  sub _tree_construction_main ($) {
5173    
5174                  !!!cp ('t153');                  !!!cp ('t153');
5175                  !!!parse-error (type => 'start tag not allowed',                  !!!parse-error (type => 'start tag not allowed',
5176                      value => $token->{tag_name}, token => $token);                      text => $token->{tag_name}, token => $token);
5177                  ## Ignore the token                  ## Ignore the token
5178                    !!!nack ('t153.1');
5179                  !!!next-token;                  !!!next-token;
5180                  redo B;                  next B;
5181                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
5182                  !!!parse-error (type => 'not closed:caption', token => $token);                  !!!parse-error (type => 'not closed', text => 'caption',
5183                                    token => $token);
5184                                    
5185                  ## NOTE: As if </caption>.                  ## NOTE: As if </caption>.
5186                  ## have a table element in table scope                  ## have a table element in table scope
# Line 3990  sub _tree_construction_main ($) { Line 5188  sub _tree_construction_main ($) {
5188                  INSCOPE: {                  INSCOPE: {
5189                    for (reverse 0..$#{$self->{open_elements}}) {                    for (reverse 0..$#{$self->{open_elements}}) {
5190                      my $node = $self->{open_elements}->[$_];                      my $node = $self->{open_elements}->[$_];
5191                      if ($node->[1] eq 'caption') {                      if ($node->[1] & CAPTION_EL) {
5192                        !!!cp ('t155');                        !!!cp ('t155');
5193                        $i = $_;                        $i = $_;
5194                        last INSCOPE;                        last INSCOPE;
5195                      } elsif ({                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
                               table => 1, html => 1,  
                              }->{$node->[1]}) {  
5196                        !!!cp ('t156');                        !!!cp ('t156');
5197                        last;                        last;
5198                      }                      }
# Line 4004  sub _tree_construction_main ($) { Line 5200  sub _tree_construction_main ($) {
5200    
5201                    !!!cp ('t157');                    !!!cp ('t157');
5202                    !!!parse-error (type => 'start tag not allowed',                    !!!parse-error (type => 'start tag not allowed',
5203                                    value => $token->{tag_name}, token => $token);                                    text => $token->{tag_name}, token => $token);
5204                    ## Ignore the token                    ## Ignore the token
5205                      !!!nack ('t157.1');
5206                    !!!next-token;                    !!!next-token;
5207                    redo B;                    next B;
5208                  } # INSCOPE                  } # INSCOPE
5209                                    
5210                  ## generate implied end tags                  ## generate implied end tags
5211                  while ({                  while ($self->{open_elements}->[-1]->[1]
5212                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
5213                    !!!cp ('t158');                    !!!cp ('t158');
5214                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5215                  }                  }
5216    
5217                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5218                    !!!cp ('t159');                    !!!cp ('t159');
5219                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                    !!!parse-error (type => 'not closed',
5220                                      text => $self->{open_elements}->[-1]->[0]
5221                                          ->manakai_local_name,
5222                                      token => $token);
5223                  } else {                  } else {
5224                    !!!cp ('t160');                    !!!cp ('t160');
5225                  }                  }
# Line 4032  sub _tree_construction_main ($) { Line 5231  sub _tree_construction_main ($) {
5231                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5232                                    
5233                  ## reprocess                  ## reprocess
5234                  redo B;                  !!!ack-later;
5235                    next B;
5236                } else {                } else {
5237                  !!!cp ('t161');                  !!!cp ('t161');
5238                  #                  #
# Line 4048  sub _tree_construction_main ($) { Line 5248  sub _tree_construction_main ($) {
5248                  my $i;                  my $i;
5249                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5250                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5251                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5252                      !!!cp ('t163');                      !!!cp ('t163');
5253                      $i = $_;                      $i = $_;
5254                      last INSCOPE;                      last INSCOPE;
5255                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5256                      !!!cp ('t164');                      !!!cp ('t164');
5257                      last INSCOPE;                      last INSCOPE;
5258                    }                    }
5259                  } # INSCOPE                  } # INSCOPE
5260                    unless (defined $i) {                    unless (defined $i) {
5261                      !!!cp ('t165');                      !!!cp ('t165');
5262                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                      !!!parse-error (type => 'unmatched end tag',
5263                                        text => $token->{tag_name},
5264                                        token => $token);
5265                      ## Ignore the token                      ## Ignore the token
5266                      !!!next-token;                      !!!next-token;
5267                      redo B;                      next B;
5268                    }                    }
5269                                    
5270                  ## generate implied end tags                  ## generate implied end tags
5271                  while ({                  while ($self->{open_elements}->[-1]->[1]
5272                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
5273                    !!!cp ('t166');                    !!!cp ('t166');
5274                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5275                  }                  }
5276    
5277                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5278                            ne $token->{tag_name}) {
5279                    !!!cp ('t167');                    !!!cp ('t167');
5280                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                    !!!parse-error (type => 'not closed',
5281                                      text => $self->{open_elements}->[-1]->[0]
5282                                          ->manakai_local_name,
5283                                      token => $token);
5284                  } else {                  } else {
5285                    !!!cp ('t168');                    !!!cp ('t168');
5286                  }                  }
# Line 4089  sub _tree_construction_main ($) { Line 5292  sub _tree_construction_main ($) {
5292                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5293                                    
5294                  !!!next-token;                  !!!next-token;
5295                  redo B;                  next B;
5296                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
5297                  !!!cp ('t169');                  !!!cp ('t169');
5298                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5299                                    text => $token->{tag_name}, token => $token);
5300                  ## Ignore the token                  ## Ignore the token
5301                  !!!next-token;                  !!!next-token;
5302                  redo B;                  next B;
5303                } else {                } else {
5304                  !!!cp ('t170');                  !!!cp ('t170');
5305                  #                  #
# Line 4107  sub _tree_construction_main ($) { Line 5311  sub _tree_construction_main ($) {
5311                  INSCOPE: {                  INSCOPE: {
5312                    for (reverse 0..$#{$self->{open_elements}}) {                    for (reverse 0..$#{$self->{open_elements}}) {
5313                      my $node = $self->{open_elements}->[$_];                      my $node = $self->{open_elements}->[$_];
5314                      if ($node->[1] eq $token->{tag_name}) {                      if ($node->[1] & CAPTION_EL) {
5315                        !!!cp ('t171');                        !!!cp ('t171');
5316                        $i = $_;                        $i = $_;
5317                        last INSCOPE;                        last INSCOPE;
5318                      } elsif ({                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
                               table => 1, html => 1,  
                              }->{$node->[1]}) {  
5319                        !!!cp ('t172');                        !!!cp ('t172');
5320                        last;                        last;
5321                      }                      }
# Line 4121  sub _tree_construction_main ($) { Line 5323  sub _tree_construction_main ($) {
5323    
5324                    !!!cp ('t173');                    !!!cp ('t173');
5325                    !!!parse-error (type => 'unmatched end tag',                    !!!parse-error (type => 'unmatched end tag',
5326                                    value => $token->{tag_name}, token => $token);                                    text => $token->{tag_name}, token => $token);
5327                    ## Ignore the token                    ## Ignore the token
5328                    !!!next-token;                    !!!next-token;
5329                    redo B;                    next B;
5330                  } # INSCOPE                  } # INSCOPE
5331                                    
5332                  ## generate implied end tags                  ## generate implied end tags
5333                  while ({                  while ($self->{open_elements}->[-1]->[1]
5334                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
5335                    !!!cp ('t174');                    !!!cp ('t174');
5336                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5337                  }                  }
5338                                    
5339                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5340                    !!!cp ('t175');                    !!!cp ('t175');
5341                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                    !!!parse-error (type => 'not closed',
5342                                      text => $self->{open_elements}->[-1]->[0]
5343                                          ->manakai_local_name,
5344                                      token => $token);
5345                  } else {                  } else {
5346                    !!!cp ('t176');                    !!!cp ('t176');
5347                  }                  }
# Line 4149  sub _tree_construction_main ($) { Line 5353  sub _tree_construction_main ($) {
5353                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5354                                    
5355                  !!!next-token;                  !!!next-token;
5356                  redo B;                  next B;
5357                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
5358                  !!!cp ('t177');                  !!!cp ('t177');
5359                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5360                                    text => $token->{tag_name}, token => $token);
5361                  ## Ignore the token                  ## Ignore the token
5362                  !!!next-token;                  !!!next-token;
5363                  redo B;                  next B;
5364                } else {                } else {
5365                  !!!cp ('t178');                  !!!cp ('t178');
5366                  #                  #
# Line 4171  sub _tree_construction_main ($) { Line 5376  sub _tree_construction_main ($) {
5376                INSCOPE: {                INSCOPE: {
5377                  for (reverse 0..$#{$self->{open_elements}}) {                  for (reverse 0..$#{$self->{open_elements}}) {
5378                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5379                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5380                      !!!cp ('t179');                      !!!cp ('t179');
5381                      $i = $_;                      $i = $_;
5382    
5383                      ## Close the cell                      ## Close the cell
5384                      !!!back-token; # </?>                      !!!back-token; # </x>
5385                      $token = {type => END_TAG_TOKEN, tag_name => $tn,                      $token = {type => END_TAG_TOKEN, tag_name => $tn,
5386                                line => $token->{line},                                line => $token->{line},
5387                                column => $token->{column}};                                column => $token->{column}};
5388                      redo B;                      next B;
5389                    } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {                    } elsif ($node->[1] & TABLE_CELL_EL) {
5390                      !!!cp ('t180');                      !!!cp ('t180');
5391                      $tn = $node->[1];                      $tn = $node->[0]->manakai_local_name;
5392                      ## NOTE: There is exactly one |td| or |th| element                      ## NOTE: There is exactly one |td| or |th| element
5393                      ## in scope in the stack of open elements by definition.                      ## in scope in the stack of open elements by definition.
5394                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5395                      ## ISSUE: Can this be reached?                      ## ISSUE: Can this be reached?
5396                      !!!cp ('t181');                      !!!cp ('t181');
5397                      last;                      last;
# Line 4197  sub _tree_construction_main ($) { Line 5400  sub _tree_construction_main ($) {
5400    
5401                  !!!cp ('t182');                  !!!cp ('t182');
5402                  !!!parse-error (type => 'unmatched end tag',                  !!!parse-error (type => 'unmatched end tag',
5403                      value => $token->{tag_name}, token => $token);                      text => $token->{tag_name}, token => $token);
5404                  ## Ignore the token                  ## Ignore the token
5405                  !!!next-token;                  !!!next-token;
5406                  redo B;                  next B;
5407                } # INSCOPE                } # INSCOPE
5408              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
5409                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5410                !!!parse-error (type => 'not closed:caption', token => $token);                !!!parse-error (type => 'not closed', text => 'caption',
5411                                  token => $token);
5412    
5413                ## As if </caption>                ## As if </caption>
5414                ## have a table element in table scope                ## have a table element in table scope
5415                my $i;                my $i;
5416                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5417                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5418                  if ($node->[1] eq 'caption') {                  if ($node->[1] & CAPTION_EL) {
5419                    !!!cp ('t184');                    !!!cp ('t184');
5420                    $i = $_;                    $i = $_;
5421                    last INSCOPE;                    last INSCOPE;
5422                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5423                    !!!cp ('t185');                    !!!cp ('t185');
5424                    last INSCOPE;                    last INSCOPE;
5425                  }                  }
5426                } # INSCOPE                } # INSCOPE
5427                unless (defined $i) {                unless (defined $i) {
5428                  !!!cp ('t186');                  !!!cp ('t186');
5429                  !!!parse-error (type => 'unmatched end tag:caption', token => $token);                  !!!parse-error (type => 'unmatched end tag',
5430                                    text => 'caption', token => $token);
5431                  ## Ignore the token                  ## Ignore the token
5432                  !!!next-token;                  !!!next-token;
5433                  redo B;                  next B;
5434                }                }
5435                                
5436                ## generate implied end tags                ## generate implied end tags
5437                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5438                  !!!cp ('t187');                  !!!cp ('t187');
5439                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5440                }                }
5441    
5442                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5443                  !!!cp ('t188');                  !!!cp ('t188');
5444                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                  !!!parse-error (type => 'not closed',
5445                                    text => $self->{open_elements}->[-1]->[0]
5446                                        ->manakai_local_name,
5447                                    token => $token);
5448                } else {                } else {
5449                  !!!cp ('t189');                  !!!cp ('t189');
5450                }                }
# Line 4252  sub _tree_construction_main ($) { Line 5456  sub _tree_construction_main ($) {
5456                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5457    
5458                ## reprocess                ## reprocess
5459                redo B;                next B;
5460              } elsif ({              } elsif ({
5461                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
5462                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5463                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
5464                  !!!cp ('t190');                  !!!cp ('t190');
5465                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5466                                    text => $token->{tag_name}, token => $token);
5467                  ## Ignore the token                  ## Ignore the token
5468                  !!!next-token;                  !!!next-token;
5469                  redo B;                  next B;
5470                } else {                } else {
5471                  !!!cp ('t191');                  !!!cp ('t191');
5472                  #                  #
# Line 4272  sub _tree_construction_main ($) { Line 5477  sub _tree_construction_main ($) {
5477                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
5478                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5479                !!!cp ('t192');                !!!cp ('t192');
5480                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'unmatched end tag',
5481                                  text => $token->{tag_name}, token => $token);
5482                ## Ignore the token                ## Ignore the token
5483                !!!next-token;                !!!next-token;
5484                redo B;                next B;
5485              } else {              } else {
5486                !!!cp ('t193');                !!!cp ('t193');
5487                #                #
5488              }              }
5489        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5490          for my $entry (@{$self->{open_elements}}) {          for my $entry (@{$self->{open_elements}}) {
5491            if (not {            unless ($entry->[1] & ALL_END_TAG_OPTIONAL_EL) {
             dd => 1, dt => 1, li => 1, p => 1, tbody => 1, td => 1, tfoot => 1,  
             th => 1, thead => 1, tr => 1, body => 1, html => 1,  
           }->{$entry->[1]}) {  
5492              !!!cp ('t75');              !!!cp ('t75');
5493              !!!parse-error (type => 'in body:#eof', token => $token);              !!!parse-error (type => 'in body:#eof', token => $token);
5494              last;              last;
# Line 4309  sub _tree_construction_main ($) { Line 5512  sub _tree_construction_main ($) {
5512            unless (length $token->{data}) {            unless (length $token->{data}) {
5513              !!!cp ('t194');              !!!cp ('t194');
5514              !!!next-token;              !!!next-token;
5515              redo B;              next B;
5516            } else {            } else {
5517              !!!cp ('t195');              !!!cp ('t195');
5518            }            }
5519          }          }
5520    
5521              !!!parse-error (type => 'in table:#character', token => $token);          !!!parse-error (type => 'in table:#text', token => $token);
5522    
5523              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
5524              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
# Line 4323  sub _tree_construction_main ($) { Line 5526  sub _tree_construction_main ($) {
5526              ## result in a new Text node.              ## result in a new Text node.
5527              $reconstruct_active_formatting_elements->($insert_to_foster);              $reconstruct_active_formatting_elements->($insert_to_foster);
5528                            
5529              if ({              if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
                  table => 1, tbody => 1, tfoot => 1,  
                  thead => 1, tr => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5530                # MUST                # MUST
5531                my $foster_parent_element;                my $foster_parent_element;
5532                my $next_sibling;                my $next_sibling;
5533                my $prev_sibling;                my $prev_sibling;
5534                OE: for (reverse 0..$#{$self->{open_elements}}) {                OE: for (reverse 0..$#{$self->{open_elements}}) {
5535                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
5536                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
5537                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
5538                      !!!cp ('t196');                      !!!cp ('t196');
# Line 4367  sub _tree_construction_main ($) { Line 5567  sub _tree_construction_main ($) {
5567          }          }
5568                            
5569          !!!next-token;          !!!next-token;
5570          redo B;          next B;
5571        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5572              if ({          if ({
5573                   tr => ($self->{insertion_mode} != IN_ROW_IM),               tr => ($self->{insertion_mode} != IN_ROW_IM),
5574                   th => 1, td => 1,               th => 1, td => 1,
5575                  }->{$token->{tag_name}}) {              }->{$token->{tag_name}}) {
5576                if ($self->{insertion_mode} == IN_TABLE_IM) {            if ($self->{insertion_mode} == IN_TABLE_IM) {
5577                  ## Clear back to table context              ## Clear back to table context
5578                  while ($self->{open_elements}->[-1]->[1] ne 'table' and              while (not ($self->{open_elements}->[-1]->[1]
5579                         $self->{open_elements}->[-1]->[1] ne 'html') {                              & TABLE_SCOPING_EL)) {
5580                    !!!cp ('t201');                !!!cp ('t201');
5581                    pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5582                  }              }
5583                                
5584                  !!!insert-element ('tbody',, $token);              !!!insert-element ('tbody',, $token);
5585                  $self->{insertion_mode} = IN_TABLE_BODY_IM;              $self->{insertion_mode} = IN_TABLE_BODY_IM;
5586                  ## reprocess in the "in table body" insertion mode...              ## reprocess in the "in table body" insertion mode...
5587                }            }
5588              
5589                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {            if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
5590                  unless ($token->{tag_name} eq 'tr') {              unless ($token->{tag_name} eq 'tr') {
5591                    !!!cp ('t202');                !!!cp ('t202');
5592                    !!!parse-error (type => 'missing start tag:tr', token => $token);                !!!parse-error (type => 'missing start tag:tr', token => $token);
5593                  }              }
5594                                    
5595                  ## Clear back to table body context              ## Clear back to table body context
5596                  while (not {              while (not ($self->{open_elements}->[-1]->[1]
5597                    tbody => 1, tfoot => 1, thead => 1, html => 1,                              & TABLE_ROWS_SCOPING_EL)) {
5598                  }->{$self->{open_elements}->[-1]->[1]}) {                !!!cp ('t203');
5599                    !!!cp ('t203');                ## ISSUE: Can this case be reached?
5600                    ## ISSUE: Can this case be reached?                pop @{$self->{open_elements}};
5601                    pop @{$self->{open_elements}};              }
                 }  
5602                                    
5603                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5604                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5605                    !!!cp ('t204');                    !!!cp ('t204');
5606                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5607                      !!!nack ('t204');
5608                    !!!next-token;                    !!!next-token;
5609                    redo B;                    next B;
5610                  } else {                  } else {
5611                    !!!cp ('t205');                    !!!cp ('t205');
5612                    !!!insert-element ('tr',, $token);                    !!!insert-element ('tr',, $token);
# Line 4417  sub _tree_construction_main ($) { Line 5617  sub _tree_construction_main ($) {
5617                }                }
5618    
5619                ## Clear back to table row context                ## Clear back to table row context
5620                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5621                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5622                  !!!cp ('t207');                  !!!cp ('t207');
5623                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5624                }                }
# Line 4429  sub _tree_construction_main ($) { Line 5628  sub _tree_construction_main ($) {
5628    
5629                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
5630                                
5631                  !!!nack ('t207.1');
5632                !!!next-token;                !!!next-token;
5633                redo B;                next B;
5634              } elsif ({              } elsif ({
5635                        caption => 1, col => 1, colgroup => 1,                        caption => 1, col => 1, colgroup => 1,
5636                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
# Line 4442  sub _tree_construction_main ($) { Line 5642  sub _tree_construction_main ($) {
5642                  my $i;                  my $i;
5643                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5644                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5645                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5646                      !!!cp ('t208');                      !!!cp ('t208');
5647                      $i = $_;                      $i = $_;
5648                      last INSCOPE;                      last INSCOPE;
5649                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             html => 1,  
   
                             ## NOTE: This element does not appear here, maybe.  
                             table => 1,  
                            }->{$node->[1]}) {  
5650                      !!!cp ('t209');                      !!!cp ('t209');
5651                      last INSCOPE;                      last INSCOPE;
5652                    }                    }
5653                  } # INSCOPE                  } # INSCOPE
5654                  unless (defined $i) {                  unless (defined $i) {
5655                   !!!cp ('t210');                    !!!cp ('t210');
5656  ## TODO: This type is wrong.  ## TODO: This type is wrong.
5657                   !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token);                    !!!parse-error (type => 'unmacthed end tag',
5658                                      text => $token->{tag_name}, token => $token);
5659                    ## Ignore the token                    ## Ignore the token
5660                      !!!nack ('t210.1');
5661                    !!!next-token;                    !!!next-token;
5662                    redo B;                    next B;
5663                  }                  }
5664                                    
5665                  ## Clear back to table row context                  ## Clear back to table row context
5666                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5667                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5668                    !!!cp ('t211');                    !!!cp ('t211');
5669                    ## ISSUE: Can this case be reached?                    ## ISSUE: Can this case be reached?
5670                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4479  sub _tree_construction_main ($) { Line 5675  sub _tree_construction_main ($) {
5675                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5676                    !!!cp ('t212');                    !!!cp ('t212');
5677                    ## reprocess                    ## reprocess
5678                    redo B;                    !!!ack-later;
5679                      next B;
5680                  } else {                  } else {
5681                    !!!cp ('t213');                    !!!cp ('t213');
5682                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
# Line 4491  sub _tree_construction_main ($) { Line 5688  sub _tree_construction_main ($) {
5688                  my $i;                  my $i;
5689                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5690                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5691                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5692                      !!!cp ('t214');                      !!!cp ('t214');
5693                      $i = $_;                      $i = $_;
5694                      last INSCOPE;                      last INSCOPE;
5695                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5696                      !!!cp ('t215');                      !!!cp ('t215');
5697                      last INSCOPE;                      last INSCOPE;
5698                    }                    }
5699                  } # INSCOPE                  } # INSCOPE
5700                  unless (defined $i) {                  unless (defined $i) {
5701                    !!!cp ('t216');                    !!!cp ('t216');
5702  ## TODO: This erorr type ios wrong.  ## TODO: This erorr type is wrong.
5703                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                    !!!parse-error (type => 'unmatched end tag',
5704                                      text => $token->{tag_name}, token => $token);
5705                    ## Ignore the token                    ## Ignore the token
5706                      !!!nack ('t216.1');
5707                    !!!next-token;                    !!!next-token;
5708                    redo B;                    next B;
5709                  }                  }
5710    
5711                  ## Clear back to table body context                  ## Clear back to table body context
5712                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5713                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5714                    !!!cp ('t217');                    !!!cp ('t217');
5715                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5716                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4538  sub _tree_construction_main ($) { Line 5732  sub _tree_construction_main ($) {
5732    
5733                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
5734                  ## Clear back to table context                  ## Clear back to table context
5735                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5736                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5737                    !!!cp ('t219');                    !!!cp ('t219');
5738                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5739                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4548  sub _tree_construction_main ($) { Line 5742  sub _tree_construction_main ($) {
5742                  !!!insert-element ('colgroup',, $token);                  !!!insert-element ('colgroup',, $token);
5743                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
5744                  ## reprocess                  ## reprocess
5745                  redo B;                  !!!ack-later;
5746                    next B;
5747                } elsif ({                } elsif ({
5748                          caption => 1,                          caption => 1,
5749                          colgroup => 1,                          colgroup => 1,
5750                          tbody => 1, tfoot => 1, thead => 1,                          tbody => 1, tfoot => 1, thead => 1,
5751                         }->{$token->{tag_name}}) {                         }->{$token->{tag_name}}) {
5752                  ## Clear back to table context                  ## Clear back to table context
5753                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5754                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5755                    !!!cp ('t220');                    !!!cp ('t220');
5756                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5757                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4574  sub _tree_construction_main ($) { Line 5769  sub _tree_construction_main ($) {
5769                                             thead => IN_TABLE_BODY_IM,                                             thead => IN_TABLE_BODY_IM,
5770                                            }->{$token->{tag_name}};                                            }->{$token->{tag_name}};
5771                  !!!next-token;                  !!!next-token;
5772                  redo B;                  !!!nack ('t220.1');
5773                    next B;
5774                } else {                } else {
5775                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
5776                }                }
5777              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5778                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                !!!parse-error (type => 'not closed',
5779                                  text => $self->{open_elements}->[-1]->[0]
5780                                      ->manakai_local_name,
5781                                  token => $token);
5782    
5783                ## As if </table>                ## As if </table>
5784                ## have a table element in table scope                ## have a table element in table scope
5785                my $i;                my $i;
5786                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5787                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5788                  if ($node->[1] eq 'table') {                  if ($node->[1] & TABLE_EL) {
5789                    !!!cp ('t221');                    !!!cp ('t221');
5790                    $i = $_;                    $i = $_;
5791                    last INSCOPE;                    last INSCOPE;
5792                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           #table => 1,  
                           html => 1,  
                          }->{$node->[1]}) {  
5793                    !!!cp ('t222');                    !!!cp ('t222');
5794                    last INSCOPE;                    last INSCOPE;
5795                  }                  }
# Line 4601  sub _tree_construction_main ($) { Line 5797  sub _tree_construction_main ($) {
5797                unless (defined $i) {                unless (defined $i) {
5798                  !!!cp ('t223');                  !!!cp ('t223');
5799  ## TODO: The following is wrong, maybe.  ## TODO: The following is wrong, maybe.
5800                  !!!parse-error (type => 'unmatched end tag:table', token => $token);                  !!!parse-error (type => 'unmatched end tag', text => 'table',
5801                                    token => $token);
5802                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
5803                    !!!nack ('t223.1');
5804                  !!!next-token;                  !!!next-token;
5805                  redo B;                  next B;
5806                }                }
5807                                
5808  ## TODO: Followings are removed from the latest spec.  ## TODO: Followings are removed from the latest spec.
5809                ## generate implied end tags                ## generate implied end tags
5810                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5811                  !!!cp ('t224');                  !!!cp ('t224');
5812                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5813                }                }
5814    
5815                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] & TABLE_EL) {
5816                  !!!cp ('t225');                  !!!cp ('t225');
5817  ## ISSUE: Can this case be reached?                  ## NOTE: |<table><tr><table>|
5818                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                  !!!parse-error (type => 'not closed',
5819                                    text => $self->{open_elements}->[-1]->[0]
5820                                        ->manakai_local_name,
5821                                    token => $token);
5822                } else {                } else {
5823                  !!!cp ('t226');                  !!!cp ('t226');
5824                }                }
# Line 4629  sub _tree_construction_main ($) { Line 5828  sub _tree_construction_main ($) {
5828    
5829                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5830    
5831                ## reprocess            ## reprocess
5832                redo B;            !!!ack-later;
5833              next B;
5834          } elsif ($token->{tag_name} eq 'style') {          } elsif ($token->{tag_name} eq 'style') {
5835            if (not $open_tables->[-1]->[1]) { # tainted            if (not $open_tables->[-1]->[1]) { # tainted
5836              !!!cp ('t227.8');              !!!cp ('t227.8');
5837              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5838              $parse_rcdata->(CDATA_CONTENT_MODEL);              $parse_rcdata->(CDATA_CONTENT_MODEL);
5839              redo B;              next B;
5840            } else {            } else {
5841              !!!cp ('t227.7');              !!!cp ('t227.7');
5842              #              #
# Line 4646  sub _tree_construction_main ($) { Line 5846  sub _tree_construction_main ($) {
5846              !!!cp ('t227.6');              !!!cp ('t227.6');
5847              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5848              $script_start_tag->();              $script_start_tag->();
5849              redo B;              next B;
5850            } else {            } else {
5851              !!!cp ('t227.5');              !!!cp ('t227.5');
5852              #              #
# Line 4657  sub _tree_construction_main ($) { Line 5857  sub _tree_construction_main ($) {
5857                my $type = lc $token->{attributes}->{type}->{value};                my $type = lc $token->{attributes}->{type}->{value};
5858                if ($type eq 'hidden') {                if ($type eq 'hidden') {
5859                  !!!cp ('t227.3');                  !!!cp ('t227.3');
5860                  !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'in table',
5861                                    text => $token->{tag_name}, token => $token);
5862    
5863                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5864    
# Line 4666  sub _tree_construction_main ($) { Line 5867  sub _tree_construction_main ($) {
5867                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5868    
5869                  !!!next-token;                  !!!next-token;
5870                  redo B;                  !!!ack ('t227.2.1');
5871                    next B;
5872                } else {                } else {
5873                  !!!cp ('t227.2');                  !!!cp ('t227.2');
5874                  #                  #
# Line 4684  sub _tree_construction_main ($) { Line 5886  sub _tree_construction_main ($) {
5886            #            #
5887          }          }
5888    
5889          !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'in table', text => $token->{tag_name},
5890                            token => $token);
5891    
5892          $insert = $insert_to_foster;          $insert = $insert_to_foster;
5893          #          #
# Line 4695  sub _tree_construction_main ($) { Line 5898  sub _tree_construction_main ($) {
5898                my $i;                my $i;
5899                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5900                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5901                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_ROW_EL) {
5902                    !!!cp ('t228');                    !!!cp ('t228');
5903                    $i = $_;                    $i = $_;
5904                    last INSCOPE;                    last INSCOPE;
5905                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5906                    !!!cp ('t229');                    !!!cp ('t229');
5907                    last INSCOPE;                    last INSCOPE;
5908                  }                  }
5909                } # INSCOPE                } # INSCOPE
5910                unless (defined $i) {                unless (defined $i) {
5911                  !!!cp ('t230');                  !!!cp ('t230');
5912                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5913                                    text => $token->{tag_name}, token => $token);
5914                  ## Ignore the token                  ## Ignore the token
5915                    !!!nack ('t230.1');
5916                  !!!next-token;                  !!!next-token;
5917                  redo B;                  next B;
5918                } else {                } else {
5919                  !!!cp ('t232');                  !!!cp ('t232');
5920                }                }
5921    
5922                ## Clear back to table row context                ## Clear back to table row context
5923                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5924                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5925                  !!!cp ('t231');                  !!!cp ('t231');
5926  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5927                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4728  sub _tree_construction_main ($) { Line 5930  sub _tree_construction_main ($) {
5930                pop @{$self->{open_elements}}; # tr                pop @{$self->{open_elements}}; # tr
5931                $self->{insertion_mode} = IN_TABLE_BODY_IM;                $self->{insertion_mode} = IN_TABLE_BODY_IM;
5932                !!!next-token;                !!!next-token;
5933                redo B;                !!!nack ('t231.1');
5934                  next B;
5935              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5936                if ($self->{insertion_mode} == IN_ROW_IM) {                if ($self->{insertion_mode} == IN_ROW_IM) {
5937                  ## As if </tr>                  ## As if </tr>
# Line 4736  sub _tree_construction_main ($) { Line 5939  sub _tree_construction_main ($) {
5939                  my $i;                  my $i;
5940                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5941                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5942                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5943                      !!!cp ('t233');                      !!!cp ('t233');
5944                      $i = $_;                      $i = $_;
5945                      last INSCOPE;                      last INSCOPE;
5946                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5947                      !!!cp ('t234');                      !!!cp ('t234');
5948                      last INSCOPE;                      last INSCOPE;
5949                    }                    }
# Line 4750  sub _tree_construction_main ($) { Line 5951  sub _tree_construction_main ($) {
5951                  unless (defined $i) {                  unless (defined $i) {
5952                    !!!cp ('t235');                    !!!cp ('t235');
5953  ## TODO: The following is wrong.  ## TODO: The following is wrong.
5954                    !!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token);                    !!!parse-error (type => 'unmatched end tag',
5955                                      text => $token->{type}, token => $token);
5956                    ## Ignore the token                    ## Ignore the token
5957                      !!!nack ('t236.1');
5958                    !!!next-token;                    !!!next-token;
5959                    redo B;                    next B;
5960                  }                  }
5961                                    
5962                  ## Clear back to table row context                  ## Clear back to table row context
5963                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5964                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5965                    !!!cp ('t236');                    !!!cp ('t236');
5966  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5967                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4775  sub _tree_construction_main ($) { Line 5977  sub _tree_construction_main ($) {
5977                  my $i;                  my $i;
5978                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5979                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5980                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5981                      !!!cp ('t237');                      !!!cp ('t237');
5982                      $i = $_;                      $i = $_;
5983                      last INSCOPE;                      last INSCOPE;
5984                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5985                      !!!cp ('t238');                      !!!cp ('t238');
5986                      last INSCOPE;                      last INSCOPE;
5987                    }                    }
5988                  } # INSCOPE                  } # INSCOPE
5989                  unless (defined $i) {                  unless (defined $i) {
5990                    !!!cp ('t239');                    !!!cp ('t239');
5991                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                    !!!parse-error (type => 'unmatched end tag',
5992                                      text => $token->{tag_name}, token => $token);
5993                    ## Ignore the token                    ## Ignore the token
5994                      !!!nack ('t239.1');
5995                    !!!next-token;                    !!!next-token;
5996                    redo B;                    next B;
5997                  }                  }
5998                                    
5999                  ## Clear back to table body context                  ## Clear back to table body context
6000                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
6001                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
6002                    !!!cp ('t240');                    !!!cp ('t240');
6003                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
6004                  }                  }
# Line 4825  sub _tree_construction_main ($) { Line 6024  sub _tree_construction_main ($) {
6024                my $i;                my $i;
6025                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6026                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
6027                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_EL) {
6028                    !!!cp ('t241');                    !!!cp ('t241');
6029                    $i = $_;                    $i = $_;
6030                    last INSCOPE;                    last INSCOPE;
6031                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6032                    !!!cp ('t242');                    !!!cp ('t242');
6033                    last INSCOPE;                    last INSCOPE;
6034                  }                  }
6035                } # INSCOPE                } # INSCOPE
6036                unless (defined $i) {                unless (defined $i) {
6037                  !!!cp ('t243');                  !!!cp ('t243');
6038                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
6039                                    text => $token->{tag_name}, token => $token);
6040                  ## Ignore the token                  ## Ignore the token
6041                    !!!nack ('t243.1');
6042                  !!!next-token;                  !!!next-token;
6043                  redo B;                  next B;
6044                }                }
6045                                    
6046                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 4850  sub _tree_construction_main ($) { Line 6049  sub _tree_construction_main ($) {
6049                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
6050                                
6051                !!!next-token;                !!!next-token;
6052                redo B;                next B;
6053              } elsif ({              } elsif ({
6054                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
6055                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
# Line 4860  sub _tree_construction_main ($) { Line 6059  sub _tree_construction_main ($) {
6059                  my $i;                  my $i;
6060                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6061                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
6062                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6063                      !!!cp ('t247');                      !!!cp ('t247');
6064                      $i = $_;                      $i = $_;
6065                      last INSCOPE;                      last INSCOPE;
6066                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
6067                      !!!cp ('t248');                      !!!cp ('t248');
6068                      last INSCOPE;                      last INSCOPE;
6069                    }                    }
6070                  } # INSCOPE                  } # INSCOPE
6071                    unless (defined $i) {                    unless (defined $i) {
6072                      !!!cp ('t249');                      !!!cp ('t249');
6073                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                      !!!parse-error (type => 'unmatched end tag',
6074                                        text => $token->{tag_name}, token => $token);
6075                      ## Ignore the token                      ## Ignore the token
6076                        !!!nack ('t249.1');
6077                      !!!next-token;                      !!!next-token;
6078                      redo B;                      next B;
6079                    }                    }
6080                                    
6081                  ## As if </tr>                  ## As if </tr>
# Line 4884  sub _tree_construction_main ($) { Line 6083  sub _tree_construction_main ($) {
6083                  my $i;                  my $i;
6084                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6085                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
6086                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
6087                      !!!cp ('t250');                      !!!cp ('t250');
6088                      $i = $_;                      $i = $_;
6089                      last INSCOPE;                      last INSCOPE;
6090                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
6091                      !!!cp ('t251');                      !!!cp ('t251');
6092                      last INSCOPE;                      last INSCOPE;
6093                    }                    }
6094                  } # INSCOPE                  } # INSCOPE
6095                    unless (defined $i) {                    unless (defined $i) {
6096                      !!!cp ('t252');                      !!!cp ('t252');
6097                      !!!parse-error (type => 'unmatched end tag:tr', token => $token);                      !!!parse-error (type => 'unmatched end tag',
6098                                        text => 'tr', token => $token);
6099                      ## Ignore the token                      ## Ignore the token
6100                        !!!nack ('t252.1');
6101                      !!!next-token;                      !!!next-token;
6102                      redo B;                      next B;
6103                    }                    }
6104                                    
6105                  ## Clear back to table row context                  ## Clear back to table row context
6106                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
6107                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
6108                    !!!cp ('t253');                    !!!cp ('t253');
6109  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
6110                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4921  sub _tree_construction_main ($) { Line 6119  sub _tree_construction_main ($) {
6119                my $i;                my $i;
6120                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6121                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
6122                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6123                    !!!cp ('t254');                    !!!cp ('t254');
6124                    $i = $_;                    $i = $_;
6125                    last INSCOPE;                    last INSCOPE;
6126                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6127                    !!!cp ('t255');                    !!!cp ('t255');
6128                    last INSCOPE;                    last INSCOPE;
6129                  }                  }
6130                } # INSCOPE                } # INSCOPE
6131                unless (defined $i) {                unless (defined $i) {
6132                  !!!cp ('t256');                  !!!cp ('t256');
6133                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
6134                                    text => $token->{tag_name}, token => $token);
6135                  ## Ignore the token                  ## Ignore the token
6136                    !!!nack ('t256.1');
6137                  !!!next-token;                  !!!next-token;
6138                  redo B;                  next B;
6139                }                }
6140    
6141                ## Clear back to table body context                ## Clear back to table body context
6142                while (not {                while (not ($self->{open_elements}->[-1]->[1]
6143                  tbody => 1, tfoot => 1, thead => 1, html => 1,                                & TABLE_ROWS_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
6144                  !!!cp ('t257');                  !!!cp ('t257');
6145  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
6146                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4951  sub _tree_construction_main ($) { Line 6148  sub _tree_construction_main ($) {
6148    
6149                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
6150                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
6151                  !!!nack ('t257.1');
6152                !!!next-token;                !!!next-token;
6153                redo B;                next B;
6154              } elsif ({              } elsif ({
6155                        body => 1, caption => 1, col => 1, colgroup => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
6156                        html => 1, td => 1, th => 1,                        html => 1, td => 1, th => 1,
6157                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
6158                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
6159                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
6160                !!!cp ('t258');            !!!cp ('t258');
6161                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
6162                ## Ignore the token                            text => $token->{tag_name}, token => $token);
6163                !!!next-token;            ## Ignore the token
6164                redo B;            !!!nack ('t258.1');
6165               !!!next-token;
6166              next B;
6167          } else {          } else {
6168            !!!cp ('t259');            !!!cp ('t259');
6169            !!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'in table:/',
6170                              text => $token->{tag_name}, token => $token);
6171    
6172            $insert = $insert_to_foster;            $insert = $insert_to_foster;
6173            #            #
6174          }          }
6175        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6176          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6177                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
6178            !!!parse-error (type => 'in body:#eof', token => $token);            !!!parse-error (type => 'in body:#eof', token => $token);
6179            !!!cp ('t259.1');            !!!cp ('t259.1');
# Line 4994  sub _tree_construction_main ($) { Line 6195  sub _tree_construction_main ($) {
6195                unless (length $token->{data}) {                unless (length $token->{data}) {
6196                  !!!cp ('t260');                  !!!cp ('t260');
6197                  !!!next-token;                  !!!next-token;
6198                  redo B;                  next B;
6199                }                }
6200              }              }
6201                            
# Line 5005  sub _tree_construction_main ($) { Line 6206  sub _tree_construction_main ($) {
6206                !!!cp ('t262');                !!!cp ('t262');
6207                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6208                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
6209                  !!!ack ('t262.1');
6210                !!!next-token;                !!!next-token;
6211                redo B;                next B;
6212              } else {              } else {
6213                !!!cp ('t263');                !!!cp ('t263');
6214                #                #
6215              }              }
6216            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
6217              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
6218                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
6219                  !!!cp ('t264');                  !!!cp ('t264');
6220                  !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);                  !!!parse-error (type => 'unmatched end tag',
6221                                    text => 'colgroup', token => $token);
6222                  ## Ignore the token                  ## Ignore the token
6223                  !!!next-token;                  !!!next-token;
6224                  redo B;                  next B;
6225                } else {                } else {
6226                  !!!cp ('t265');                  !!!cp ('t265');
6227                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
6228                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
6229                  !!!next-token;                  !!!next-token;
6230                  redo B;                              next B;            
6231                }                }
6232              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
6233                !!!cp ('t266');                !!!cp ('t266');
6234                !!!parse-error (type => 'unmatched end tag:col', token => $token);                !!!parse-error (type => 'unmatched end tag',
6235                                  text => 'col', token => $token);
6236                ## Ignore the token                ## Ignore the token
6237                !!!next-token;                !!!next-token;
6238                redo B;                next B;
6239              } else {              } else {
6240                !!!cp ('t267');                !!!cp ('t267');
6241                #                #
6242              }              }
6243        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6244          if ($self->{open_elements}->[-1]->[1] eq 'html' or          if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6245              @{$self->{open_elements}} == 1) { # redundant, maybe              @{$self->{open_elements}} == 1) { # redundant, maybe
6246            !!!cp ('t270.2');            !!!cp ('t270.2');
6247            ## Stop parsing.            ## Stop parsing.
# Line 5048  sub _tree_construction_main ($) { Line 6252  sub _tree_construction_main ($) {
6252            pop @{$self->{open_elements}}; # colgroup            pop @{$self->{open_elements}}; # colgroup
6253            $self->{insertion_mode} = IN_TABLE_IM;            $self->{insertion_mode} = IN_TABLE_IM;
6254            ## Reprocess.            ## Reprocess.
6255            redo B;            next B;
6256          }          }
6257        } else {        } else {
6258          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6259        }        }
6260    
6261            ## As if </colgroup>            ## As if </colgroup>
6262            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
6263              !!!cp ('t269');              !!!cp ('t269');
6264  ## TODO: Wrong error type?  ## TODO: Wrong error type?
6265              !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);              !!!parse-error (type => 'unmatched end tag',
6266                                text => 'colgroup', token => $token);
6267              ## Ignore the token              ## Ignore the token
6268                !!!nack ('t269.1');
6269              !!!next-token;              !!!next-token;
6270              redo B;              next B;
6271            } else {            } else {
6272              !!!cp ('t270');              !!!cp ('t270');
6273              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
6274              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
6275                !!!ack-later;
6276              ## reprocess              ## reprocess
6277              redo B;              next B;
6278            }            }
6279      } elsif ($self->{insertion_mode} & SELECT_IMS) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
6280        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
6281          !!!cp ('t271');          !!!cp ('t271');
6282          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
6283          !!!next-token;          !!!next-token;
6284          redo B;          next B;
6285        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6286              if ($token->{tag_name} eq 'option') {          if ($token->{tag_name} eq 'option') {
6287                if ($self->{open_elements}->[-1]->[1] eq 'option') {            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6288                  !!!cp ('t272');              !!!cp ('t272');
6289                  ## As if </option>              ## As if </option>
6290                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6291                } else {            } else {
6292                  !!!cp ('t273');              !!!cp ('t273');
6293                }            }
6294    
6295                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6296                !!!next-token;            !!!nack ('t273.1');
6297                redo B;            !!!next-token;
6298              } elsif ($token->{tag_name} eq 'optgroup') {            next B;
6299                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'optgroup') {
6300                  !!!cp ('t274');            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6301                  ## As if </option>              !!!cp ('t274');
6302                  pop @{$self->{open_elements}};              ## As if </option>
6303                } else {              pop @{$self->{open_elements}};
6304                  !!!cp ('t275');            } else {
6305                }              !!!cp ('t275');
6306              }
6307    
6308                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            if ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
6309                  !!!cp ('t276');              !!!cp ('t276');
6310                  ## As if </optgroup>              ## As if </optgroup>
6311                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6312                } else {            } else {
6313                  !!!cp ('t277');              !!!cp ('t277');
6314                }            }
6315    
6316                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6317                !!!next-token;            !!!nack ('t277.1');
6318                redo B;            !!!next-token;
6319          } elsif ($token->{tag_name} eq 'select' or            next B;
6320                   $token->{tag_name} eq 'input' or          } elsif ({
6321                       select => 1, input => 1, textarea => 1,
6322                     }->{$token->{tag_name}} or
6323                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
6324                    {                    {
6325                     caption => 1, table => 1,                     caption => 1, table => 1,
# Line 5117  sub _tree_construction_main ($) { Line 6327  sub _tree_construction_main ($) {
6327                     tr => 1, td => 1, th => 1,                     tr => 1, td => 1, th => 1,
6328                    }->{$token->{tag_name}})) {                    }->{$token->{tag_name}})) {
6329            ## TODO: The type below is not good - <select> is replaced by </select>            ## TODO: The type below is not good - <select> is replaced by </select>
6330            !!!parse-error (type => 'not closed:select', token => $token);            !!!parse-error (type => 'not closed', text => 'select',
6331                              token => $token);
6332            ## NOTE: As if the token were </select> (<select> case) or            ## NOTE: As if the token were </select> (<select> case) or
6333            ## as if there were </select> (otherwise).            ## as if there were </select> (otherwise).
6334                ## have an element in table scope            ## have an element in table scope
6335                my $i;            my $i;
6336                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6337                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6338                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6339                    !!!cp ('t278');                !!!cp ('t278');
6340                    $i = $_;                $i = $_;
6341                    last INSCOPE;                last INSCOPE;
6342                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6343                            table => 1, html => 1,                !!!cp ('t279');
6344                           }->{$node->[1]}) {                last INSCOPE;
6345                    !!!cp ('t279');              }
6346                    last INSCOPE;            } # INSCOPE
6347                  }            unless (defined $i) {
6348                } # INSCOPE              !!!cp ('t280');
6349                unless (defined $i) {              !!!parse-error (type => 'unmatched end tag',
6350                  !!!cp ('t280');                              text => 'select', token => $token);
6351                  !!!parse-error (type => 'unmatched end tag:select', token => $token);              ## Ignore the token
6352                  ## Ignore the token              !!!nack ('t280.1');
6353                  !!!next-token;              !!!next-token;
6354                  redo B;              next B;
6355                }            }
6356                                
6357                !!!cp ('t281');            !!!cp ('t281');
6358                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6359    
6360                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6361    
6362            if ($token->{tag_name} eq 'select') {            if ($token->{tag_name} eq 'select') {
6363              !!!cp ('t281.2');              !!!nack ('t281.2');
6364              !!!next-token;              !!!next-token;
6365              redo B;              next B;
6366            } else {            } else {
6367              !!!cp ('t281.1');              !!!cp ('t281.1');
6368                !!!ack-later;
6369              ## Reprocess the token.              ## Reprocess the token.
6370              redo B;              next B;
6371            }            }
6372          } else {          } else {
6373            !!!cp ('t282');            !!!cp ('t282');
6374            !!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'in select',
6375                              text => $token->{tag_name}, token => $token);
6376            ## Ignore the token            ## Ignore the token
6377              !!!nack ('t282.1');
6378            !!!next-token;            !!!next-token;
6379            redo B;            next B;
6380          }          }
6381        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6382              if ($token->{tag_name} eq 'optgroup') {          if ($token->{tag_name} eq 'optgroup') {
6383                if ($self->{open_elements}->[-1]->[1] eq 'option' and            if ($self->{open_elements}->[-1]->[1] & OPTION_EL and
6384                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                $self->{open_elements}->[-2]->[1] & OPTGROUP_EL) {
6385                  !!!cp ('t283');              !!!cp ('t283');
6386                  ## As if </option>              ## As if </option>
6387                  splice @{$self->{open_elements}}, -2;              splice @{$self->{open_elements}}, -2;
6388                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            } elsif ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
6389                  !!!cp ('t284');              !!!cp ('t284');
6390                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6391                } else {            } else {
6392                  !!!cp ('t285');              !!!cp ('t285');
6393                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'unmatched end tag',
6394                  ## Ignore the token                              text => $token->{tag_name}, token => $token);
6395                }              ## Ignore the token
6396                !!!next-token;            }
6397                redo B;            !!!nack ('t285.1');
6398              } elsif ($token->{tag_name} eq 'option') {            !!!next-token;
6399                if ($self->{open_elements}->[-1]->[1] eq 'option') {            next B;
6400                  !!!cp ('t286');          } elsif ($token->{tag_name} eq 'option') {
6401                  pop @{$self->{open_elements}};            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6402                } else {              !!!cp ('t286');
6403                  !!!cp ('t287');              pop @{$self->{open_elements}};
6404                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            } else {
6405                  ## Ignore the token              !!!cp ('t287');
6406                }              !!!parse-error (type => 'unmatched end tag',
6407                !!!next-token;                              text => $token->{tag_name}, token => $token);
6408                redo B;              ## Ignore the token
6409              } elsif ($token->{tag_name} eq 'select') {            }
6410                ## have an element in table scope            !!!nack ('t287.1');
6411                my $i;            !!!next-token;
6412                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            next B;
6413                  my $node = $self->{open_elements}->[$_];          } elsif ($token->{tag_name} eq 'select') {
6414                  if ($node->[1] eq $token->{tag_name}) {            ## have an element in table scope
6415                    !!!cp ('t288');            my $i;
6416                    $i = $_;            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6417                    last INSCOPE;              my $node = $self->{open_elements}->[$_];
6418                  } elsif ({              if ($node->[1] & SELECT_EL) {
6419                            table => 1, html => 1,                !!!cp ('t288');
6420                           }->{$node->[1]}) {                $i = $_;
6421                    !!!cp ('t289');                last INSCOPE;
6422                    last INSCOPE;              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6423                  }                !!!cp ('t289');
6424                } # INSCOPE                last INSCOPE;
6425                unless (defined $i) {              }
6426                  !!!cp ('t290');            } # INSCOPE
6427                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            unless (defined $i) {
6428                  ## Ignore the token              !!!cp ('t290');
6429                  !!!next-token;              !!!parse-error (type => 'unmatched end tag',
6430                  redo B;                              text => $token->{tag_name}, token => $token);
6431                }              ## Ignore the token
6432                !!!nack ('t290.1');
6433                !!!next-token;
6434                next B;
6435              }
6436                                
6437                !!!cp ('t291');            !!!cp ('t291');
6438                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6439    
6440                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6441    
6442                !!!next-token;            !!!nack ('t291.1');
6443                redo B;            !!!next-token;
6444              next B;
6445          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
6446                   {                   {
6447                    caption => 1, table => 1, tbody => 1,                    caption => 1, table => 1, tbody => 1,
6448                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
6449                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
6450  ## TODO: The following is wrong?  ## TODO: The following is wrong?
6451                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
6452                              text => $token->{tag_name}, token => $token);
6453                                
6454                ## have an element in table scope            ## have an element in table scope
6455                my $i;            my $i;
6456                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6457                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6458                  if ($node->[1] eq $token->{tag_name}) {              if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6459                    !!!cp ('t292');                !!!cp ('t292');
6460                    $i = $_;                $i = $_;
6461                    last INSCOPE;                last INSCOPE;
6462                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6463                            table => 1, html => 1,                !!!cp ('t293');
6464                           }->{$node->[1]}) {                last INSCOPE;
6465                    !!!cp ('t293');              }
6466                    last INSCOPE;            } # INSCOPE
6467                  }            unless (defined $i) {
6468                } # INSCOPE              !!!cp ('t294');
6469                unless (defined $i) {              ## Ignore the token
6470                  !!!cp ('t294');              !!!nack ('t294.1');
6471                  ## Ignore the token              !!!next-token;
6472                  !!!next-token;              next B;
6473                  redo B;            }
               }  
6474                                
6475                ## As if </select>            ## As if </select>
6476                ## have an element in table scope            ## have an element in table scope
6477                undef $i;            undef $i;
6478                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6479                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6480                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6481                    !!!cp ('t295');                !!!cp ('t295');
6482                    $i = $_;                $i = $_;
6483                    last INSCOPE;                last INSCOPE;
6484                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6485  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
6486                    !!!cp ('t296');                !!!cp ('t296');
6487                    last INSCOPE;                last INSCOPE;
6488                  }              }
6489                } # INSCOPE            } # INSCOPE
6490                unless (defined $i) {            unless (defined $i) {
6491                  !!!cp ('t297');              !!!cp ('t297');
6492  ## TODO: The following error type is correct?  ## TODO: The following error type is correct?
6493                  !!!parse-error (type => 'unmatched end tag:select', token => $token);              !!!parse-error (type => 'unmatched end tag',
6494                  ## Ignore the </select> token                              text => 'select', token => $token);
6495                  !!!next-token; ## TODO: ok?              ## Ignore the </select> token
6496                  redo B;              !!!nack ('t297.1');
6497                }              !!!next-token; ## TODO: ok?
6498                next B;
6499              }
6500                                
6501                !!!cp ('t298');            !!!cp ('t298');
6502                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6503    
6504                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6505    
6506                ## reprocess            !!!ack-later;
6507                redo B;            ## reprocess
6508              next B;
6509          } else {          } else {
6510            !!!cp ('t299');            !!!cp ('t299');
6511            !!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'in select:/',
6512                              text => $token->{tag_name}, token => $token);
6513            ## Ignore the token            ## Ignore the token
6514              !!!nack ('t299.3');
6515            !!!next-token;            !!!next-token;
6516            redo B;            next B;
6517          }          }
6518        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6519          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6520                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
6521            !!!cp ('t299.1');            !!!cp ('t299.1');
6522            !!!parse-error (type => 'in body:#eof', token => $token);            !!!parse-error (type => 'in body:#eof', token => $token);
# Line 5319  sub _tree_construction_main ($) { Line 6541  sub _tree_construction_main ($) {
6541            unless (length $token->{data}) {            unless (length $token->{data}) {
6542              !!!cp ('t300');              !!!cp ('t300');
6543              !!!next-token;              !!!next-token;
6544              redo B;              next B;
6545            }            }
6546          }          }
6547                    
6548          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6549            !!!cp ('t301');            !!!cp ('t301');
6550            !!!parse-error (type => 'after html:#character', token => $token);            !!!parse-error (type => 'after html:#text', token => $token);
6551    
6552            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6553          } else {          } else {
# Line 5333  sub _tree_construction_main ($) { Line 6555  sub _tree_construction_main ($) {
6555          }          }
6556                    
6557          ## "after body" insertion mode          ## "after body" insertion mode
6558          !!!parse-error (type => 'after body:#character', token => $token);          !!!parse-error (type => 'after body:#text', token => $token);
6559    
6560          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6561          ## reprocess          ## reprocess
6562          redo B;          next B;
6563        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6564          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6565            !!!cp ('t303');            !!!cp ('t303');
6566            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'after html',
6567                              text => $token->{tag_name}, token => $token);
6568                        
6569            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6570          } else {          } else {
# Line 5349  sub _tree_construction_main ($) { Line 6572  sub _tree_construction_main ($) {
6572          }          }
6573    
6574          ## "after body" insertion mode          ## "after body" insertion mode
6575          !!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'after body',
6576                            text => $token->{tag_name}, token => $token);
6577    
6578          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6579            !!!ack-later;
6580          ## reprocess          ## reprocess
6581          redo B;          next B;
6582        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6583          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6584            !!!cp ('t305');            !!!cp ('t305');
6585            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'after html:/',
6586                              text => $token->{tag_name}, token => $token);
6587                        
6588            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6589            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
# Line 5369  sub _tree_construction_main ($) { Line 6595  sub _tree_construction_main ($) {
6595          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
6596            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
6597              !!!cp ('t307');              !!!cp ('t307');
6598              !!!parse-error (type => 'unmatched end tag:html', token => $token);              !!!parse-error (type => 'unmatched end tag',
6599                                text => 'html', token => $token);
6600              ## Ignore the token              ## Ignore the token
6601              !!!next-token;              !!!next-token;
6602              redo B;              next B;
6603            } else {            } else {
6604              !!!cp ('t308');              !!!cp ('t308');
6605              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
6606              !!!next-token;              !!!next-token;
6607              redo B;              next B;
6608            }            }
6609          } else {          } else {
6610            !!!cp ('t309');            !!!cp ('t309');
6611            !!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'after body:/',
6612                              text => $token->{tag_name}, token => $token);
6613    
6614            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
6615            ## reprocess            ## reprocess
6616            redo B;            next B;
6617          }          }
6618        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6619          !!!cp ('t309.2');          !!!cp ('t309.2');
# Line 5402  sub _tree_construction_main ($) { Line 6630  sub _tree_construction_main ($) {
6630            unless (length $token->{data}) {            unless (length $token->{data}) {
6631              !!!cp ('t310');              !!!cp ('t310');
6632              !!!next-token;              !!!next-token;
6633              redo B;              next B;
6634            }            }
6635          }          }
6636                    
6637          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
6638            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6639              !!!cp ('t311');              !!!cp ('t311');
6640              !!!parse-error (type => 'in frameset:#character', token => $token);              !!!parse-error (type => 'in frameset:#text', token => $token);
6641            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6642              !!!cp ('t312');              !!!cp ('t312');
6643              !!!parse-error (type => 'after frameset:#character', token => $token);              !!!parse-error (type => 'after frameset:#text', token => $token);
6644            } else { # "after html frameset"            } else { # "after after frameset"
6645              !!!cp ('t313');              !!!cp ('t313');
6646              !!!parse-error (type => 'after html:#character', token => $token);              !!!parse-error (type => 'after html:#text', token => $token);
   
             $self->{insertion_mode} = AFTER_FRAMESET_IM;  
             ## Reprocess in the "after frameset" insertion mode.  
             !!!parse-error (type => 'after frameset:#character', token => $token);  
6647            }            }
6648                        
6649            ## Ignore the token.            ## Ignore the token.
# Line 5430  sub _tree_construction_main ($) { Line 6654  sub _tree_construction_main ($) {
6654              !!!cp ('t315');              !!!cp ('t315');
6655              !!!next-token;              !!!next-token;
6656            }            }
6657            redo B;            next B;
6658          }          }
6659                    
6660          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
6661        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
         if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {  
           !!!cp ('t316');  
           !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);  
   
           $self->{insertion_mode} = AFTER_FRAMESET_IM;  
           ## Process in the "after frameset" insertion mode.  
         } else {  
           !!!cp ('t317');  
         }  
   
6662          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6663              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6664            !!!cp ('t318');            !!!cp ('t318');
6665            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6666              !!!nack ('t318.1');
6667            !!!next-token;            !!!next-token;
6668            redo B;            next B;
6669          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
6670                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
6671            !!!cp ('t319');            !!!cp ('t319');
6672            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6673            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6674              !!!ack ('t319.1');
6675            !!!next-token;            !!!next-token;
6676            redo B;            next B;
6677          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
6678            !!!cp ('t320');            !!!cp ('t320');
6679            ## NOTE: As if in body.            ## NOTE: As if in head.
6680            $parse_rcdata->(CDATA_CONTENT_MODEL);            $parse_rcdata->(CDATA_CONTENT_MODEL);
6681            redo B;            next B;
6682    
6683              ## NOTE: |<!DOCTYPE HTML><frameset></frameset></html><noframes></noframes>|
6684              ## has no parse error.
6685          } else {          } else {
6686            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6687              !!!cp ('t321');              !!!cp ('t321');
6688              !!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'in frameset',
6689            } else {                              text => $token->{tag_name}, token => $token);
6690              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6691              !!!cp ('t322');              !!!cp ('t322');
6692              !!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'after frameset',
6693                                text => $token->{tag_name}, token => $token);
6694              } else { # "after after frameset"
6695                !!!cp ('t322.2');
6696                !!!parse-error (type => 'after after frameset',
6697                                text => $token->{tag_name}, token => $token);
6698            }            }
6699            ## Ignore the token            ## Ignore the token
6700              !!!nack ('t322.1');
6701            !!!next-token;            !!!next-token;
6702            redo B;            next B;
6703          }          }
6704        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
         if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {  
           !!!cp ('t323');  
           !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);  
   
           $self->{insertion_mode} = AFTER_FRAMESET_IM;  
           ## Process in the "after frameset" insertion mode.  
         } else {  
           !!!cp ('t324');  
         }  
   
6705          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6706              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6707            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6708                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
6709              !!!cp ('t325');              !!!cp ('t325');
6710              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'unmatched end tag',
6711                                text => $token->{tag_name}, token => $token);
6712              ## Ignore the token              ## Ignore the token
6713              !!!next-token;              !!!next-token;
6714            } else {            } else {
# Line 5501  sub _tree_construction_main ($) { Line 6718  sub _tree_construction_main ($) {
6718            }            }
6719    
6720            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
6721                $self->{open_elements}->[-1]->[1] ne 'frameset') {                not ($self->{open_elements}->[-1]->[1] & FRAMESET_EL)) {
6722              !!!cp ('t327');              !!!cp ('t327');
6723              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6724            } else {            } else {
6725              !!!cp ('t328');              !!!cp ('t328');
6726            }            }
6727            redo B;            next B;
6728          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
6729                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
6730            !!!cp ('t329');            !!!cp ('t329');
6731            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
6732            !!!next-token;            !!!next-token;
6733            redo B;            next B;
6734          } else {          } else {
6735            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6736              !!!cp ('t330');              !!!cp ('t330');
6737              !!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'in frameset:/',
6738            } else {                              text => $token->{tag_name}, token => $token);
6739              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6740                !!!cp ('t330.1');
6741                !!!parse-error (type => 'after frameset:/',
6742                                text => $token->{tag_name}, token => $token);
6743              } else { # "after after html"
6744              !!!cp ('t331');              !!!cp ('t331');
6745              !!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'after after frameset:/',
6746                                text => $token->{tag_name}, token => $token);
6747            }            }
6748            ## Ignore the token            ## Ignore the token
6749            !!!next-token;            !!!next-token;
6750            redo B;            next B;
6751          }          }
6752        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6753          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6754                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
6755            !!!cp ('t331.1');            !!!cp ('t331.1');
6756            !!!parse-error (type => 'in body:#eof', token => $token);            !!!parse-error (type => 'in body:#eof', token => $token);
# Line 5552  sub _tree_construction_main ($) { Line 6775  sub _tree_construction_main ($) {
6775          !!!cp ('t332');          !!!cp ('t332');
6776          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6777          $script_start_tag->();          $script_start_tag->();
6778          redo B;          next B;
6779        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
6780          !!!cp ('t333');          !!!cp ('t333');
6781          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6782          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
6783          redo B;          next B;
6784        } elsif ({        } elsif ({
6785                  base => 1, link => 1,                  base => 1, link => 1,
6786                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 5565  sub _tree_construction_main ($) { Line 6788  sub _tree_construction_main ($) {
6788          ## NOTE: This is an "as if in head" code clone, only "-t" differs          ## NOTE: This is an "as if in head" code clone, only "-t" differs
6789          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6790          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
6791            !!!ack ('t334.1');
6792          !!!next-token;          !!!next-token;
6793          redo B;          next B;
6794        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
6795          ## NOTE: This is an "as if in head" code clone, only "-t" differs          ## NOTE: This is an "as if in head" code clone, only "-t" differs
6796          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6797          my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          my $meta_el = pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
6798    
6799          unless ($self->{confident}) {          unless ($self->{confident}) {
6800            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) {
6801              !!!cp ('t335');              !!!cp ('t335');
6802                ## NOTE: Whether the encoding is supported or not is handled
6803                ## in the {change_encoding} callback.
6804              $self->{change_encoding}              $self->{change_encoding}
6805                  ->($self, $token->{attributes}->{charset}->{value}, $token);                  ->($self, $token->{attributes}->{charset}->{value}, $token);
6806                            
# Line 5583  sub _tree_construction_main ($) { Line 6809  sub _tree_construction_main ($) {
6809                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
6810                                           ->{has_reference});                                           ->{has_reference});
6811            } elsif ($token->{attributes}->{content}) {            } elsif ($token->{attributes}->{content}) {
             ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
6812              if ($token->{attributes}->{content}->{value}              if ($token->{attributes}->{content}->{value}
6813                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                  =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
6814                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
6815                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
6816                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20\x3B]*))/x) {
6817                !!!cp ('t336');                !!!cp ('t336');
6818                  ## NOTE: Whether the encoding is supported or not is handled
6819                  ## in the {change_encoding} callback.
6820                $self->{change_encoding}                $self->{change_encoding}
6821                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
6822                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
# Line 5615  sub _tree_construction_main ($) { Line 6842  sub _tree_construction_main ($) {
6842            }            }
6843          }          }
6844    
6845            !!!ack ('t338.1');
6846          !!!next-token;          !!!next-token;
6847          redo B;          next B;
6848        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
6849          !!!cp ('t341');          !!!cp ('t341');
6850          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6851          $parse_rcdata->(RCDATA_CONTENT_MODEL);          $parse_rcdata->(RCDATA_CONTENT_MODEL);
6852          redo B;          next B;
6853        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
6854          !!!parse-error (type => 'in body:body', token => $token);          !!!parse-error (type => 'in body', text => 'body', token => $token);
6855                                
6856          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
6857              $self->{open_elements}->[1]->[1] ne 'body') {              not ($self->{open_elements}->[1]->[1] & BODY_EL)) {
6858            !!!cp ('t342');            !!!cp ('t342');
6859            ## Ignore the token            ## Ignore the token
6860          } else {          } else {
# Line 5640  sub _tree_construction_main ($) { Line 6868  sub _tree_construction_main ($) {
6868              }              }
6869            }            }
6870          }          }
6871            !!!nack ('t343.1');
6872          !!!next-token;          !!!next-token;
6873          redo B;          next B;
6874        } elsif ({        } elsif ({
6875                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6876                  div => 1, dl => 1, fieldset => 1,                  div => 1, dl => 1, fieldset => 1,
# Line 5656  sub _tree_construction_main ($) { Line 6885  sub _tree_construction_main ($) {
6885            !!!cp ('t350');            !!!cp ('t350');
6886            !!!parse-error (type => 'in form:form', token => $token);            !!!parse-error (type => 'in form:form', token => $token);
6887            ## Ignore the token            ## Ignore the token
6888              !!!nack ('t350.1');
6889            !!!next-token;            !!!next-token;
6890            redo B;            next B;
6891          }          }
6892    
6893          ## has a p element in scope          ## has a p element in scope
6894          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6895            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6896              !!!cp ('t344');              !!!cp ('t344');
6897              !!!back-token;              !!!back-token; # <form>
6898              $token = {type => END_TAG_TOKEN, tag_name => 'p',              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6899                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
6900              redo B;              next B;
6901            } elsif ({            } elsif ($_->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6902              !!!cp ('t345');              !!!cp ('t345');
6903              last INSCOPE;              last INSCOPE;
6904            }            }
# Line 5679  sub _tree_construction_main ($) { Line 6906  sub _tree_construction_main ($) {
6906                        
6907          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6908          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
6909              !!!nack ('t346.1');
6910            !!!next-token;            !!!next-token;
6911            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
6912              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
# Line 5695  sub _tree_construction_main ($) { Line 6923  sub _tree_construction_main ($) {
6923            !!!cp ('t347.1');            !!!cp ('t347.1');
6924            $self->{form_element} = $self->{open_elements}->[-1]->[0];            $self->{form_element} = $self->{open_elements}->[-1]->[0];
6925    
6926              !!!nack ('t347.2');
6927            !!!next-token;            !!!next-token;
6928          } elsif ($token->{tag_name} eq 'table') {          } elsif ($token->{tag_name} eq 'table') {
6929            !!!cp ('t382');            !!!cp ('t382');
# Line 5702  sub _tree_construction_main ($) { Line 6931  sub _tree_construction_main ($) {
6931                        
6932            $self->{insertion_mode} = IN_TABLE_IM;            $self->{insertion_mode} = IN_TABLE_IM;
6933    
6934              !!!nack ('t382.1');
6935            !!!next-token;            !!!next-token;
6936          } elsif ($token->{tag_name} eq 'hr') {          } elsif ($token->{tag_name} eq 'hr') {
6937            !!!cp ('t386');            !!!cp ('t386');
6938            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6939                    
6940              !!!nack ('t386.1');
6941            !!!next-token;            !!!next-token;
6942          } else {          } else {
6943            !!!cp ('t347');            !!!nack ('t347.1');
6944            !!!next-token;            !!!next-token;
6945          }          }
6946          redo B;          next B;
6947        } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {        } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {
6948          ## has a p element in scope          ## has a p element in scope
6949          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6950            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6951              !!!cp ('t353');              !!!cp ('t353');
6952              !!!back-token;              !!!back-token; # <x>
6953              $token = {type => END_TAG_TOKEN, tag_name => 'p',              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6954                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
6955              redo B;              next B;
6956            } elsif ({            } elsif ($_->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6957              !!!cp ('t354');              !!!cp ('t354');
6958              last INSCOPE;              last INSCOPE;
6959            }            }
# Line 5739  sub _tree_construction_main ($) { Line 6967  sub _tree_construction_main ($) {
6967                            dd => {dt => 1, dd => 1}}->{$token->{tag_name}};                            dd => {dt => 1, dd => 1}}->{$token->{tag_name}};
6968          LI: {          LI: {
6969            ## Step 2            ## Step 2
6970            if ($li_or_dtdd->{$node->[1]}) {            if ($li_or_dtdd->{$node->[0]->manakai_local_name}) {
6971              if ($i != -1) {              if ($i != -1) {
6972                !!!cp ('t355');                !!!cp ('t355');
6973                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'not closed',
6974                                $self->{open_elements}->[-1]->[1], token => $token);                                text => $self->{open_elements}->[-1]->[0]
6975                                      ->manakai_local_name,
6976                                  token => $token);
6977              } else {              } else {
6978                !!!cp ('t356');                !!!cp ('t356');
6979              }              }
# Line 5754  sub _tree_construction_main ($) { Line 6984  sub _tree_construction_main ($) {
6984            }            }
6985                        
6986            ## Step 3            ## Step 3
6987            if (not $formatting_category->{$node->[1]} and            if (not ($node->[1] & FORMATTING_EL) and
6988                #not $phrasing_category->{$node->[1]} and                #not $phrasing_category->{$node->[1]} and
6989                ($special_category->{$node->[1]} or                ($node->[1] & SPECIAL_EL or
6990                 $scoping_category->{$node->[1]}) and                 $node->[1] & SCOPING_EL) and
6991                $node->[1] ne 'address' and $node->[1] ne 'div') {                not ($node->[1] & ADDRESS_EL) and
6992                  not ($node->[1] & DIV_EL)) {
6993              !!!cp ('t358');              !!!cp ('t358');
6994              last LI;              last LI;
6995            }            }
# Line 5771  sub _tree_construction_main ($) { Line 7002  sub _tree_construction_main ($) {
7002          } # LI          } # LI
7003                        
7004          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7005            !!!nack ('t359.1');
7006          !!!next-token;          !!!next-token;
7007          redo B;          next B;
7008        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
7009          ## has a p element in scope          ## has a p element in scope
7010          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
7011            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
7012              !!!cp ('t367');              !!!cp ('t367');
7013              !!!back-token;              !!!back-token; # <plaintext>
7014              $token = {type => END_TAG_TOKEN, tag_name => 'p',              $token = {type => END_TAG_TOKEN, tag_name => 'p',
7015                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7016              redo B;              next B;
7017            } elsif ({            } elsif ($_->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
7018              !!!cp ('t368');              !!!cp ('t368');
7019              last INSCOPE;              last INSCOPE;
7020            }            }
# Line 5795  sub _tree_construction_main ($) { Line 7024  sub _tree_construction_main ($) {
7024                        
7025          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
7026                        
7027            !!!nack ('t368.1');
7028          !!!next-token;          !!!next-token;
7029          redo B;          next B;
7030        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
7031          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
7032            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
7033            if ($node->[1] eq 'a') {            if ($node->[1] & A_EL) {
7034              !!!cp ('t371');              !!!cp ('t371');
7035              !!!parse-error (type => 'in a:a', token => $token);              !!!parse-error (type => 'in a:a', token => $token);
7036                            
7037              !!!back-token;              !!!back-token; # <a>
7038              $token = {type => END_TAG_TOKEN, tag_name => 'a',              $token = {type => END_TAG_TOKEN, tag_name => 'a',
7039                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7040              $formatting_end_tag->($token);              $formatting_end_tag->($token);
# Line 5835  sub _tree_construction_main ($) { Line 7065  sub _tree_construction_main ($) {
7065          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7066          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
7067    
7068            !!!nack ('t374.1');
7069          !!!next-token;          !!!next-token;
7070          redo B;          next B;
7071        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
7072          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7073    
7074          ## has a |nobr| element in scope          ## has a |nobr| element in scope
7075          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7076            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7077            if ($node->[1] eq 'nobr') {            if ($node->[1] & NOBR_EL) {
7078              !!!cp ('t376');              !!!cp ('t376');
7079              !!!parse-error (type => 'in nobr:nobr', token => $token);              !!!parse-error (type => 'in nobr:nobr', token => $token);
7080              !!!back-token;              !!!back-token; # <nobr>
7081              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
7082                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7083              redo B;              next B;
7084            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7085              !!!cp ('t377');              !!!cp ('t377');
7086              last INSCOPE;              last INSCOPE;
7087            }            }
# Line 5862  sub _tree_construction_main ($) { Line 7090  sub _tree_construction_main ($) {
7090          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7091          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
7092                    
7093            !!!nack ('t377.1');
7094          !!!next-token;          !!!next-token;
7095          redo B;          next B;
7096        } elsif ($token->{tag_name} eq 'button') {        } elsif ($token->{tag_name} eq 'button') {
7097          ## has a button element in scope          ## has a button element in scope
7098          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7099            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7100            if ($node->[1] eq 'button') {            if ($node->[1] & BUTTON_EL) {
7101              !!!cp ('t378');              !!!cp ('t378');
7102              !!!parse-error (type => 'in button:button', token => $token);              !!!parse-error (type => 'in button:button', token => $token);
7103              !!!back-token;              !!!back-token; # <button>
7104              $token = {type => END_TAG_TOKEN, tag_name => 'button',              $token = {type => END_TAG_TOKEN, tag_name => 'button',
7105                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7106              redo B;              next B;
7107            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7108              !!!cp ('t379');              !!!cp ('t379');
7109              last INSCOPE;              last INSCOPE;
7110            }            }
# Line 5892  sub _tree_construction_main ($) { Line 7118  sub _tree_construction_main ($) {
7118    
7119          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
7120    
7121            !!!nack ('t379.1');
7122          !!!next-token;          !!!next-token;
7123          redo B;          next B;
7124        } elsif ({        } elsif ({
7125                  xmp => 1,                  xmp => 1,
7126                  iframe => 1,                  iframe => 1,
7127                  noembed => 1,                  noembed => 1,
7128                  noframes => 1,                  noframes => 1, ## NOTE: This is an "as if in head" code clone.
7129                  noscript => 0, ## TODO: 1 if scripting is enabled                  noscript => 0, ## TODO: 1 if scripting is enabled
7130                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7131          if ($token->{tag_name} eq 'xmp') {          if ($token->{tag_name} eq 'xmp') {
# Line 5909  sub _tree_construction_main ($) { Line 7136  sub _tree_construction_main ($) {
7136          }          }
7137          ## NOTE: There is an "as if in body" code clone.          ## NOTE: There is an "as if in body" code clone.
7138          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
7139          redo B;          next B;
7140        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
7141          !!!parse-error (type => 'isindex', token => $token);          !!!parse-error (type => 'isindex', token => $token);
7142                    
7143          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
7144            !!!cp ('t389');            !!!cp ('t389');
7145            ## Ignore the token            ## Ignore the token
7146              !!!nack ('t389'); ## NOTE: Not acknowledged.
7147            !!!next-token;            !!!next-token;
7148            redo B;            next B;
7149          } else {          } else {
7150              !!!ack ('t391.1');
7151    
7152            my $at = $token->{attributes};            my $at = $token->{attributes};
7153            my $form_attrs;            my $form_attrs;
7154            $form_attrs->{action} = $at->{action} if $at->{action};            $form_attrs->{action} = $at->{action} if $at->{action};
# Line 5962  sub _tree_construction_main ($) { Line 7192  sub _tree_construction_main ($) {
7192                           line => $token->{line}, column => $token->{column}},                           line => $token->{line}, column => $token->{column}},
7193                          {type => END_TAG_TOKEN, tag_name => 'form',                          {type => END_TAG_TOKEN, tag_name => 'form',
7194                           line => $token->{line}, column => $token->{column}};                           line => $token->{line}, column => $token->{column}};
           $token = shift @tokens;  
7195            !!!back-token (@tokens);            !!!back-token (@tokens);
7196            redo B;            !!!next-token;
7197              next B;
7198          }          }
7199        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
7200          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
7201          my $el;          my $el;
7202          !!!create-element ($el, $token->{tag_name}, $token->{attributes}, $token);          !!!create-element ($el, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
7203                    
7204          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
7205          $self->{content_model} = RCDATA_CONTENT_MODEL;          $self->{content_model} = RCDATA_CONTENT_MODEL;
# Line 5978  sub _tree_construction_main ($) { Line 7208  sub _tree_construction_main ($) {
7208          $insert->($el);          $insert->($el);
7209                    
7210          my $text = '';          my $text = '';
7211            !!!nack ('t392.1');
7212          !!!next-token;          !!!next-token;
7213          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
7214            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
# Line 6008  sub _tree_construction_main ($) { Line 7239  sub _tree_construction_main ($) {
7239            ## Ignore the token            ## Ignore the token
7240          } else {          } else {
7241            !!!cp ('t398');            !!!cp ('t398');
7242            !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);            !!!parse-error (type => 'in RCDATA:#eof', token => $token);
7243          }          }
7244          !!!next-token;          !!!next-token;
7245            next B;
7246          } elsif ($token->{tag_name} eq 'rt' or
7247                   $token->{tag_name} eq 'rp') {
7248            ## has a |ruby| element in scope
7249            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7250              my $node = $self->{open_elements}->[$_];
7251              if ($node->[1] & RUBY_EL) {
7252                !!!cp ('t398.1');
7253                ## generate implied end tags
7254                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
7255                  !!!cp ('t398.2');
7256                  pop @{$self->{open_elements}};
7257                }
7258                unless ($self->{open_elements}->[-1]->[1] & RUBY_EL) {
7259                  !!!cp ('t398.3');
7260                  !!!parse-error (type => 'not closed',
7261                                  text => $self->{open_elements}->[-1]->[0]
7262                                      ->manakai_local_name,
7263                                  token => $token);
7264                  pop @{$self->{open_elements}}
7265                      while not $self->{open_elements}->[-1]->[1] & RUBY_EL;
7266                }
7267                last INSCOPE;
7268              } elsif ($node->[1] & SCOPING_EL) {
7269                !!!cp ('t398.4');
7270                last INSCOPE;
7271              }
7272            } # INSCOPE
7273    
7274            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7275    
7276            !!!nack ('t398.5');
7277            !!!next-token;
7278          redo B;          redo B;
7279          } elsif ($token->{tag_name} eq 'math' or
7280                   $token->{tag_name} eq 'svg') {
7281            $reconstruct_active_formatting_elements->($insert_to_current);
7282    
7283            ## "Adjust MathML attributes" ('math' only) - done in insert-element-f
7284    
7285            ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
7286    
7287            ## "adjust foreign attributes" - done in insert-element-f
7288            
7289            !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
7290            
7291            if ($self->{self_closing}) {
7292              pop @{$self->{open_elements}};
7293              !!!ack ('t398.1');
7294            } else {
7295              !!!cp ('t398.2');
7296              $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
7297              ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
7298              ## mode, "in body" (not "in foreign content") secondary insertion
7299              ## mode, maybe.
7300            }
7301    
7302            !!!next-token;
7303            next B;
7304        } elsif ({        } elsif ({
7305                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7306                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 6019  sub _tree_construction_main ($) { Line 7308  sub _tree_construction_main ($) {
7308                  thead => 1, tr => 1,                  thead => 1, tr => 1,
7309                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7310          !!!cp ('t401');          !!!cp ('t401');
7311          !!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'in body',
7312                            text => $token->{tag_name}, token => $token);
7313          ## Ignore the token          ## Ignore the token
7314            !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
7315          !!!next-token;          !!!next-token;
7316          redo B;          next B;
7317                    
7318          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
7319        } else {        } else {
# Line 6044  sub _tree_construction_main ($) { Line 7335  sub _tree_construction_main ($) {
7335              }->{$token->{tag_name}}) {              }->{$token->{tag_name}}) {
7336            !!!cp ('t380');            !!!cp ('t380');
7337            push @$active_formatting_elements, ['#marker', ''];            push @$active_formatting_elements, ['#marker', ''];
7338              !!!nack ('t380.1');
7339          } elsif ({          } elsif ({
7340                    b => 1, big => 1, em => 1, font => 1, i => 1,                    b => 1, big => 1, em => 1, font => 1, i => 1,
7341                    s => 1, small => 1, strile => 1,                    s => 1, small => 1, strile => 1,
# Line 6051  sub _tree_construction_main ($) { Line 7343  sub _tree_construction_main ($) {
7343                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
7344            !!!cp ('t375');            !!!cp ('t375');
7345            push @$active_formatting_elements, $self->{open_elements}->[-1];            push @$active_formatting_elements, $self->{open_elements}->[-1];
7346              !!!nack ('t375.1');
7347          } elsif ($token->{tag_name} eq 'input') {          } elsif ($token->{tag_name} eq 'input') {
7348            !!!cp ('t388');            !!!cp ('t388');
7349            ## TODO: associate with $self->{form_element} if defined            ## TODO: associate with $self->{form_element} if defined
7350            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
7351              !!!ack ('t388.2');
7352          } elsif ({          } elsif ({
7353                    area => 1, basefont => 1, bgsound => 1, br => 1,                    area => 1, basefont => 1, bgsound => 1, br => 1,
7354                    embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                    embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
# Line 6062  sub _tree_construction_main ($) { Line 7356  sub _tree_construction_main ($) {
7356                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
7357            !!!cp ('t388.1');            !!!cp ('t388.1');
7358            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
7359              !!!ack ('t388.3');
7360          } elsif ($token->{tag_name} eq 'select') {          } elsif ($token->{tag_name} eq 'select') {
7361            ## TODO: associate with $self->{form_element} if defined            ## TODO: associate with $self->{form_element} if defined
7362                    
# Line 6074  sub _tree_construction_main ($) { Line 7369  sub _tree_construction_main ($) {
7369              !!!cp ('t400.2');              !!!cp ('t400.2');
7370              $self->{insertion_mode} = IN_SELECT_IM;              $self->{insertion_mode} = IN_SELECT_IM;
7371            }            }
7372              !!!nack ('t400.3');
7373          } else {          } else {
7374            !!!cp ('t402');            !!!nack ('t402');
7375          }          }
7376                    
7377          !!!next-token;          !!!next-token;
7378          redo B;          next B;
7379        }        }
7380      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
7381        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
# Line 6087  sub _tree_construction_main ($) { Line 7383  sub _tree_construction_main ($) {
7383          my $i;          my $i;
7384          INSCOPE: {          INSCOPE: {
7385            for (reverse @{$self->{open_elements}}) {            for (reverse @{$self->{open_elements}}) {
7386              if ($_->[1] eq 'body') {              if ($_->[1] & BODY_EL) {
7387                !!!cp ('t405');                !!!cp ('t405');
7388                $i = $_;                $i = $_;
7389                last INSCOPE;                last INSCOPE;
7390              } elsif ({              } elsif ($_->[1] & SCOPING_EL) {
                       applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                       button => 1, marquee => 1, object => 1, html => 1,  
                      }->{$_->[1]}) {  
7391                !!!cp ('t405.1');                !!!cp ('t405.1');
7392                last;                last;
7393              }              }
7394            }            }
7395    
7396            !!!parse-error (type => 'start tag not allowed',            !!!parse-error (type => 'start tag not allowed',
7397                            value => $token->{tag_name}, token => $token);                            text => $token->{tag_name}, token => $token);
7398            ## NOTE: Ignore the token.            ## NOTE: Ignore the token.
7399            !!!next-token;            !!!next-token;
7400            redo B;            next B;
7401          } # INSCOPE          } # INSCOPE
7402    
7403          for (@{$self->{open_elements}}) {          for (@{$self->{open_elements}}) {
7404            unless ({            unless ($_->[1] & ALL_END_TAG_OPTIONAL_EL) {
                    dd => 1, dt => 1, li => 1, p => 1, td => 1,  
                    th => 1, tr => 1, body => 1, html => 1,  
                    tbody => 1, tfoot => 1, thead => 1,  
                   }->{$_->[1]}) {  
7405              !!!cp ('t403');              !!!cp ('t403');
7406              !!!parse-error (type => 'not closed:'.$_->[1], token => $token);              !!!parse-error (type => 'not closed',
7407                                text => $_->[0]->manakai_local_name,
7408                                token => $token);
7409              last;              last;
7410            } else {            } else {
7411              !!!cp ('t404');              !!!cp ('t404');
# Line 6123  sub _tree_construction_main ($) { Line 7414  sub _tree_construction_main ($) {
7414    
7415          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
7416          !!!next-token;          !!!next-token;
7417          redo B;          next B;
7418        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
7419          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {          ## TODO: Update this code.  It seems that the code below is not
7420            ## up-to-date, though it has same effect as speced.
7421            if (@{$self->{open_elements}} > 1 and
7422                $self->{open_elements}->[1]->[1] & BODY_EL) {
7423            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
7424            if ($self->{open_elements}->[-1]->[1] ne 'body') {            unless ($self->{open_elements}->[-1]->[1] & BODY_EL) {
7425              !!!cp ('t406');              !!!cp ('t406');
7426              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7427                                text => $self->{open_elements}->[1]->[0]
7428                                    ->manakai_local_name,
7429                                token => $token);
7430            } else {            } else {
7431              !!!cp ('t407');              !!!cp ('t407');
7432            }            }
7433            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
7434            ## reprocess            ## reprocess
7435            redo B;            next B;
7436          } else {          } else {
7437            !!!cp ('t408');            !!!cp ('t408');
7438            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7439                              text => $token->{tag_name}, token => $token);
7440            ## Ignore the token            ## Ignore the token
7441            !!!next-token;            !!!next-token;
7442            redo B;            next B;
7443          }          }
7444        } elsif ({        } elsif ({
7445                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
# Line 6154  sub _tree_construction_main ($) { Line 7452  sub _tree_construction_main ($) {
7452          my $i;          my $i;
7453          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7454            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7455            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7456              !!!cp ('t410');              !!!cp ('t410');
7457              $i = $_;              $i = $_;
7458              last INSCOPE;              last INSCOPE;
7459            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7460              !!!cp ('t411');              !!!cp ('t411');
7461              last INSCOPE;              last INSCOPE;
7462            }            }
# Line 6169  sub _tree_construction_main ($) { Line 7464  sub _tree_construction_main ($) {
7464    
7465          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7466            !!!cp ('t413');            !!!cp ('t413');
7467            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7468                              text => $token->{tag_name}, token => $token);
7469              ## NOTE: Ignore the token.
7470          } else {          } else {
7471            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7472            while ({            while ({
7473                      ## END_TAG_OPTIONAL_EL
7474                    dd => ($token->{tag_name} ne 'dd'),                    dd => ($token->{tag_name} ne 'dd'),
7475                    dt => ($token->{tag_name} ne 'dt'),                    dt => ($token->{tag_name} ne 'dt'),
7476                    li => ($token->{tag_name} ne 'li'),                    li => ($token->{tag_name} ne 'li'),
7477                    p => 1,                    p => 1,
7478                   }->{$self->{open_elements}->[-1]->[1]}) {                    rt => 1,
7479                      rp => 1,
7480                     }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
7481              !!!cp ('t409');              !!!cp ('t409');
7482              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7483            }            }
7484    
7485            ## Step 2.            ## Step 2.
7486            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7487                      ne $token->{tag_name}) {
7488              !!!cp ('t412');              !!!cp ('t412');
7489              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7490                                text => $self->{open_elements}->[-1]->[0]
7491                                    ->manakai_local_name,
7492                                token => $token);
7493            } else {            } else {
7494              !!!cp ('t414');              !!!cp ('t414');
7495            }            }
# Line 6200  sub _tree_construction_main ($) { Line 7504  sub _tree_construction_main ($) {
7504                }->{$token->{tag_name}};                }->{$token->{tag_name}};
7505          }          }
7506          !!!next-token;          !!!next-token;
7507          redo B;          next B;
7508        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
7509          undef $self->{form_element};          undef $self->{form_element};
7510    
# Line 6208  sub _tree_construction_main ($) { Line 7512  sub _tree_construction_main ($) {
7512          my $i;          my $i;
7513          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7514            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7515            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & FORM_EL) {
7516              !!!cp ('t418');              !!!cp ('t418');
7517              $i = $_;              $i = $_;
7518              last INSCOPE;              last INSCOPE;
7519            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7520              !!!cp ('t419');              !!!cp ('t419');
7521              last INSCOPE;              last INSCOPE;
7522            }            }
# Line 6223  sub _tree_construction_main ($) { Line 7524  sub _tree_construction_main ($) {
7524    
7525          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7526            !!!cp ('t421');            !!!cp ('t421');
7527            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7528                              text => $token->{tag_name}, token => $token);
7529              ## NOTE: Ignore the token.
7530          } else {          } else {
7531            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7532            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7533              !!!cp ('t417');              !!!cp ('t417');
7534              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7535            }            }
7536                        
7537            ## Step 2.            ## Step 2.
7538            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7539                      ne $token->{tag_name}) {
7540              !!!cp ('t417.1');              !!!cp ('t417.1');
7541              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7542                                text => $self->{open_elements}->[-1]->[0]
7543                                    ->manakai_local_name,
7544                                token => $token);
7545            } else {            } else {
7546              !!!cp ('t420');              !!!cp ('t420');
7547            }              }  
# Line 6246  sub _tree_construction_main ($) { Line 7551  sub _tree_construction_main ($) {
7551          }          }
7552    
7553          !!!next-token;          !!!next-token;
7554          redo B;          next B;
7555        } elsif ({        } elsif ({
7556                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
7557                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 6254  sub _tree_construction_main ($) { Line 7559  sub _tree_construction_main ($) {
7559          my $i;          my $i;
7560          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7561            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7562            if ({            if ($node->[1] & HEADING_EL) {
                h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
               }->{$node->[1]}) {  
7563              !!!cp ('t423');              !!!cp ('t423');
7564              $i = $_;              $i = $_;
7565              last INSCOPE;              last INSCOPE;
7566            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7567              !!!cp ('t424');              !!!cp ('t424');
7568              last INSCOPE;              last INSCOPE;
7569            }            }
# Line 6271  sub _tree_construction_main ($) { Line 7571  sub _tree_construction_main ($) {
7571    
7572          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7573            !!!cp ('t425.1');            !!!cp ('t425.1');
7574            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7575                              text => $token->{tag_name}, token => $token);
7576              ## NOTE: Ignore the token.
7577          } else {          } else {
7578            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7579            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7580              !!!cp ('t422');              !!!cp ('t422');
7581              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7582            }            }
7583                        
7584            ## Step 2.            ## Step 2.
7585            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7586                      ne $token->{tag_name}) {
7587              !!!cp ('t425');              !!!cp ('t425');
7588              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'unmatched end tag',
7589                                text => $token->{tag_name}, token => $token);
7590            } else {            } else {
7591              !!!cp ('t426');              !!!cp ('t426');
7592            }            }
# Line 6294  sub _tree_construction_main ($) { Line 7596  sub _tree_construction_main ($) {
7596          }          }
7597                    
7598          !!!next-token;          !!!next-token;
7599          redo B;          next B;
7600        } elsif ($token->{tag_name} eq 'p') {        } elsif ($token->{tag_name} eq 'p') {
7601          ## has an element in scope          ## has an element in scope
7602          my $i;          my $i;
7603          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7604            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7605            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & P_EL) {
7606              !!!cp ('t410.1');              !!!cp ('t410.1');
7607              $i = $_;              $i = $_;
7608              last INSCOPE;              last INSCOPE;
7609            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7610              !!!cp ('t411.1');              !!!cp ('t411.1');
7611              last INSCOPE;              last INSCOPE;
7612            }            }
7613          } # INSCOPE          } # INSCOPE
7614    
7615          if (defined $i) {          if (defined $i) {
7616            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7617                      ne $token->{tag_name}) {
7618              !!!cp ('t412.1');              !!!cp ('t412.1');
7619              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7620                                text => $self->{open_elements}->[-1]->[0]
7621                                    ->manakai_local_name,
7622                                token => $token);
7623            } else {            } else {
7624              !!!cp ('t414.1');              !!!cp ('t414.1');
7625            }            }
# Line 6324  sub _tree_construction_main ($) { Line 7627  sub _tree_construction_main ($) {
7627            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
7628          } else {          } else {
7629            !!!cp ('t413.1');            !!!cp ('t413.1');
7630            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7631                              text => $token->{tag_name}, token => $token);
7632    
7633            !!!cp ('t415.1');            !!!cp ('t415.1');
7634            ## As if <p>, then reprocess the current token            ## As if <p>, then reprocess the current token
7635            my $el;            my $el;
7636            !!!create-element ($el, 'p',, $token);            !!!create-element ($el, $HTML_NS, 'p',, $token);
7637            $insert->($el);            $insert->($el);
7638            ## NOTE: Not inserted into |$self->{open_elements}|.            ## NOTE: Not inserted into |$self->{open_elements}|.
7639          }          }
7640    
7641          !!!next-token;          !!!next-token;
7642          redo B;          next B;
7643        } elsif ({        } elsif ({
7644                  a => 1,                  a => 1,
7645                  b => 1, big => 1, em => 1, font => 1, i => 1,                  b => 1, big => 1, em => 1, font => 1, i => 1,
# Line 6344  sub _tree_construction_main ($) { Line 7648  sub _tree_construction_main ($) {
7648                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7649          !!!cp ('t427');          !!!cp ('t427');
7650          $formatting_end_tag->($token);          $formatting_end_tag->($token);
7651          redo B;          next B;
7652        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
7653          !!!cp ('t428');          !!!cp ('t428');
7654          !!!parse-error (type => 'unmatched end tag:br', token => $token);          !!!parse-error (type => 'unmatched end tag',
7655                            text => 'br', token => $token);
7656    
7657          ## As if <br>          ## As if <br>
7658          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7659                    
7660          my $el;          my $el;
7661          !!!create-element ($el, 'br',, $token);          !!!create-element ($el, $HTML_NS, 'br',, $token);
7662          $insert->($el);          $insert->($el);
7663                    
7664          ## Ignore the token.          ## Ignore the token.
7665          !!!next-token;          !!!next-token;
7666          redo B;          next B;
7667        } elsif ({        } elsif ({
7668                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7669                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 6372  sub _tree_construction_main ($) { Line 7677  sub _tree_construction_main ($) {
7677                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
7678                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7679          !!!cp ('t429');          !!!cp ('t429');
7680          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'unmatched end tag',
7681                            text => $token->{tag_name}, token => $token);
7682          ## Ignore the token          ## Ignore the token
7683          !!!next-token;          !!!next-token;
7684          redo B;          next B;
7685                    
7686          ## ISSUE: Issue on HTML5 new elements in spec          ## ISSUE: Issue on HTML5 new elements in spec
7687                    
# Line 6386  sub _tree_construction_main ($) { Line 7692  sub _tree_construction_main ($) {
7692    
7693          ## Step 2          ## Step 2
7694          S2: {          S2: {
7695            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7696              ## Step 1              ## Step 1
7697              ## generate implied end tags              ## generate implied end tags
7698              while ({              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                     dd => 1, dt => 1, li => 1, p => 1,  
                    }->{$self->{open_elements}->[-1]->[1]}) {  
7699                !!!cp ('t430');                !!!cp ('t430');
7700                ## ISSUE: Can this case be reached?                ## NOTE: |<ruby><rt></ruby>|.
7701                  ## ISSUE: <ruby><rt></rt> will also take this code path,
7702                  ## which seems wrong.
7703                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
7704                  $node_i++;
7705              }              }
7706                    
7707              ## Step 2              ## Step 2
7708              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7709                        ne $token->{tag_name}) {
7710                !!!cp ('t431');                !!!cp ('t431');
7711                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
7712                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                !!!parse-error (type => 'not closed',
7713                                  text => $self->{open_elements}->[-1]->[0]
7714                                      ->manakai_local_name,
7715                                  token => $token);
7716              } else {              } else {
7717                !!!cp ('t432');                !!!cp ('t432');
7718              }              }
7719                            
7720              ## Step 3              ## Step 3
7721              splice @{$self->{open_elements}}, $node_i;              splice @{$self->{open_elements}}, $node_i if $node_i < 0;
7722    
7723              !!!next-token;              !!!next-token;
7724              last S2;              last S2;
7725            } else {            } else {
7726              ## Step 3              ## Step 3
7727              if (not $formatting_category->{$node->[1]} and              if (not ($node->[1] & FORMATTING_EL) and
7728                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
7729                  ($special_category->{$node->[1]} or                  ($node->[1] & SPECIAL_EL or
7730                   $scoping_category->{$node->[1]})) {                   $node->[1] & SCOPING_EL)) {
7731                !!!cp ('t433');                !!!cp ('t433');
7732                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'unmatched end tag',
7733                                  text => $token->{tag_name}, token => $token);
7734                ## Ignore the token                ## Ignore the token
7735                !!!next-token;                !!!next-token;
7736                last S2;                last S2;
# Line 6434  sub _tree_construction_main ($) { Line 7746  sub _tree_construction_main ($) {
7746            ## Step 5;            ## Step 5;
7747            redo S2;            redo S2;
7748          } # S2          } # S2
7749          redo B;          next B;
7750        }        }
7751      }      }
7752      redo B;      next B;
7753      } continue { # B
7754        if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
7755          ## NOTE: The code below is executed in cases where it does not have
7756          ## to be, but it it is harmless even in those cases.
7757          ## has an element in scope
7758          INSCOPE: {
7759            for (reverse 0..$#{$self->{open_elements}}) {
7760              my $node = $self->{open_elements}->[$_];
7761              if ($node->[1] & FOREIGN_EL) {
7762                last INSCOPE;
7763              } elsif ($node->[1] & SCOPING_EL) {
7764                last;
7765              }
7766            }
7767            
7768            ## NOTE: No foreign element in scope.
7769            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
7770          } # INSCOPE
7771        }
7772    } # B    } # B
7773    
7774    ## Stop parsing # MUST    ## Stop parsing # MUST
# Line 6445  sub _tree_construction_main ($) { Line 7776  sub _tree_construction_main ($) {
7776    ## TODO: script stuffs    ## TODO: script stuffs
7777  } # _tree_construct_main  } # _tree_construct_main
7778    
7779  sub set_inner_html ($$$) {  sub set_inner_html ($$$$;$) {
7780    my $class = shift;    my $class = shift;
7781    my $node = shift;    my $node = shift;
7782    my $s = \$_[0];    #my $s = \$_[0];
7783    my $onerror = $_[1];    my $onerror = $_[1];
7784      my $get_wrapper = $_[2] || sub ($) { return $_[0] };
7785    
7786    ## ISSUE: Should {confident} be true?    ## ISSUE: Should {confident} be true?
7787    
# Line 6468  sub set_inner_html ($$$) { Line 7800  sub set_inner_html ($$$) {
7800      }      }
7801    
7802      ## Step 3, 4, 5 # MUST      ## Step 3, 4, 5 # MUST
7803      $class->parse_string ($$s => $node, $onerror);      $class->parse_char_string ($_[0] => $node, $onerror, $get_wrapper);
7804    } elsif ($nt == 1) {    } elsif ($nt == 1) {
7805      ## TODO: If non-html element      ## TODO: If non-html element
7806    
7807      ## NOTE: Most of this code is copied from |parse_string|      ## NOTE: Most of this code is copied from |parse_string|
7808    
7809    ## TODO: Support for $get_wrapper
7810    
7811      ## Step 1 # MUST      ## Step 1 # MUST
7812      my $this_doc = $node->owner_document;      my $this_doc = $node->owner_document;
7813      my $doc = $this_doc->implementation->create_document;      my $doc = $this_doc->implementation->create_document;
# Line 6485  sub set_inner_html ($$$) { Line 7819  sub set_inner_html ($$$) {
7819      my $i = 0;      my $i = 0;
7820      $p->{line_prev} = $p->{line} = 1;      $p->{line_prev} = $p->{line} = 1;
7821      $p->{column_prev} = $p->{column} = 0;      $p->{column_prev} = $p->{column} = 0;
7822        require Whatpm::Charset::DecodeHandle;
7823        my $input = Whatpm::Charset::DecodeHandle::CharString->new (\($_[0]));
7824        $input = $get_wrapper->($input);
7825      $p->{set_next_char} = sub {      $p->{set_next_char} = sub {
7826        my $self = shift;        my $self = shift;
7827    
7828        pop @{$self->{prev_char}};        my $char = '';
7829        unshift @{$self->{prev_char}}, $self->{next_char};        if (defined $self->{next_next_char}) {
7830            $char = $self->{next_next_char};
7831        $self->{next_char} = -1 and return if $i >= length $$s;          delete $self->{next_next_char};
7832        $self->{next_char} = ord substr $$s, $i++, 1;          $self->{next_char} = ord $char;
7833          } else {
7834            $self->{char_buffer} = '';
7835            $self->{char_buffer_pos} = 0;
7836            
7837            my $count = $input->manakai_read_until
7838                ($self->{char_buffer},
7839                 qr/(?![\x{FDD0}-\x{FDDF}\x{FFFE}\x{FFFF}\x{1FFFE}\x{1FFFF}\x{2FFFE}\x{2FFFF}\x{3FFFE}\x{3FFFF}\x{4FFFE}\x{4FFFF}\x{5FFFE}\x{5FFFF}\x{6FFFE}\x{6FFFF}\x{7FFFE}\x{7FFFF}\x{8FFFE}\x{8FFFF}\x{9FFFE}\x{9FFFF}\x{AFFFE}\x{AFFFF}\x{BFFFE}\x{BFFFF}\x{CFFFE}\x{CFFFF}\x{DFFFE}\x{DFFFF}\x{EFFFE}\x{EFFFF}\x{FFFFE}\x{FFFFF}])[\x20-\x7E\xA0-\x{D7FF}\x{E000}-\x{10FFFD}]/,
7840                   $self->{char_buffer_pos});
7841            if ($count) {
7842              $self->{line_prev} = $self->{line};
7843              $self->{column_prev} = $self->{column};
7844              $self->{column}++;
7845              $self->{next_char}
7846                  = ord substr ($self->{char_buffer},
7847                                $self->{char_buffer_pos}++, 1);
7848              return;
7849            }
7850            
7851            if ($input->read ($char, 1)) {
7852              $self->{next_char} = ord $char;
7853            } else {
7854              $self->{next_char} = -1;
7855              return;
7856            }
7857          }
7858    
7859        ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});        ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
7860        $p->{column}++;        $p->{column}++;
# Line 6502  sub set_inner_html ($$$) { Line 7864  sub set_inner_html ($$$) {
7864          $p->{column} = 0;          $p->{column} = 0;
7865          !!!cp ('i1');          !!!cp ('i1');
7866        } elsif ($self->{next_char} == 0x000D) { # CR        } elsif ($self->{next_char} == 0x000D) { # CR
7867          $i++ if substr ($$s, $i, 1) eq "\x0A";  ## TODO: support for abort/streaming
7868            my $next = '';
7869            if ($input->read ($next, 1) and $next ne "\x0A") {
7870              $self->{next_next_char} = $next;
7871            }
7872          $self->{next_char} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
7873          $p->{line}++;          $p->{line}++;
7874          $p->{column} = 0;          $p->{column} = 0;
# Line 6514  sub set_inner_html ($$$) { Line 7880  sub set_inner_html ($$$) {
7880          !!!cp ('i4');          !!!cp ('i4');
7881          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
7882          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
7883          } elsif ($disallowed_control_chars->{$self->{next_char}}) {
7884            !!!cp ('i4.1');
7885            if ($self->{next_char} < 0x10000) {
7886              !!!parse-error (type => 'control char',
7887                              text => (sprintf 'U+%04X', $self->{next_char}));
7888            } else {
7889              !!!parse-error (type => 'control char',
7890                              text => (sprintf 'U-%08X', $self->{next_char}));
7891            }
7892        }        }
7893      };      };
7894      $p->{prev_char} = [-1, -1, -1];  
7895      $p->{next_char} = -1;      $p->{read_until} = sub {
7896              #my ($scalar, $specials_range, $offset) = @_;
7897          return 0 if defined $p->{next_next_char};
7898    
7899          my $pattern = qr/(?![$_[1]\x{FDD0}-\x{FDDF}\x{FFFE}\x{FFFF}\x{1FFFE}\x{1FFFF}\x{2FFFE}\x{2FFFF}\x{3FFFE}\x{3FFFF}\x{4FFFE}\x{4FFFF}\x{5FFFE}\x{5FFFF}\x{6FFFE}\x{6FFFF}\x{7FFFE}\x{7FFFF}\x{8FFFE}\x{8FFFF}\x{9FFFE}\x{9FFFF}\x{AFFFE}\x{AFFFF}\x{BFFFE}\x{BFFFF}\x{CFFFE}\x{CFFFF}\x{DFFFE}\x{DFFFF}\x{EFFFE}\x{EFFFF}\x{FFFFE}\x{FFFFF}])[\x20-\x7E\xA0-\x{D7FF}\x{E000}-\x{10FFFD}]/;
7900          my $offset = $_[2] || 0;
7901          
7902          if ($p->{char_buffer_pos} < length $p->{char_buffer}) {
7903            pos ($p->{char_buffer}) = $p->{char_buffer_pos};
7904            if ($p->{char_buffer} =~ /\G(?>$pattern)+/) {
7905              substr ($_[0], $offset)
7906                  = substr ($p->{char_buffer}, $-[0], $+[0] - $-[0]);
7907              my $count = $+[0] - $-[0];
7908              if ($count) {
7909                $p->{column} += $count;
7910                $p->{char_buffer_pos} += $count;
7911                $p->{line_prev} = $p->{line};
7912                $p->{column_prev} = $p->{column} - 1;
7913                $p->{prev_char} = [-1, -1, -1];
7914                $p->{next_char} = -1;
7915              }
7916              return $count;
7917            } else {
7918              return 0;
7919            }
7920          } else {
7921            my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
7922            if ($count) {
7923              $p->{column} += $count;
7924              $p->{column_prev} += $count;
7925              $p->{prev_char} = [-1, -1, -1];
7926              $p->{next_char} = -1;
7927            }
7928            return $count;
7929          }
7930        }; # $p->{read_until}
7931    
7932      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
7933        my (%opt) = @_;        my (%opt) = @_;
7934        my $line = $opt{line};        my $line = $opt{line};
# Line 6533  sub set_inner_html ($$$) { Line 7943  sub set_inner_html ($$$) {
7943        $ponerror->(line => $p->{line}, column => $p->{column}, @_);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
7944      };      };
7945            
7946        my $char_onerror = sub {
7947          my (undef, $type, %opt) = @_;
7948          $ponerror->(layer => 'encode',
7949                      line => $p->{line}, column => $p->{column} + 1,
7950                      %opt, type => $type);
7951        }; # $char_onerror
7952        $input->onerror ($char_onerror);
7953    
7954      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
7955      $p->_initialize_tree_constructor;      $p->_initialize_tree_constructor;
7956    
# Line 6554  sub set_inner_html ($$$) { Line 7972  sub set_inner_html ($$$) {
7972          unless defined $p->{content_model};          unless defined $p->{content_model};
7973          ## ISSUE: What is "the name of the element"? local name?          ## ISSUE: What is "the name of the element"? local name?
7974    
7975      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
7976          ## TODO: Foreign element OK?
7977    
7978      ## Step 3      ## Step 3
7979      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
# Line 6564  sub set_inner_html ($$$) { Line 7983  sub set_inner_html ($$$) {
7983      $doc->append_child ($root);      $doc->append_child ($root);
7984    
7985      ## Step 5 # MUST      ## Step 5 # MUST
7986      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, $el_category->{html}];
7987    
7988      undef $p->{head_element};      undef $p->{head_element};
7989    

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24