/[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.116 by wakaba, Mon Mar 17 13:23:39 2008 UTC revision 1.180 by wakaba, Sun Sep 14 14:35:43 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  sub parse_string ($$$;$) {  sub parse_char_stream ($$$;$) {
632    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
633    my $s = ref $_[0] ? $_[0] : \($_[0]);    my $input = $_[0];
634    $self->{document} = $_[1];    $self->{document} = $_[1];
635    @{$self->{document}->child_nodes} = ();    @{$self->{document}->child_nodes} = ();
636    
# Line 176  sub parse_string ($$$;$) { Line 639  sub parse_string ($$$;$) {
639    $self->{confident} = 1 unless exists $self->{confident};    $self->{confident} = 1 unless exists $self->{confident};
640    $self->{document}->input_encoding ($self->{input_encoding})    $self->{document}->input_encoding ($self->{input_encoding})
641        if defined $self->{input_encoding};        if defined $self->{input_encoding};
642    ## TODO: |{input_encoding}| is needless?
643    
644    my $i = 0;    my $i = 0;
645    $self->{line_prev} = $self->{line} = 1;    $self->{line_prev} = $self->{line} = 1;
646    $self->{column_prev} = $self->{column} = 0;    $self->{column_prev} = -1;
647      $self->{column} = 0;
648    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
649      my $self = shift;      my $self = shift;
650    
651      pop @{$self->{prev_char}};      my $char = '';
652      unshift @{$self->{prev_char}}, $self->{next_char};      if (defined $self->{next_next_char}) {
653          $char = $self->{next_next_char};
654          delete $self->{next_next_char};
655          $self->{next_char} = ord $char;
656        } else {
657          $self->{char_buffer} = '';
658          $self->{char_buffer_pos} = 0;
659    
660      $self->{next_char} = -1 and return if $i >= length $$s;        my $count = $input->manakai_read_until
661      $self->{next_char} = ord substr $$s, $i++, 1;           ($self->{char_buffer},
662              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}]/,
663              $self->{char_buffer_pos});
664          if ($count) {
665            $self->{line_prev} = $self->{line};
666            $self->{column_prev} = $self->{column};
667            $self->{column}++;
668            $self->{next_char}
669                = ord substr ($self->{char_buffer}, $self->{char_buffer_pos}++, 1);
670            return;
671          }
672    
673          if ($input->read ($char, 1)) {
674            $self->{next_char} = ord $char;
675          } else {
676            $self->{next_char} = -1;
677            return;
678          }
679        }
680    
681      ($self->{line_prev}, $self->{column_prev})      ($self->{line_prev}, $self->{column_prev})
682          = ($self->{line}, $self->{column});          = ($self->{line}, $self->{column});
683      $self->{column}++;      $self->{column}++;
684            
685      if ($self->{next_char} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
686          !!!cp ('j1');
687        $self->{line}++;        $self->{line}++;
688        $self->{column} = 0;        $self->{column} = 0;
689      } elsif ($self->{next_char} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
690        $i++ if substr ($$s, $i, 1) eq "\x0A";        !!!cp ('j2');
691    ## TODO: support for abort/streaming
692          my $next = '';
693          if ($input->read ($next, 1) and $next ne "\x0A") {
694            $self->{next_next_char} = $next;
695          }
696        $self->{next_char} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
697        $self->{line}++;        $self->{line}++;
698        $self->{column} = 0;        $self->{column} = 0;
699      } elsif ($self->{next_char} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
700          !!!cp ('j3');
701        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
702      } elsif ($self->{next_char} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
703          !!!cp ('j4');
704        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
705        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
706        } elsif ($self->{next_char} <= 0x0008 or
707                 (0x000E <= $self->{next_char} and $self->{next_char} <= 0x001F) or
708                 (0x007F <= $self->{next_char} and $self->{next_char} <= 0x009F) or
709                 (0xD800 <= $self->{next_char} and $self->{next_char} <= 0xDFFF) or
710                 (0xFDD0 <= $self->{next_char} and $self->{next_char} <= 0xFDDF) or
711    ## ISSUE: U+FDE0-U+FDEF are not excluded
712                 {
713                  0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
714                  0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
715                  0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
716                  0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
717                  0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
718                  0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
719                  0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
720                  0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
721                  0x10FFFE => 1, 0x10FFFF => 1,
722                 }->{$self->{next_char}}) {
723          !!!cp ('j5');
724          if ($self->{next_char} < 0x10000) {
725            !!!parse-error (type => 'control char',
726                            text => (sprintf 'U+%04X', $self->{next_char}));
727          } else {
728            !!!parse-error (type => 'control char',
729                            text => (sprintf 'U-%08X', $self->{next_char}));
730          }
731      }      }
732    };    };
733    $self->{prev_char} = [-1, -1, -1];  
734    $self->{next_char} = -1;    $self->{read_until} = sub {
735        #my ($scalar, $specials_range, $offset) = @_;
736        return 0 if defined $self->{next_next_char};
737    
738        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}]/;
739        my $offset = $_[2] || 0;
740    
741        if ($self->{char_buffer_pos} < length $self->{char_buffer}) {
742          pos ($self->{char_buffer}) = $self->{char_buffer_pos};
743          if ($self->{char_buffer} =~ /\G(?>$pattern)+/) {
744            substr ($_[0], $offset)
745                = substr ($self->{char_buffer}, $-[0], $+[0] - $-[0]);
746            my $count = $+[0] - $-[0];
747            if ($count) {
748              $self->{column} += $count;
749              $self->{char_buffer_pos} += $count;
750              $self->{line_prev} = $self->{line};
751              $self->{column_prev} = $self->{column} - 1;
752              $self->{prev_char} = [-1, -1, -1];
753              $self->{next_char} = -1;
754            }
755            return $count;
756          } else {
757            return 0;
758          }
759        } else {
760          my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
761          if ($count) {
762            $self->{column} += $count;
763            $self->{line_prev} = $self->{line};
764            $self->{column_prev} = $self->{column} - 1;
765            $self->{prev_char} = [-1, -1, -1];
766            $self->{next_char} = -1;
767          }
768          return $count;
769        }
770      }; # $self->{read_until}
771    
772    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
773      my (%opt) = @_;      my (%opt) = @_;
# Line 229  sub parse_string ($$$;$) { Line 787  sub parse_string ($$$;$) {
787    delete $self->{parse_error}; # remove loop    delete $self->{parse_error}; # remove loop
788    
789    return $self->{document};    return $self->{document};
790  } # parse_string  } # parse_char_stream
791    
792  sub new ($) {  sub new ($) {
793    my $class = shift;    my $class = shift;
794    my $self = bless {}, $class;    my $self = bless {
795        level => {must => 'm',
796                  should => 's',
797                  warn => 'w',
798                  info => 'i',
799                  uncertain => 'u'},
800      }, $class;
801    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
802      $self->{next_char} = -1;      $self->{next_char} = -1;
803    };    };
# Line 262  sub RCDATA_CONTENT_MODEL () { CM_ENTITY Line 826  sub RCDATA_CONTENT_MODEL () { CM_ENTITY
826  sub PCDATA_CONTENT_MODEL () { CM_ENTITY | CM_FULL_MARKUP }  sub PCDATA_CONTENT_MODEL () { CM_ENTITY | CM_FULL_MARKUP }
827    
828  sub DATA_STATE () { 0 }  sub DATA_STATE () { 0 }
829  sub ENTITY_DATA_STATE () { 1 }  #sub ENTITY_DATA_STATE () { 1 }
830  sub TAG_OPEN_STATE () { 2 }  sub TAG_OPEN_STATE () { 2 }
831  sub CLOSE_TAG_OPEN_STATE () { 3 }  sub CLOSE_TAG_OPEN_STATE () { 3 }
832  sub TAG_NAME_STATE () { 4 }  sub TAG_NAME_STATE () { 4 }
# Line 273  sub BEFORE_ATTRIBUTE_VALUE_STATE () { 8 Line 837  sub BEFORE_ATTRIBUTE_VALUE_STATE () { 8
837  sub ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE () { 9 }  sub ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE () { 9 }
838  sub ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE () { 10 }  sub ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE () { 10 }
839  sub ATTRIBUTE_VALUE_UNQUOTED_STATE () { 11 }  sub ATTRIBUTE_VALUE_UNQUOTED_STATE () { 11 }
840  sub ENTITY_IN_ATTRIBUTE_VALUE_STATE () { 12 }  #sub ENTITY_IN_ATTRIBUTE_VALUE_STATE () { 12 }
841  sub MARKUP_DECLARATION_OPEN_STATE () { 13 }  sub MARKUP_DECLARATION_OPEN_STATE () { 13 }
842  sub COMMENT_START_STATE () { 14 }  sub COMMENT_START_STATE () { 14 }
843  sub COMMENT_START_DASH_STATE () { 15 }  sub COMMENT_START_DASH_STATE () { 15 }
# Line 295  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO Line 859  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO
859  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }
860  sub BOGUS_DOCTYPE_STATE () { 32 }  sub BOGUS_DOCTYPE_STATE () { 32 }
861  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }
862    sub SELF_CLOSING_START_TAG_STATE () { 34 }
863    sub CDATA_SECTION_STATE () { 35 }
864    sub MD_HYPHEN_STATE () { 36 } # "markup declaration open state" in the spec
865    sub MD_DOCTYPE_STATE () { 37 } # "markup declaration open state" in the spec
866    sub MD_CDATA_STATE () { 38 } # "markup declaration open state" in the spec
867    sub CDATA_PCDATA_CLOSE_TAG_STATE () { 39 } # "close tag open state" in the spec
868    sub CDATA_SECTION_MSE1_STATE () { 40 } # "CDATA section state" in the spec
869    sub CDATA_SECTION_MSE2_STATE () { 41 } # "CDATA section state" in the spec
870    sub PUBLIC_STATE () { 42 } # "after DOCTYPE name state" in the spec
871    sub SYSTEM_STATE () { 43 } # "after DOCTYPE name state" in the spec
872    ## NOTE: "Entity data state", "entity in attribute value state", and
873    ## "consume a character reference" algorithm are jointly implemented
874    ## using the following six states:
875    sub ENTITY_STATE () { 44 }
876    sub ENTITY_HASH_STATE () { 45 }
877    sub NCR_NUM_STATE () { 46 }
878    sub HEXREF_X_STATE () { 47 }
879    sub HEXREF_HEX_STATE () { 48 }
880    sub ENTITY_NAME_STATE () { 49 }
881    
882  sub DOCTYPE_TOKEN () { 1 }  sub DOCTYPE_TOKEN () { 1 }
883  sub COMMENT_TOKEN () { 2 }  sub COMMENT_TOKEN () { 2 }
# Line 312  sub ROW_IMS ()        { 0b10000000 } Line 895  sub ROW_IMS ()        { 0b10000000 }
895  sub BODY_AFTER_IMS () { 0b100000000 }  sub BODY_AFTER_IMS () { 0b100000000 }
896  sub FRAME_IMS ()      { 0b1000000000 }  sub FRAME_IMS ()      { 0b1000000000 }
897  sub SELECT_IMS ()     { 0b10000000000 }  sub SELECT_IMS ()     { 0b10000000000 }
898    sub IN_FOREIGN_CONTENT_IM () { 0b100000000000 }
899        ## NOTE: "in foreign content" insertion mode is special; it is combined
900        ## with the secondary insertion mode.  In this parser, they are stored
901        ## together in the bit-or'ed form.
902    
903  ## NOTE: "initial" and "before html" insertion modes have no constants.  ## NOTE: "initial" and "before html" insertion modes have no constants.
904    
# Line 343  sub IN_COLUMN_GROUP_IM () { 0b10 } Line 930  sub IN_COLUMN_GROUP_IM () { 0b10 }
930  sub _initialize_tokenizer ($) {  sub _initialize_tokenizer ($) {
931    my $self = shift;    my $self = shift;
932    $self->{state} = DATA_STATE; # MUST    $self->{state} = DATA_STATE; # MUST
933      #$self->{state_keyword}; # initialized when used
934      #$self->{entity__value}; # initialized when used
935      #$self->{entity__match}; # initialized when used
936    $self->{content_model} = PCDATA_CONTENT_MODEL; # be    $self->{content_model} = PCDATA_CONTENT_MODEL; # be
937    undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE    undef $self->{current_token};
938    undef $self->{current_attribute};    undef $self->{current_attribute};
939    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
940    undef $self->{last_attribute_value_state};    #$self->{prev_state}; # initialized when used
941    $self->{char} = [];    delete $self->{self_closing};
942    # $self->{next_char}    $self->{char_buffer} = '';
943      $self->{char_buffer_pos} = 0;
944      $self->{prev_char} = [-1, -1, -1];
945      $self->{next_char} = -1;
946    !!!next-input-character;    !!!next-input-character;
947    $self->{token} = [];    $self->{token} = [];
948    # $self->{escape}    # $self->{escape}
# Line 368  sub _initialize_tokenizer ($) { Line 961  sub _initialize_tokenizer ($) {
961  ##        ->{value}  ##        ->{value}
962  ##        ->{has_reference} == 1 or 0  ##        ->{has_reference} == 1 or 0
963  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)
964    ## NOTE: The "self-closing flag" is hold as |$self->{self_closing}|.
965    ##     |->{self_closing}| is used to save the value of |$self->{self_closing}|
966    ##     while the token is pushed back to the stack.
967    
968  ## Emitted token MUST immediately be handled by the tree construction state.  ## Emitted token MUST immediately be handled by the tree construction state.
969    
# Line 377  sub _initialize_tokenizer ($) { Line 973  sub _initialize_tokenizer ($) {
973  ## has completed loading.  If one has, then it MUST be executed  ## has completed loading.  If one has, then it MUST be executed
974  ## and removed from the list.  ## and removed from the list.
975    
976  ## NOTE: HTML5 "Writing HTML documents" section, applied to  ## TODO: Polytheistic slash SHOULD NOT be used. (Applied only to atheists.)
977  ## 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,  
978    
979  sub _get_next_token ($) {  sub _get_next_token ($) {
980    my $self = shift;    my $self = shift;
981    
982      if ($self->{self_closing}) {
983        !!!parse-error (type => 'nestc', token => $self->{current_token});
984        ## NOTE: The |self_closing| flag is only set by start tag token.
985        ## In addition, when a start tag token is emitted, it is always set to
986        ## |current_token|.
987        delete $self->{self_closing};
988      }
989    
990    if (@{$self->{token}}) {    if (@{$self->{token}}) {
991        $self->{self_closing} = $self->{token}->[0]->{self_closing};
992      return shift @{$self->{token}};      return shift @{$self->{token}};
993    }    }
994    
# Line 404  sub _get_next_token ($) { Line 998  sub _get_next_token ($) {
998          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA
999              not $self->{escape}) {              not $self->{escape}) {
1000            !!!cp (1);            !!!cp (1);
1001            $self->{state} = ENTITY_DATA_STATE;            ## NOTE: In the spec, the tokenizer is switched to the
1002              ## "entity data state".  In this implementation, the tokenizer
1003              ## is switched to the |ENTITY_STATE|, which is an implementation
1004              ## of the "consume a character reference" algorithm.
1005              $self->{entity_additional} = -1;
1006              $self->{prev_state} = DATA_STATE;
1007              $self->{state} = ENTITY_STATE;
1008            !!!next-input-character;            !!!next-input-character;
1009            redo A;            redo A;
1010          } else {          } else {
# Line 466  sub _get_next_token ($) { Line 1066  sub _get_next_token ($) {
1066        # Anything else        # Anything else
1067        my $token = {type => CHARACTER_TOKEN,        my $token = {type => CHARACTER_TOKEN,
1068                     data => chr $self->{next_char},                     data => chr $self->{next_char},
1069                     line => $self->{line}, column => $self->{column}};                     line => $self->{line}, column => $self->{column},
1070                      };
1071          $self->{read_until}->($token->{data}, q[-!<>&], length $token->{data});
1072    
1073        ## Stay in the data state        ## Stay in the data state
1074        !!!next-input-character;        !!!next-input-character;
1075    
1076        !!!emit ($token);        !!!emit ($token);
1077    
1078        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;  
1079      } elsif ($self->{state} == TAG_OPEN_STATE) {      } elsif ($self->{state} == TAG_OPEN_STATE) {
1080        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
1081          if ($self->{next_char} == 0x002F) { # /          if ($self->{next_char} == 0x002F) { # /
# Line 507  sub _get_next_token ($) { Line 1090  sub _get_next_token ($) {
1090    
1091            !!!emit ({type => CHARACTER_TOKEN, data => '<',            !!!emit ({type => CHARACTER_TOKEN, data => '<',
1092                      line => $self->{line_prev},                      line => $self->{line_prev},
1093                      column => $self->{column_prev}});                      column => $self->{column_prev},
1094                       });
1095    
1096            redo A;            redo A;
1097          }          }
# Line 553  sub _get_next_token ($) { Line 1137  sub _get_next_token ($) {
1137    
1138            !!!emit ({type => CHARACTER_TOKEN, data => '<>',            !!!emit ({type => CHARACTER_TOKEN, data => '<>',
1139                      line => $self->{line_prev},                      line => $self->{line_prev},
1140                      column => $self->{column_prev}});                      column => $self->{column_prev},
1141                       });
1142    
1143            redo A;            redo A;
1144          } elsif ($self->{next_char} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
# Line 564  sub _get_next_token ($) { Line 1149  sub _get_next_token ($) {
1149            $self->{state} = BOGUS_COMMENT_STATE;            $self->{state} = BOGUS_COMMENT_STATE;
1150            $self->{current_token} = {type => COMMENT_TOKEN, data => '',            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1151                                      line => $self->{line_prev},                                      line => $self->{line_prev},
1152                                      column => $self->{column_prev}};                                      column => $self->{column_prev},
1153                                       };
1154            ## $self->{next_char} is intentionally left as is            ## $self->{next_char} is intentionally left as is
1155            redo A;            redo A;
1156          } else {          } else {
1157            !!!cp (23);            !!!cp (23);
1158            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago',
1159                              line => $self->{line_prev},
1160                              column => $self->{column_prev});
1161            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1162            ## reconsume            ## reconsume
1163    
1164            !!!emit ({type => CHARACTER_TOKEN, data => '<',            !!!emit ({type => CHARACTER_TOKEN, data => '<',
1165                      line => $self->{line_prev},                      line => $self->{line_prev},
1166                      column => $self->{column_prev}});                      column => $self->{column_prev},
1167                       });
1168    
1169            redo A;            redo A;
1170          }          }
# Line 583  sub _get_next_token ($) { Line 1172  sub _get_next_token ($) {
1172          die "$0: $self->{content_model} in tag open";          die "$0: $self->{content_model} in tag open";
1173        }        }
1174      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
1175          ## NOTE: The "close tag open state" in the spec is implemented as
1176          ## |CLOSE_TAG_OPEN_STATE| and |CDATA_PCDATA_CLOSE_TAG_STATE|.
1177    
1178        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"
1179        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
1180          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
1181              $self->{state} = CDATA_PCDATA_CLOSE_TAG_STATE;
1182            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            $self->{state_keyword} = '';
1183            my @next_char;            ## Reconsume.
1184            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...  
           }  
1185          } else {          } else {
1186            ## No start tag token has ever been emitted            ## No start tag token has ever been emitted
1187              ## NOTE: See <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>.
1188            !!!cp (28);            !!!cp (28);
           # next-input-character is already done  
1189            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1190              ## Reconsume.
1191            !!!emit ({type => CHARACTER_TOKEN, data => '</',            !!!emit ({type => CHARACTER_TOKEN, data => '</',
1192                      line => $l, column => $c});                      line => $l, column => $c,
1193                       });
1194            redo A;            redo A;
1195          }          }
1196        }        }
1197          
1198        if (0x0041 <= $self->{next_char} and        if (0x0041 <= $self->{next_char} and
1199            $self->{next_char} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
1200          !!!cp (29);          !!!cp (29);
# Line 677  sub _get_next_token ($) { Line 1229  sub _get_next_token ($) {
1229          # reconsume          # reconsume
1230    
1231          !!!emit ({type => CHARACTER_TOKEN, data => '</',          !!!emit ({type => CHARACTER_TOKEN, data => '</',
1232                    line => $l, column => $c});                    line => $l, column => $c,
1233                     });
1234    
1235          redo A;          redo A;
1236        } else {        } else {
# Line 686  sub _get_next_token ($) { Line 1239  sub _get_next_token ($) {
1239          $self->{state} = BOGUS_COMMENT_STATE;          $self->{state} = BOGUS_COMMENT_STATE;
1240          $self->{current_token} = {type => COMMENT_TOKEN, data => '',          $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1241                                    line => $self->{line_prev}, # "<" of "</"                                    line => $self->{line_prev}, # "<" of "</"
1242                                    column => $self->{column_prev} - 1};                                    column => $self->{column_prev} - 1,
1243          ## $self->{next_char} is intentionally left as is                                   };
1244          redo A;          ## NOTE: $self->{next_char} is intentionally left as is.
1245            ## Although the "anything else" case of the spec not explicitly
1246            ## states that the next input character is to be reconsumed,
1247            ## it will be included to the |data| of the comment token
1248            ## generated from the bogus end tag, as defined in the
1249            ## "bogus comment state" entry.
1250            redo A;
1251          }
1252        } elsif ($self->{state} == CDATA_PCDATA_CLOSE_TAG_STATE) {
1253          my $ch = substr $self->{last_emitted_start_tag_name}, length $self->{state_keyword}, 1;
1254          if (length $ch) {
1255            my $CH = $ch;
1256            $ch =~ tr/a-z/A-Z/;
1257            my $nch = chr $self->{next_char};
1258            if ($nch eq $ch or $nch eq $CH) {
1259              !!!cp (24);
1260              ## Stay in the state.
1261              $self->{state_keyword} .= $nch;
1262              !!!next-input-character;
1263              redo A;
1264            } else {
1265              !!!cp (25);
1266              $self->{state} = DATA_STATE;
1267              ## Reconsume.
1268              !!!emit ({type => CHARACTER_TOKEN,
1269                        data => '</' . $self->{state_keyword},
1270                        line => $self->{line_prev},
1271                        column => $self->{column_prev} - 1 - length $self->{state_keyword},
1272                       });
1273              redo A;
1274            }
1275          } else { # after "<{tag-name}"
1276            unless ({
1277                     0x0009 => 1, # HT
1278                     0x000A => 1, # LF
1279                     0x000B => 1, # VT
1280                     0x000C => 1, # FF
1281                     0x0020 => 1, # SP
1282                     0x003E => 1, # >
1283                     0x002F => 1, # /
1284                     -1 => 1, # EOF
1285                    }->{$self->{next_char}}) {
1286              !!!cp (26);
1287              ## Reconsume.
1288              $self->{state} = DATA_STATE;
1289              !!!emit ({type => CHARACTER_TOKEN,
1290                        data => '</' . $self->{state_keyword},
1291                        line => $self->{line_prev},
1292                        column => $self->{column_prev} - 1 - length $self->{state_keyword},
1293                       });
1294              redo A;
1295            } else {
1296              !!!cp (27);
1297              $self->{current_token}
1298                  = {type => END_TAG_TOKEN,
1299                     tag_name => $self->{last_emitted_start_tag_name},
1300                     line => $self->{line_prev},
1301                     column => $self->{column_prev} - 1 - length $self->{state_keyword}};
1302              $self->{state} = TAG_NAME_STATE;
1303              ## Reconsume.
1304              redo A;
1305            }
1306        }        }
1307      } elsif ($self->{state} == TAG_NAME_STATE) {      } elsif ($self->{state} == TAG_NAME_STATE) {
1308        if ($self->{next_char} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
# Line 703  sub _get_next_token ($) { Line 1317  sub _get_next_token ($) {
1317        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1318          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1319            !!!cp (35);            !!!cp (35);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1320            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1321          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1322            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 736  sub _get_next_token ($) { Line 1348  sub _get_next_token ($) {
1348          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1349          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1350            !!!cp (39);            !!!cp (39);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1351            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1352          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1353            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 758  sub _get_next_token ($) { Line 1368  sub _get_next_token ($) {
1368    
1369          redo A;          redo A;
1370        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1371            !!!cp (42);
1372            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1373          !!!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  
1374          redo A;          redo A;
1375        } else {        } else {
1376          !!!cp (44);          !!!cp (44);
# Line 793  sub _get_next_token ($) { Line 1393  sub _get_next_token ($) {
1393        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1394          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1395            !!!cp (46);            !!!cp (46);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1396            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1397          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1398            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 816  sub _get_next_token ($) { Line 1414  sub _get_next_token ($) {
1414        } elsif (0x0041 <= $self->{next_char} and        } elsif (0x0041 <= $self->{next_char} and
1415                 $self->{next_char} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1416          !!!cp (49);          !!!cp (49);
1417          $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),          $self->{current_attribute}
1418                                value => ''};              = {name => chr ($self->{next_char} + 0x0020),
1419                   value => '',
1420                   line => $self->{line}, column => $self->{column}};
1421          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1422          !!!next-input-character;          !!!next-input-character;
1423          redo A;          redo A;
1424        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1425            !!!cp (50);
1426            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1427          !!!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  
1428          redo A;          redo A;
1429        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1430          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1431          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1432            !!!cp (52);            !!!cp (52);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1433            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1434          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1435            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 871  sub _get_next_token ($) { Line 1459  sub _get_next_token ($) {
1459          } else {          } else {
1460            !!!cp (56);            !!!cp (56);
1461          }          }
1462          $self->{current_attribute} = {name => chr ($self->{next_char}),          $self->{current_attribute}
1463                                value => ''};              = {name => chr ($self->{next_char}),
1464                   value => '',
1465                   line => $self->{line}, column => $self->{column}};
1466          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1467          !!!next-input-character;          !!!next-input-character;
1468          redo A;          redo A;
# Line 882  sub _get_next_token ($) { Line 1472  sub _get_next_token ($) {
1472          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
1473              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
1474            !!!cp (57);            !!!cp (57);
1475            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});            !!!parse-error (type => 'duplicate attribute', text => $self->{current_attribute}->{name}, line => $self->{current_attribute}->{line}, column => $self->{current_attribute}->{column});
1476            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
1477          } else {          } else {
1478            !!!cp (58);            !!!cp (58);
# Line 911  sub _get_next_token ($) { Line 1501  sub _get_next_token ($) {
1501          $before_leave->();          $before_leave->();
1502          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1503            !!!cp (61);            !!!cp (61);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1504            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1505          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1506            !!!cp (62);            !!!cp (62);
# Line 937  sub _get_next_token ($) { Line 1525  sub _get_next_token ($) {
1525          !!!next-input-character;          !!!next-input-character;
1526          redo A;          redo A;
1527        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1528            !!!cp (64);
1529          $before_leave->();          $before_leave->();
1530            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1531          !!!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  
1532          redo A;          redo A;
1533        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1534          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1535          $before_leave->();          $before_leave->();
1536          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1537            !!!cp (66);            !!!cp (66);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1538            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1539          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1540            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1009  sub _get_next_token ($) { Line 1585  sub _get_next_token ($) {
1585        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1586          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1587            !!!cp (73);            !!!cp (73);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1588            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1589          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1590            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1033  sub _get_next_token ($) { Line 1607  sub _get_next_token ($) {
1607        } elsif (0x0041 <= $self->{next_char} and        } elsif (0x0041 <= $self->{next_char} and
1608                 $self->{next_char} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1609          !!!cp (76);          !!!cp (76);
1610          $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),          $self->{current_attribute}
1611                                value => ''};              = {name => chr ($self->{next_char} + 0x0020),
1612                   value => '',
1613                   line => $self->{line}, column => $self->{column}};
1614          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1615          !!!next-input-character;          !!!next-input-character;
1616          redo A;          redo A;
1617        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1618            !!!cp (77);
1619            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1620          !!!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  
1621          redo A;          redo A;
1622        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1623          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1624          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1625            !!!cp (79);            !!!cp (79);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1626            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1627          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1628            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1080  sub _get_next_token ($) { Line 1643  sub _get_next_token ($) {
1643    
1644          redo A;          redo A;
1645        } else {        } else {
1646          !!!cp (82);          if ($self->{next_char} == 0x0022 or # "
1647          $self->{current_attribute} = {name => chr ($self->{next_char}),              $self->{next_char} == 0x0027) { # '
1648                                value => ''};            !!!cp (78);
1649              !!!parse-error (type => 'bad attribute name');
1650            } else {
1651              !!!cp (82);
1652            }
1653            $self->{current_attribute}
1654                = {name => chr ($self->{next_char}),
1655                   value => '',
1656                   line => $self->{line}, column => $self->{column}};
1657          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1658          !!!next-input-character;          !!!next-input-character;
1659          redo A;                  redo A;        
# Line 1113  sub _get_next_token ($) { Line 1684  sub _get_next_token ($) {
1684          !!!next-input-character;          !!!next-input-character;
1685          redo A;          redo A;
1686        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1687            !!!parse-error (type => 'empty unquoted attribute value');
1688          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1689            !!!cp (87);            !!!cp (87);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1690            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1691          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1692            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1140  sub _get_next_token ($) { Line 1710  sub _get_next_token ($) {
1710          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1711          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1712            !!!cp (90);            !!!cp (90);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1713            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1714          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1715            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1181  sub _get_next_token ($) { Line 1749  sub _get_next_token ($) {
1749          redo A;          redo A;
1750        } elsif ($self->{next_char} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1751          !!!cp (96);          !!!cp (96);
1752          $self->{last_attribute_value_state} = $self->{state};          ## NOTE: In the spec, the tokenizer is switched to the
1753          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          ## "entity in attribute value state".  In this implementation, the
1754            ## tokenizer is switched to the |ENTITY_STATE|, which is an
1755            ## implementation of the "consume a character reference" algorithm.
1756            $self->{prev_state} = $self->{state};
1757            $self->{entity_additional} = 0x0022; # "
1758            $self->{state} = ENTITY_STATE;
1759          !!!next-input-character;          !!!next-input-character;
1760          redo A;          redo A;
1761        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1762          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1763          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1764            !!!cp (97);            !!!cp (97);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1765            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1766          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1767            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1213  sub _get_next_token ($) { Line 1784  sub _get_next_token ($) {
1784        } else {        } else {
1785          !!!cp (100);          !!!cp (100);
1786          $self->{current_attribute}->{value} .= chr ($self->{next_char});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1787            $self->{read_until}->($self->{current_attribute}->{value},
1788                                  q["&],
1789                                  length $self->{current_attribute}->{value});
1790    
1791          ## Stay in the state          ## Stay in the state
1792          !!!next-input-character;          !!!next-input-character;
1793          redo A;          redo A;
# Line 1225  sub _get_next_token ($) { Line 1800  sub _get_next_token ($) {
1800          redo A;          redo A;
1801        } elsif ($self->{next_char} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1802          !!!cp (102);          !!!cp (102);
1803          $self->{last_attribute_value_state} = $self->{state};          ## NOTE: In the spec, the tokenizer is switched to the
1804          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          ## "entity in attribute value state".  In this implementation, the
1805            ## tokenizer is switched to the |ENTITY_STATE|, which is an
1806            ## implementation of the "consume a character reference" algorithm.
1807            $self->{entity_additional} = 0x0027; # '
1808            $self->{prev_state} = $self->{state};
1809            $self->{state} = ENTITY_STATE;
1810          !!!next-input-character;          !!!next-input-character;
1811          redo A;          redo A;
1812        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1813          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1814          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1815            !!!cp (103);            !!!cp (103);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1816            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1817          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1818            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1257  sub _get_next_token ($) { Line 1835  sub _get_next_token ($) {
1835        } else {        } else {
1836          !!!cp (106);          !!!cp (106);
1837          $self->{current_attribute}->{value} .= chr ($self->{next_char});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1838            $self->{read_until}->($self->{current_attribute}->{value},
1839                                  q['&],
1840                                  length $self->{current_attribute}->{value});
1841    
1842          ## Stay in the state          ## Stay in the state
1843          !!!next-input-character;          !!!next-input-character;
1844          redo A;          redo A;
# Line 1273  sub _get_next_token ($) { Line 1855  sub _get_next_token ($) {
1855          redo A;          redo A;
1856        } elsif ($self->{next_char} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1857          !!!cp (108);          !!!cp (108);
1858          $self->{last_attribute_value_state} = $self->{state};          ## NOTE: In the spec, the tokenizer is switched to the
1859          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          ## "entity in attribute value state".  In this implementation, the
1860            ## tokenizer is switched to the |ENTITY_STATE|, which is an
1861            ## implementation of the "consume a character reference" algorithm.
1862            $self->{entity_additional} = -1;
1863            $self->{prev_state} = $self->{state};
1864            $self->{state} = ENTITY_STATE;
1865          !!!next-input-character;          !!!next-input-character;
1866          redo A;          redo A;
1867        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1868          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1869            !!!cp (109);            !!!cp (109);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1870            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1871          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1872            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1305  sub _get_next_token ($) { Line 1890  sub _get_next_token ($) {
1890          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1891          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1892            !!!cp (112);            !!!cp (112);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1893            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1894          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1895            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1338  sub _get_next_token ($) { Line 1921  sub _get_next_token ($) {
1921            !!!cp (116);            !!!cp (116);
1922          }          }
1923          $self->{current_attribute}->{value} .= chr ($self->{next_char});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1924            $self->{read_until}->($self->{current_attribute}->{value},
1925                                  q["'=& >],
1926                                  length $self->{current_attribute}->{value});
1927    
1928          ## Stay in the state          ## Stay in the state
1929          !!!next-input-character;          !!!next-input-character;
1930          redo A;          redo A;
1931        }        }
     } 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;  
1932      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {
1933        if ($self->{next_char} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1934            $self->{next_char} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
# Line 1377  sub _get_next_token ($) { Line 1942  sub _get_next_token ($) {
1942        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1943          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1944            !!!cp (119);            !!!cp (119);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1945            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1946          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1947            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1399  sub _get_next_token ($) { Line 1962  sub _get_next_token ($) {
1962    
1963          redo A;          redo A;
1964        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1965            !!!cp (122);
1966            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1967          !!!next-input-character;          !!!next-input-character;
1968          if ($self->{next_char} == 0x003E and # >          redo A;
1969              $self->{current_token}->{type} == START_TAG_TOKEN and        } elsif ($self->{next_char} == -1) {
1970              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {          !!!parse-error (type => 'unclosed tag');
1971            # permitted slash          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1972            !!!cp (122);            !!!cp (122.3);
1973            #            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1974            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1975              if ($self->{current_token}->{attributes}) {
1976                !!!cp (122.1);
1977                !!!parse-error (type => 'end tag attribute');
1978              } else {
1979                ## NOTE: This state should never be reached.
1980                !!!cp (122.2);
1981              }
1982          } else {          } else {
1983            !!!cp (123);            die "$0: $self->{current_token}->{type}: Unknown token type";
           !!!parse-error (type => 'nestc');  
1984          }          }
1985          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = DATA_STATE;
1986          # next-input-character is already done          ## Reconsume.
1987            !!!emit ($self->{current_token}); # start tag or end tag
1988          redo A;          redo A;
1989        } else {        } else {
1990          !!!cp (124);          !!!cp ('124.1');
1991          !!!parse-error (type => 'no space between attributes');          !!!parse-error (type => 'no space between attributes');
1992          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1993          ## reconsume          ## reconsume
1994          redo A;          redo A;
1995        }        }
1996      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {      } elsif ($self->{state} == SELF_CLOSING_START_TAG_STATE) {
1997        ## (only happen if PCDATA state)        if ($self->{next_char} == 0x003E) { # >
1998                  if ($self->{current_token}->{type} == END_TAG_TOKEN) {
1999        ## NOTE: Set by the previous state            !!!cp ('124.2');
2000        #my $token = {type => COMMENT_TOKEN, data => ''};            !!!parse-error (type => 'nestc', token => $self->{current_token});
2001              ## TODO: Different type than slash in start tag
2002        BC: {            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
2003          if ($self->{next_char} == 0x003E) { # >            if ($self->{current_token}->{attributes}) {
2004            !!!cp (124);              !!!cp ('124.4');
2005            $self->{state} = DATA_STATE;              !!!parse-error (type => 'end tag attribute');
2006            !!!next-input-character;            } else {
2007                !!!cp ('124.5');
2008            !!!emit ($self->{current_token}); # comment            }
2009              ## TODO: Test |<title></title/>|
2010            } else {
2011              !!!cp ('124.3');
2012              $self->{self_closing} = 1;
2013            }
2014    
2015            redo A;          $self->{state} = DATA_STATE;
2016          } elsif ($self->{next_char} == -1) {          !!!next-input-character;
           !!!cp (125);  
           $self->{state} = DATA_STATE;  
           ## reconsume  
2017    
2018            !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # start tag or end tag
2019    
2020            redo A;          redo A;
2021          } elsif ($self->{next_char} == -1) {
2022            !!!parse-error (type => 'unclosed tag');
2023            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
2024              !!!cp (124.7);
2025              $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
2026            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
2027              if ($self->{current_token}->{attributes}) {
2028                !!!cp (124.5);
2029                !!!parse-error (type => 'end tag attribute');
2030              } else {
2031                ## NOTE: This state should never be reached.
2032                !!!cp (124.6);
2033              }
2034          } else {          } else {
2035            !!!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;  
2036          }          }
2037        } # BC          $self->{state} = DATA_STATE;
2038            ## Reconsume.
2039        die "$0: _get_next_token: unexpected case [BC]";          !!!emit ($self->{current_token}); # start tag or end tag
2040      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {          redo A;
2041          } else {
2042            !!!cp ('124.4');
2043            !!!parse-error (type => 'nestc');
2044            ## TODO: This error type is wrong.
2045            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
2046            ## Reconsume.
2047            redo A;
2048          }
2049        } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
2050        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
2051    
2052        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1);        ## NOTE: Unlike spec's "bogus comment state", this implementation
2053          ## consumes characters one-by-one basis.
2054          
2055          if ($self->{next_char} == 0x003E) { # >
2056            !!!cp (124);
2057            $self->{state} = DATA_STATE;
2058            !!!next-input-character;
2059    
2060            !!!emit ($self->{current_token}); # comment
2061            redo A;
2062          } elsif ($self->{next_char} == -1) {
2063            !!!cp (125);
2064            $self->{state} = DATA_STATE;
2065            ## reconsume
2066    
2067            !!!emit ($self->{current_token}); # comment
2068            redo A;
2069          } else {
2070            !!!cp (126);
2071            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
2072            $self->{read_until}->($self->{current_token}->{data},
2073                                  q[>],
2074                                  length $self->{current_token}->{data});
2075    
2076        my @next_char;          ## Stay in the state.
2077        push @next_char, $self->{next_char};          !!!next-input-character;
2078            redo A;
2079          }
2080        } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
2081          ## (only happen if PCDATA state)
2082                
2083        if ($self->{next_char} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
2084            !!!cp (133);
2085            $self->{state} = MD_HYPHEN_STATE;
2086          !!!next-input-character;          !!!next-input-character;
2087          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);  
         }  
2088        } elsif ($self->{next_char} == 0x0044 or # D        } elsif ($self->{next_char} == 0x0044 or # D
2089                 $self->{next_char} == 0x0064) { # d                 $self->{next_char} == 0x0064) { # d
2090            ## ASCII case-insensitive.
2091            !!!cp (130);
2092            $self->{state} = MD_DOCTYPE_STATE;
2093            $self->{state_keyword} = chr $self->{next_char};
2094          !!!next-input-character;          !!!next-input-character;
2095          push @next_char, $self->{next_char};          redo A;
2096          if ($self->{next_char} == 0x004F or # O        } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM and
2097              $self->{next_char} == 0x006F) { # o                 $self->{open_elements}->[-1]->[1] & FOREIGN_EL and
2098            !!!next-input-character;                 $self->{next_char} == 0x005B) { # [
2099            push @next_char, $self->{next_char};          !!!cp (135.4);                
2100            if ($self->{next_char} == 0x0043 or # C          $self->{state} = MD_CDATA_STATE;
2101                $self->{next_char} == 0x0063) { # c          $self->{state_keyword} = '[';
2102              !!!next-input-character;          !!!next-input-character;
2103              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);  
         }  
2104        } else {        } else {
2105          !!!cp (136);          !!!cp (136);
2106        }        }
2107    
2108        !!!parse-error (type => 'bogus comment');        !!!parse-error (type => 'bogus comment',
2109        $self->{next_char} = shift @next_char;                        line => $self->{line_prev},
2110        !!!back-next-input-character (@next_char);                        column => $self->{column_prev} - 1);
2111          ## Reconsume.
2112        $self->{state} = BOGUS_COMMENT_STATE;        $self->{state} = BOGUS_COMMENT_STATE;
2113        $self->{current_token} = {type => COMMENT_TOKEN, data => '',        $self->{current_token} = {type => COMMENT_TOKEN, data => '',
2114                                  line => $l, column => $c};                                  line => $self->{line_prev},
2115                                    column => $self->{column_prev} - 1,
2116                                   };
2117        redo A;        redo A;
2118              } elsif ($self->{state} == MD_HYPHEN_STATE) {
2119        ## ISSUE: typos in spec: chacacters, is is a parse error        if ($self->{next_char} == 0x002D) { # -
2120        ## 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);
2121            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
2122                                      line => $self->{line_prev},
2123                                      column => $self->{column_prev} - 2,
2124                                     };
2125            $self->{state} = COMMENT_START_STATE;
2126            !!!next-input-character;
2127            redo A;
2128          } else {
2129            !!!cp (128);
2130            !!!parse-error (type => 'bogus comment',
2131                            line => $self->{line_prev},
2132                            column => $self->{column_prev} - 2);
2133            $self->{state} = BOGUS_COMMENT_STATE;
2134            ## Reconsume.
2135            $self->{current_token} = {type => COMMENT_TOKEN,
2136                                      data => '-',
2137                                      line => $self->{line_prev},
2138                                      column => $self->{column_prev} - 2,
2139                                     };
2140            redo A;
2141          }
2142        } elsif ($self->{state} == MD_DOCTYPE_STATE) {
2143          ## ASCII case-insensitive.
2144          if ($self->{next_char} == [
2145                undef,
2146                0x004F, # O
2147                0x0043, # C
2148                0x0054, # T
2149                0x0059, # Y
2150                0x0050, # P
2151              ]->[length $self->{state_keyword}] or
2152              $self->{next_char} == [
2153                undef,
2154                0x006F, # o
2155                0x0063, # c
2156                0x0074, # t
2157                0x0079, # y
2158                0x0070, # p
2159              ]->[length $self->{state_keyword}]) {
2160            !!!cp (131);
2161            ## Stay in the state.
2162            $self->{state_keyword} .= chr $self->{next_char};
2163            !!!next-input-character;
2164            redo A;
2165          } elsif ((length $self->{state_keyword}) == 6 and
2166                   ($self->{next_char} == 0x0045 or # E
2167                    $self->{next_char} == 0x0065)) { # e
2168            !!!cp (129);
2169            $self->{state} = DOCTYPE_STATE;
2170            $self->{current_token} = {type => DOCTYPE_TOKEN,
2171                                      quirks => 1,
2172                                      line => $self->{line_prev},
2173                                      column => $self->{column_prev} - 7,
2174                                     };
2175            !!!next-input-character;
2176            redo A;
2177          } else {
2178            !!!cp (132);        
2179            !!!parse-error (type => 'bogus comment',
2180                            line => $self->{line_prev},
2181                            column => $self->{column_prev} - 1 - length $self->{state_keyword});
2182            $self->{state} = BOGUS_COMMENT_STATE;
2183            ## Reconsume.
2184            $self->{current_token} = {type => COMMENT_TOKEN,
2185                                      data => $self->{state_keyword},
2186                                      line => $self->{line_prev},
2187                                      column => $self->{column_prev} - 1 - length $self->{state_keyword},
2188                                     };
2189            redo A;
2190          }
2191        } elsif ($self->{state} == MD_CDATA_STATE) {
2192          if ($self->{next_char} == {
2193                '[' => 0x0043, # C
2194                '[C' => 0x0044, # D
2195                '[CD' => 0x0041, # A
2196                '[CDA' => 0x0054, # T
2197                '[CDAT' => 0x0041, # A
2198              }->{$self->{state_keyword}}) {
2199            !!!cp (135.1);
2200            ## Stay in the state.
2201            $self->{state_keyword} .= chr $self->{next_char};
2202            !!!next-input-character;
2203            redo A;
2204          } elsif ($self->{state_keyword} eq '[CDATA' and
2205                   $self->{next_char} == 0x005B) { # [
2206            !!!cp (135.2);
2207            $self->{current_token} = {type => CHARACTER_TOKEN,
2208                                      data => '',
2209                                      line => $self->{line_prev},
2210                                      column => $self->{column_prev} - 7};
2211            $self->{state} = CDATA_SECTION_STATE;
2212            !!!next-input-character;
2213            redo A;
2214          } else {
2215            !!!cp (135.3);
2216            !!!parse-error (type => 'bogus comment',
2217                            line => $self->{line_prev},
2218                            column => $self->{column_prev} - 1 - length $self->{state_keyword});
2219            $self->{state} = BOGUS_COMMENT_STATE;
2220            ## Reconsume.
2221            $self->{current_token} = {type => COMMENT_TOKEN,
2222                                      data => $self->{state_keyword},
2223                                      line => $self->{line_prev},
2224                                      column => $self->{column_prev} - 1 - length $self->{state_keyword},
2225                                     };
2226            redo A;
2227          }
2228      } elsif ($self->{state} == COMMENT_START_STATE) {      } elsif ($self->{state} == COMMENT_START_STATE) {
2229        if ($self->{next_char} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
2230          !!!cp (137);          !!!cp (137);
# Line 1621  sub _get_next_token ($) { Line 2307  sub _get_next_token ($) {
2307        } else {        } else {
2308          !!!cp (147);          !!!cp (147);
2309          $self->{current_token}->{data} .= chr ($self->{next_char}); # comment          $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
2310            $self->{read_until}->($self->{current_token}->{data},
2311                                  q[-],
2312                                  length $self->{current_token}->{data});
2313    
2314          ## Stay in the state          ## Stay in the state
2315          !!!next-input-character;          !!!next-input-character;
2316          redo A;          redo A;
# Line 1805  sub _get_next_token ($) { Line 2495  sub _get_next_token ($) {
2495          redo A;          redo A;
2496        } elsif ($self->{next_char} == 0x0050 or # P        } elsif ($self->{next_char} == 0x0050 or # P
2497                 $self->{next_char} == 0x0070) { # p                 $self->{next_char} == 0x0070) { # p
2498            $self->{state} = PUBLIC_STATE;
2499            $self->{state_keyword} = chr $self->{next_char};
2500          !!!next-input-character;          !!!next-input-character;
2501          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);  
         }  
   
         #  
2502        } elsif ($self->{next_char} == 0x0053 or # S        } elsif ($self->{next_char} == 0x0053 or # S
2503                 $self->{next_char} == 0x0073) { # s                 $self->{next_char} == 0x0073) { # s
2504            $self->{state} = SYSTEM_STATE;
2505            $self->{state_keyword} = chr $self->{next_char};
2506          !!!next-input-character;          !!!next-input-character;
2507          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);  
         }  
   
         #  
2508        } else {        } else {
2509          !!!cp (180);          !!!cp (180);
2510            !!!parse-error (type => 'string after DOCTYPE name');
2511            $self->{current_token}->{quirks} = 1;
2512    
2513            $self->{state} = BOGUS_DOCTYPE_STATE;
2514          !!!next-input-character;          !!!next-input-character;
2515          #          redo A;
2516        }        }
2517        } elsif ($self->{state} == PUBLIC_STATE) {
2518          ## ASCII case-insensitive
2519          if ($self->{next_char} == [
2520                undef,
2521                0x0055, # U
2522                0x0042, # B
2523                0x004C, # L
2524                0x0049, # I
2525              ]->[length $self->{state_keyword}] or
2526              $self->{next_char} == [
2527                undef,
2528                0x0075, # u
2529                0x0062, # b
2530                0x006C, # l
2531                0x0069, # i
2532              ]->[length $self->{state_keyword}]) {
2533            !!!cp (175);
2534            ## Stay in the state.
2535            $self->{state_keyword} .= chr $self->{next_char};
2536            !!!next-input-character;
2537            redo A;
2538          } elsif ((length $self->{state_keyword}) == 5 and
2539                   ($self->{next_char} == 0x0043 or # C
2540                    $self->{next_char} == 0x0063)) { # c
2541            !!!cp (168);
2542            $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
2543            !!!next-input-character;
2544            redo A;
2545          } else {
2546            !!!cp (169);
2547            !!!parse-error (type => 'string after DOCTYPE name',
2548                            line => $self->{line_prev},
2549                            column => $self->{column_prev} + 1 - length $self->{state_keyword});
2550            $self->{current_token}->{quirks} = 1;
2551    
2552        !!!parse-error (type => 'string after DOCTYPE name');          $self->{state} = BOGUS_DOCTYPE_STATE;
2553        $self->{current_token}->{quirks} = 1;          ## Reconsume.
2554            redo A;
2555          }
2556        } elsif ($self->{state} == SYSTEM_STATE) {
2557          ## ASCII case-insensitive
2558          if ($self->{next_char} == [
2559                undef,
2560                0x0059, # Y
2561                0x0053, # S
2562                0x0054, # T
2563                0x0045, # E
2564              ]->[length $self->{state_keyword}] or
2565              $self->{next_char} == [
2566                undef,
2567                0x0079, # y
2568                0x0073, # s
2569                0x0074, # t
2570                0x0065, # e
2571              ]->[length $self->{state_keyword}]) {
2572            !!!cp (170);
2573            ## Stay in the state.
2574            $self->{state_keyword} .= chr $self->{next_char};
2575            !!!next-input-character;
2576            redo A;
2577          } elsif ((length $self->{state_keyword}) == 5 and
2578                   ($self->{next_char} == 0x004D or # M
2579                    $self->{next_char} == 0x006D)) { # m
2580            !!!cp (171);
2581            $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2582            !!!next-input-character;
2583            redo A;
2584          } else {
2585            !!!cp (172);
2586            !!!parse-error (type => 'string after DOCTYPE name',
2587                            line => $self->{line_prev},
2588                            column => $self->{column_prev} + 1 - length $self->{state_keyword});
2589            $self->{current_token}->{quirks} = 1;
2590    
2591        $self->{state} = BOGUS_DOCTYPE_STATE;          $self->{state} = BOGUS_DOCTYPE_STATE;
2592        # next-input-character is already done          ## Reconsume.
2593        redo A;          redo A;
2594          }
2595      } elsif ($self->{state} == BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {      } elsif ($self->{state} == BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE) {
2596        if ({        if ({
2597              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
# Line 1975  sub _get_next_token ($) { Line 2676  sub _get_next_token ($) {
2676          !!!cp (190);          !!!cp (190);
2677          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
2678              .= chr $self->{next_char};              .= chr $self->{next_char};
2679            $self->{read_until}->($self->{current_token}->{public_identifier},
2680                                  q[">],
2681                                  length $self->{current_token}->{public_identifier});
2682    
2683          ## Stay in the state          ## Stay in the state
2684          !!!next-input-character;          !!!next-input-character;
2685          redo A;          redo A;
# Line 2011  sub _get_next_token ($) { Line 2716  sub _get_next_token ($) {
2716          !!!cp (194);          !!!cp (194);
2717          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
2718              .= chr $self->{next_char};              .= chr $self->{next_char};
2719            $self->{read_until}->($self->{current_token}->{public_identifier},
2720                                  q['>],
2721                                  length $self->{current_token}->{public_identifier});
2722    
2723          ## Stay in the state          ## Stay in the state
2724          !!!next-input-character;          !!!next-input-character;
2725          redo A;          redo A;
# Line 2123  sub _get_next_token ($) { Line 2832  sub _get_next_token ($) {
2832          redo A;          redo A;
2833        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2834          !!!cp (208);          !!!cp (208);
2835          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2836    
2837          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2838          !!!next-input-character;          !!!next-input-character;
# Line 2147  sub _get_next_token ($) { Line 2856  sub _get_next_token ($) {
2856          !!!cp (210);          !!!cp (210);
2857          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2858              .= chr $self->{next_char};              .= chr $self->{next_char};
2859            $self->{read_until}->($self->{current_token}->{system_identifier},
2860                                  q[">],
2861                                  length $self->{current_token}->{system_identifier});
2862    
2863          ## Stay in the state          ## Stay in the state
2864          !!!next-input-character;          !!!next-input-character;
2865          redo A;          redo A;
# Line 2159  sub _get_next_token ($) { Line 2872  sub _get_next_token ($) {
2872          redo A;          redo A;
2873        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2874          !!!cp (212);          !!!cp (212);
2875          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2876    
2877          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2878          !!!next-input-character;          !!!next-input-character;
# Line 2183  sub _get_next_token ($) { Line 2896  sub _get_next_token ($) {
2896          !!!cp (214);          !!!cp (214);
2897          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2898              .= chr $self->{next_char};              .= chr $self->{next_char};
2899            $self->{read_until}->($self->{current_token}->{system_identifier},
2900                                  q['>],
2901                                  length $self->{current_token}->{system_identifier});
2902    
2903          ## Stay in the state          ## Stay in the state
2904          !!!next-input-character;          !!!next-input-character;
2905          redo A;          redo A;
# Line 2207  sub _get_next_token ($) { Line 2924  sub _get_next_token ($) {
2924        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
2925          !!!cp (217);          !!!cp (217);
2926          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
   
2927          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2928          ## reconsume          ## reconsume
2929    
# Line 2244  sub _get_next_token ($) { Line 2960  sub _get_next_token ($) {
2960          redo A;          redo A;
2961        } else {        } else {
2962          !!!cp (221);          !!!cp (221);
2963            my $s = '';
2964            $self->{read_until}->($s, q[>], 0);
2965    
2966          ## Stay in the state          ## Stay in the state
2967          !!!next-input-character;          !!!next-input-character;
2968          redo A;          redo A;
2969        }        }
2970      } else {      } elsif ($self->{state} == CDATA_SECTION_STATE) {
2971        die "$0: $self->{state}: Unknown state";        ## NOTE: "CDATA section state" in the state is jointly implemented
2972      }        ## by three states, |CDATA_SECTION_STATE|, |CDATA_SECTION_MSE1_STATE|,
2973    } # A          ## and |CDATA_SECTION_MSE2_STATE|.
2974          
2975          if ($self->{next_char} == 0x005D) { # ]
2976            !!!cp (221.1);
2977            $self->{state} = CDATA_SECTION_MSE1_STATE;
2978            !!!next-input-character;
2979            redo A;
2980          } elsif ($self->{next_char} == -1) {
2981            $self->{state} = DATA_STATE;
2982            !!!next-input-character;
2983            if (length $self->{current_token}->{data}) { # character
2984              !!!cp (221.2);
2985              !!!emit ($self->{current_token}); # character
2986            } else {
2987              !!!cp (221.3);
2988              ## No token to emit. $self->{current_token} is discarded.
2989            }        
2990            redo A;
2991          } else {
2992            !!!cp (221.4);
2993            $self->{current_token}->{data} .= chr $self->{next_char};
2994            $self->{read_until}->($self->{current_token}->{data},
2995                                  q<]>,
2996                                  length $self->{current_token}->{data});
2997    
2998    die "$0: _get_next_token: unexpected case";          ## Stay in the state.
2999  } # _get_next_token          !!!next-input-character;
3000            redo A;
3001          }
3002    
3003  sub _tokenize_attempt_to_consume_an_entity ($$$) {        ## ISSUE: "text tokens" in spec.
3004    my ($self, $in_attr, $additional) = @_;      } elsif ($self->{state} == CDATA_SECTION_MSE1_STATE) {
3005          if ($self->{next_char} == 0x005D) { # ]
3006            !!!cp (221.5);
3007            $self->{state} = CDATA_SECTION_MSE2_STATE;
3008            !!!next-input-character;
3009            redo A;
3010          } else {
3011            !!!cp (221.6);
3012            $self->{current_token}->{data} .= ']';
3013            $self->{state} = CDATA_SECTION_STATE;
3014            ## Reconsume.
3015            redo A;
3016          }
3017        } elsif ($self->{state} == CDATA_SECTION_MSE2_STATE) {
3018          if ($self->{next_char} == 0x003E) { # >
3019            $self->{state} = DATA_STATE;
3020            !!!next-input-character;
3021            if (length $self->{current_token}->{data}) { # character
3022              !!!cp (221.7);
3023              !!!emit ($self->{current_token}); # character
3024            } else {
3025              !!!cp (221.8);
3026              ## No token to emit. $self->{current_token} is discarded.
3027            }
3028            redo A;
3029          } elsif ($self->{next_char} == 0x005D) { # ]
3030            !!!cp (221.9); # character
3031            $self->{current_token}->{data} .= ']'; ## Add first "]" of "]]]".
3032            ## Stay in the state.
3033            !!!next-input-character;
3034            redo A;
3035          } else {
3036            !!!cp (221.11);
3037            $self->{current_token}->{data} .= ']]'; # character
3038            $self->{state} = CDATA_SECTION_STATE;
3039            ## Reconsume.
3040            redo A;
3041          }
3042        } elsif ($self->{state} == ENTITY_STATE) {
3043          if ({
3044            0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
3045            0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, &
3046            $self->{entity_additional} => 1,
3047          }->{$self->{next_char}}) {
3048            !!!cp (1001);
3049            ## Don't consume
3050            ## No error
3051            ## Return nothing.
3052            #
3053          } elsif ($self->{next_char} == 0x0023) { # #
3054            !!!cp (999);
3055            $self->{state} = ENTITY_HASH_STATE;
3056            $self->{state_keyword} = '#';
3057            !!!next-input-character;
3058            redo A;
3059          } elsif ((0x0041 <= $self->{next_char} and
3060                    $self->{next_char} <= 0x005A) or # A..Z
3061                   (0x0061 <= $self->{next_char} and
3062                    $self->{next_char} <= 0x007A)) { # a..z
3063            !!!cp (998);
3064            require Whatpm::_NamedEntityList;
3065            $self->{state} = ENTITY_NAME_STATE;
3066            $self->{state_keyword} = chr $self->{next_char};
3067            $self->{entity__value} = $self->{state_keyword};
3068            $self->{entity__match} = 0;
3069            !!!next-input-character;
3070            redo A;
3071          } else {
3072            !!!cp (1027);
3073            !!!parse-error (type => 'bare ero');
3074            ## Return nothing.
3075            #
3076          }
3077    
3078    my ($l, $c) = ($self->{line_prev}, $self->{column_prev});        ## NOTE: No character is consumed by the "consume a character
3079          ## reference" algorithm.  In other word, there is an "&" character
3080          ## that does not introduce a character reference, which would be
3081          ## appended to the parent element or the attribute value in later
3082          ## process of the tokenizer.
3083    
3084          if ($self->{prev_state} == DATA_STATE) {
3085            !!!cp (997);
3086            $self->{state} = $self->{prev_state};
3087            ## Reconsume.
3088            !!!emit ({type => CHARACTER_TOKEN, data => '&',
3089                      line => $self->{line_prev},
3090                      column => $self->{column_prev},
3091                     });
3092            redo A;
3093          } else {
3094            !!!cp (996);
3095            $self->{current_attribute}->{value} .= '&';
3096            $self->{state} = $self->{prev_state};
3097            ## Reconsume.
3098            redo A;
3099          }
3100        } elsif ($self->{state} == ENTITY_HASH_STATE) {
3101          if ($self->{next_char} == 0x0078 or # x
3102              $self->{next_char} == 0x0058) { # X
3103            !!!cp (995);
3104            $self->{state} = HEXREF_X_STATE;
3105            $self->{state_keyword} .= chr $self->{next_char};
3106            !!!next-input-character;
3107            redo A;
3108          } elsif (0x0030 <= $self->{next_char} and
3109                   $self->{next_char} <= 0x0039) { # 0..9
3110            !!!cp (994);
3111            $self->{state} = NCR_NUM_STATE;
3112            $self->{state_keyword} = $self->{next_char} - 0x0030;
3113            !!!next-input-character;
3114            redo A;
3115          } else {
3116            !!!parse-error (type => 'bare nero',
3117                            line => $self->{line_prev},
3118                            column => $self->{column_prev} - 1);
3119    
3120    if ({          ## NOTE: According to the spec algorithm, nothing is returned,
3121         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,          ## and then "&#" is appended to the parent element or the attribute
3122         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR          ## value in the later processing.
3123         $additional => 1,  
3124        }->{$self->{next_char}}) {          if ($self->{prev_state} == DATA_STATE) {
3125      !!!cp (1001);            !!!cp (1019);
3126      ## Don't consume            $self->{state} = $self->{prev_state};
3127      ## No error            ## Reconsume.
3128      return undef;            !!!emit ({type => CHARACTER_TOKEN,
3129    } elsif ($self->{next_char} == 0x0023) { # #                      data => '&#',
3130      !!!next-input-character;                      line => $self->{line_prev},
3131      if ($self->{next_char} == 0x0078 or # x                      column => $self->{column_prev} - 1,
3132          $self->{next_char} == 0x0058) { # X                     });
3133        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;  
3134          } else {          } else {
3135            !!!cp (1007);            !!!cp (993);
3136            !!!parse-error (type => 'no refc', line => $l, column => $c);            $self->{current_attribute}->{value} .= '&#';
3137              $self->{state} = $self->{prev_state};
3138              ## Reconsume.
3139              redo A;
3140          }          }
3141          }
3142          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {      } elsif ($self->{state} == NCR_NUM_STATE) {
3143            !!!cp (1008);        if (0x0030 <= $self->{next_char} and
3144            !!!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  
3145          !!!cp (1012);          !!!cp (1012);
3146          $code *= 10;          $self->{state_keyword} *= 10;
3147          $code += $self->{next_char} - 0x0030;          $self->{state_keyword} += $self->{next_char} - 0x0030;
3148                    
3149            ## Stay in the state.
3150          !!!next-input-character;          !!!next-input-character;
3151        }          redo A;
3152          } elsif ($self->{next_char} == 0x003B) { # ;
       if ($self->{next_char} == 0x003B) { # ;  
3153          !!!cp (1013);          !!!cp (1013);
3154          !!!next-input-character;          !!!next-input-character;
3155            #
3156        } else {        } else {
3157          !!!cp (1014);          !!!cp (1014);
3158          !!!parse-error (type => 'no refc', line => $l, column => $c);          !!!parse-error (type => 'no refc');
3159            ## Reconsume.
3160            #
3161        }        }
3162    
3163          my $code = $self->{state_keyword};
3164          my $l = $self->{line_prev};
3165          my $c = $self->{column_prev};
3166        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
3167          !!!cp (1015);          !!!cp (1015);
3168          !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);          !!!parse-error (type => 'invalid character reference',
3169                            text => (sprintf 'U+%04X', $code),
3170                            line => $l, column => $c);
3171          $code = 0xFFFD;          $code = 0xFFFD;
3172        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
3173          !!!cp (1016);          !!!cp (1016);
3174          !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);          !!!parse-error (type => 'invalid character reference',
3175                            text => (sprintf 'U-%08X', $code),
3176                            line => $l, column => $c);
3177          $code = 0xFFFD;          $code = 0xFFFD;
3178        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
3179          !!!cp (1017);          !!!cp (1017);
3180          !!!parse-error (type => 'CR character reference', line => $l, column => $c);          !!!parse-error (type => 'CR character reference',
3181                            line => $l, column => $c);
3182          $code = 0x000A;          $code = 0x000A;
3183        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
3184          !!!cp (1018);          !!!cp (1018);
3185          !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);          !!!parse-error (type => 'C1 character reference',
3186                            text => (sprintf 'U+%04X', $code),
3187                            line => $l, column => $c);
3188          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
3189        }        }
3190          
3191        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1,        if ($self->{prev_state} == DATA_STATE) {
3192                line => $l, column => $c};          !!!cp (992);
3193      } else {          $self->{state} = $self->{prev_state};
3194        !!!cp (1019);          ## Reconsume.
3195        !!!parse-error (type => 'bare nero', line => $l, column => $c);          !!!emit ({type => CHARACTER_TOKEN, data => chr $code,
3196        !!!back-next-input-character ($self->{next_char});                    line => $l, column => $c,
3197        $self->{next_char} = 0x0023; # #                   });
3198        return undef;          redo A;
3199      }        } else {
3200    } elsif ((0x0041 <= $self->{next_char} and          !!!cp (991);
3201              $self->{next_char} <= 0x005A) or          $self->{current_attribute}->{value} .= chr $code;
3202             (0x0061 <= $self->{next_char} and          $self->{current_attribute}->{has_reference} = 1;
3203              $self->{next_char} <= 0x007A)) {          $self->{state} = $self->{prev_state};
3204      my $entity_name = chr $self->{next_char};          ## Reconsume.
3205      !!!next-input-character;          redo A;
3206          }
3207      my $value = $entity_name;      } elsif ($self->{state} == HEXREF_X_STATE) {
3208      my $match = 0;        if ((0x0030 <= $self->{next_char} and $self->{next_char} <= 0x0039) or
3209      require Whatpm::_NamedEntityList;            (0x0041 <= $self->{next_char} and $self->{next_char} <= 0x0046) or
3210      our $EntityChar;            (0x0061 <= $self->{next_char} and $self->{next_char} <= 0x0066)) {
3211            # 0..9, A..F, a..f
3212      while (length $entity_name < 10 and          !!!cp (990);
3213             ## NOTE: Some number greater than the maximum length of entity name          $self->{state} = HEXREF_HEX_STATE;
3214             ((0x0041 <= $self->{next_char} and # a          $self->{state_keyword} = 0;
3215               $self->{next_char} <= 0x005A) or # x          ## Reconsume.
3216              (0x0061 <= $self->{next_char} and # a          redo A;
3217               $self->{next_char} <= 0x007A) or # z        } else {
3218              (0x0030 <= $self->{next_char} and # 0          !!!parse-error (type => 'bare hcro',
3219               $self->{next_char} <= 0x0039) or # 9                          line => $self->{line_prev},
3220              $self->{next_char} == 0x003B)) { # ;                          column => $self->{column_prev} - 2);
3221        $entity_name .= chr $self->{next_char};  
3222        if (defined $EntityChar->{$entity_name}) {          ## NOTE: According to the spec algorithm, nothing is returned,
3223          if ($self->{next_char} == 0x003B) { # ;          ## and then "&#" followed by "X" or "x" is appended to the parent
3224            !!!cp (1020);          ## element or the attribute value in the later processing.
3225            $value = $EntityChar->{$entity_name};  
3226            $match = 1;          if ($self->{prev_state} == DATA_STATE) {
3227            !!!next-input-character;            !!!cp (1005);
3228            last;            $self->{state} = $self->{prev_state};
3229              ## Reconsume.
3230              !!!emit ({type => CHARACTER_TOKEN,
3231                        data => '&' . $self->{state_keyword},
3232                        line => $self->{line_prev},
3233                        column => $self->{column_prev} - length $self->{state_keyword},
3234                       });
3235              redo A;
3236          } else {          } else {
3237            !!!cp (1021);            !!!cp (989);
3238            $value = $EntityChar->{$entity_name};            $self->{current_attribute}->{value} .= '&' . $self->{state_keyword};
3239            $match = -1;            $self->{state} = $self->{prev_state};
3240              ## Reconsume.
3241              redo A;
3242            }
3243          }
3244        } elsif ($self->{state} == HEXREF_HEX_STATE) {
3245          if (0x0030 <= $self->{next_char} and $self->{next_char} <= 0x0039) {
3246            # 0..9
3247            !!!cp (1002);
3248            $self->{state_keyword} *= 0x10;
3249            $self->{state_keyword} += $self->{next_char} - 0x0030;
3250            ## Stay in the state.
3251            !!!next-input-character;
3252            redo A;
3253          } elsif (0x0061 <= $self->{next_char} and
3254                   $self->{next_char} <= 0x0066) { # a..f
3255            !!!cp (1003);
3256            $self->{state_keyword} *= 0x10;
3257            $self->{state_keyword} += $self->{next_char} - 0x0060 + 9;
3258            ## Stay in the state.
3259            !!!next-input-character;
3260            redo A;
3261          } elsif (0x0041 <= $self->{next_char} and
3262                   $self->{next_char} <= 0x0046) { # A..F
3263            !!!cp (1004);
3264            $self->{state_keyword} *= 0x10;
3265            $self->{state_keyword} += $self->{next_char} - 0x0040 + 9;
3266            ## Stay in the state.
3267            !!!next-input-character;
3268            redo A;
3269          } elsif ($self->{next_char} == 0x003B) { # ;
3270            !!!cp (1006);
3271            !!!next-input-character;
3272            #
3273          } else {
3274            !!!cp (1007);
3275            !!!parse-error (type => 'no refc',
3276                            line => $self->{line},
3277                            column => $self->{column});
3278            ## Reconsume.
3279            #
3280          }
3281    
3282          my $code = $self->{state_keyword};
3283          my $l = $self->{line_prev};
3284          my $c = $self->{column_prev};
3285          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
3286            !!!cp (1008);
3287            !!!parse-error (type => 'invalid character reference',
3288                            text => (sprintf 'U+%04X', $code),
3289                            line => $l, column => $c);
3290            $code = 0xFFFD;
3291          } elsif ($code > 0x10FFFF) {
3292            !!!cp (1009);
3293            !!!parse-error (type => 'invalid character reference',
3294                            text => (sprintf 'U-%08X', $code),
3295                            line => $l, column => $c);
3296            $code = 0xFFFD;
3297          } elsif ($code == 0x000D) {
3298            !!!cp (1010);
3299            !!!parse-error (type => 'CR character reference', line => $l, column => $c);
3300            $code = 0x000A;
3301          } elsif (0x80 <= $code and $code <= 0x9F) {
3302            !!!cp (1011);
3303            !!!parse-error (type => 'C1 character reference', text => (sprintf 'U+%04X', $code), line => $l, column => $c);
3304            $code = $c1_entity_char->{$code};
3305          }
3306    
3307          if ($self->{prev_state} == DATA_STATE) {
3308            !!!cp (988);
3309            $self->{state} = $self->{prev_state};
3310            ## Reconsume.
3311            !!!emit ({type => CHARACTER_TOKEN, data => chr $code,
3312                      line => $l, column => $c,
3313                     });
3314            redo A;
3315          } else {
3316            !!!cp (987);
3317            $self->{current_attribute}->{value} .= chr $code;
3318            $self->{current_attribute}->{has_reference} = 1;
3319            $self->{state} = $self->{prev_state};
3320            ## Reconsume.
3321            redo A;
3322          }
3323        } elsif ($self->{state} == ENTITY_NAME_STATE) {
3324          if (length $self->{state_keyword} < 30 and
3325              ## NOTE: Some number greater than the maximum length of entity name
3326              ((0x0041 <= $self->{next_char} and # a
3327                $self->{next_char} <= 0x005A) or # x
3328               (0x0061 <= $self->{next_char} and # a
3329                $self->{next_char} <= 0x007A) or # z
3330               (0x0030 <= $self->{next_char} and # 0
3331                $self->{next_char} <= 0x0039) or # 9
3332               $self->{next_char} == 0x003B)) { # ;
3333            our $EntityChar;
3334            $self->{state_keyword} .= chr $self->{next_char};
3335            if (defined $EntityChar->{$self->{state_keyword}}) {
3336              if ($self->{next_char} == 0x003B) { # ;
3337                !!!cp (1020);
3338                $self->{entity__value} = $EntityChar->{$self->{state_keyword}};
3339                $self->{entity__match} = 1;
3340                !!!next-input-character;
3341                #
3342              } else {
3343                !!!cp (1021);
3344                $self->{entity__value} = $EntityChar->{$self->{state_keyword}};
3345                $self->{entity__match} = -1;
3346                ## Stay in the state.
3347                !!!next-input-character;
3348                redo A;
3349              }
3350            } else {
3351              !!!cp (1022);
3352              $self->{entity__value} .= chr $self->{next_char};
3353              $self->{entity__match} *= 2;
3354              ## Stay in the state.
3355            !!!next-input-character;            !!!next-input-character;
3356              redo A;
3357            }
3358          }
3359    
3360          my $data;
3361          my $has_ref;
3362          if ($self->{entity__match} > 0) {
3363            !!!cp (1023);
3364            $data = $self->{entity__value};
3365            $has_ref = 1;
3366            #
3367          } elsif ($self->{entity__match} < 0) {
3368            !!!parse-error (type => 'no refc');
3369            if ($self->{prev_state} != DATA_STATE and # in attribute
3370                $self->{entity__match} < -1) {
3371              !!!cp (1024);
3372              $data = '&' . $self->{state_keyword};
3373              #
3374            } else {
3375              !!!cp (1025);
3376              $data = $self->{entity__value};
3377              $has_ref = 1;
3378              #
3379          }          }
3380        } else {        } else {
3381          !!!cp (1022);          !!!cp (1026);
3382          $value .= chr $self->{next_char};          !!!parse-error (type => 'bare ero',
3383          $match *= 2;                          line => $self->{line_prev},
3384          !!!next-input-character;                          column => $self->{column_prev} - length $self->{state_keyword});
3385            $data = '&' . $self->{state_keyword};
3386            #
3387        }        }
3388      }    
3389              ## NOTE: In these cases, when a character reference is found,
3390      if ($match > 0) {        ## it is consumed and a character token is returned, or, otherwise,
3391        !!!cp (1023);        ## nothing is consumed and returned, according to the spec algorithm.
3392        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,        ## In this implementation, anything that has been examined by the
3393                line => $l, column => $c};        ## tokenizer is appended to the parent element or the attribute value
3394      } elsif ($match < 0) {        ## as string, either literal string when no character reference or
3395        !!!parse-error (type => 'no refc', line => $l, column => $c);        ## entity-replaced string otherwise, in this stage, since any characters
3396        if ($in_attr and $match < -1) {        ## that would not be consumed are appended in the data state or in an
3397          !!!cp (1024);        ## appropriate attribute value state anyway.
3398          return {type => CHARACTER_TOKEN, data => '&'.$entity_name,  
3399                  line => $l, column => $c};        if ($self->{prev_state} == DATA_STATE) {
3400        } else {          !!!cp (986);
3401          !!!cp (1025);          $self->{state} = $self->{prev_state};
3402          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,          ## Reconsume.
3403                  line => $l, column => $c};          !!!emit ({type => CHARACTER_TOKEN,
3404                      data => $data,
3405                      line => $self->{line_prev},
3406                      column => $self->{column_prev} + 1 - length $self->{state_keyword},
3407                     });
3408            redo A;
3409          } else {
3410            !!!cp (985);
3411            $self->{current_attribute}->{value} .= $data;
3412            $self->{current_attribute}->{has_reference} = 1 if $has_ref;
3413            $self->{state} = $self->{prev_state};
3414            ## Reconsume.
3415            redo A;
3416        }        }
3417      } else {      } else {
3418        !!!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};  
3419      }      }
3420    } else {    } # A  
3421      !!!cp (1027);  
3422      ## no characters are consumed    die "$0: _get_next_token: unexpected case";
3423      !!!parse-error (type => 'bare ero', line => $l, column => $c);  } # _get_next_token
     return undef;  
   }  
 } # _tokenize_attempt_to_consume_an_entity  
3424    
3425  sub _initialize_tree_constructor ($) {  sub _initialize_tree_constructor ($) {
3426    my $self = shift;    my $self = shift;
# Line 2463  sub _initialize_tree_constructor ($) { Line 3429  sub _initialize_tree_constructor ($) {
3429    ## TODO: Turn mutation events off # MUST    ## TODO: Turn mutation events off # MUST
3430    ## TODO: Turn loose Document option (manakai extension) on    ## TODO: Turn loose Document option (manakai extension) on
3431    $self->{document}->manakai_is_html (1); # MUST    $self->{document}->manakai_is_html (1); # MUST
3432      $self->{document}->set_user_data (manakai_source_line => 1);
3433      $self->{document}->set_user_data (manakai_source_column => 1);
3434  } # _initialize_tree_constructor  } # _initialize_tree_constructor
3435    
3436  sub _terminate_tree_constructor ($) {  sub _terminate_tree_constructor ($) {
# Line 2517  sub _tree_construction_initial ($) { Line 3485  sub _tree_construction_initial ($) {
3485        ## language.        ## language.
3486        my $doctype_name = $token->{name};        my $doctype_name = $token->{name};
3487        $doctype_name = '' unless defined $doctype_name;        $doctype_name = '' unless defined $doctype_name;
3488        $doctype_name =~ tr/a-z/A-Z/;        $doctype_name =~ tr/a-z/A-Z/; # ASCII case-insensitive
3489        if (not defined $token->{name} or # <!DOCTYPE>        if (not defined $token->{name} or # <!DOCTYPE>
           defined $token->{public_identifier} or  
3490            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
3491          !!!cp ('t1');          !!!cp ('t1');
3492          !!!parse-error (type => 'not HTML5', token => $token);          !!!parse-error (type => 'not HTML5', token => $token);
3493        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
3494          !!!cp ('t2');          !!!cp ('t2');
         ## ISSUE: ASCII case-insensitive? (in fact it does not matter)  
3495          !!!parse-error (type => 'not HTML5', token => $token);          !!!parse-error (type => 'not HTML5', token => $token);
3496          } elsif (defined $token->{public_identifier}) {
3497            if ($token->{public_identifier} eq 'XSLT-compat') {
3498              !!!cp ('t1.2');
3499              !!!parse-error (type => 'XSLT-compat', token => $token,
3500                              level => $self->{level}->{should});
3501            } else {
3502              !!!parse-error (type => 'not HTML5', token => $token);
3503            }
3504        } else {        } else {
3505          !!!cp ('t3');          !!!cp ('t3');
3506            #
3507        }        }
3508                
3509        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
3510          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
3511          ## NOTE: Default value for both |public_id| and |system_id| attributes
3512          ## are empty strings, so that we don't set any value in missing cases.
3513        $doctype->public_id ($token->{public_identifier})        $doctype->public_id ($token->{public_identifier})
3514            if defined $token->{public_identifier};            if defined $token->{public_identifier};
3515        $doctype->system_id ($token->{system_identifier})        $doctype->system_id ($token->{system_identifier})
# Line 2547  sub _tree_construction_initial ($) { Line 3524  sub _tree_construction_initial ($) {
3524        } elsif (defined $token->{public_identifier}) {        } elsif (defined $token->{public_identifier}) {
3525          my $pubid = $token->{public_identifier};          my $pubid = $token->{public_identifier};
3526          $pubid =~ tr/a-z/A-z/;          $pubid =~ tr/a-z/A-z/;
3527          if ({          my $prefix = [
3528            "+//SILMARIL//DTD HTML PRO V0R11 19970101//EN" => 1,            "+//SILMARIL//DTD HTML PRO V0R11 19970101//",
3529            "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,            "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
3530            "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,            "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
3531            "-//IETF//DTD HTML 2.0 LEVEL 1//EN" => 1,            "-//IETF//DTD HTML 2.0 LEVEL 1//",
3532            "-//IETF//DTD HTML 2.0 LEVEL 2//EN" => 1,            "-//IETF//DTD HTML 2.0 LEVEL 2//",
3533            "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//",
3534            "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//",
3535            "-//IETF//DTD HTML 2.0 STRICT//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT//",
3536            "-//IETF//DTD HTML 2.0//EN" => 1,            "-//IETF//DTD HTML 2.0//",
3537            "-//IETF//DTD HTML 2.1E//EN" => 1,            "-//IETF//DTD HTML 2.1E//",
3538            "-//IETF//DTD HTML 3.0//EN" => 1,            "-//IETF//DTD HTML 3.0//",
3539            "-//IETF//DTD HTML 3.0//EN//" => 1,            "-//IETF//DTD HTML 3.2 FINAL//",
3540            "-//IETF//DTD HTML 3.2 FINAL//EN" => 1,            "-//IETF//DTD HTML 3.2//",
3541            "-//IETF//DTD HTML 3.2//EN" => 1,            "-//IETF//DTD HTML 3//",
3542            "-//IETF//DTD HTML 3//EN" => 1,            "-//IETF//DTD HTML LEVEL 0//",
3543            "-//IETF//DTD HTML LEVEL 0//EN" => 1,            "-//IETF//DTD HTML LEVEL 1//",
3544            "-//IETF//DTD HTML LEVEL 0//EN//2.0" => 1,            "-//IETF//DTD HTML LEVEL 2//",
3545            "-//IETF//DTD HTML LEVEL 1//EN" => 1,            "-//IETF//DTD HTML LEVEL 3//",
3546            "-//IETF//DTD HTML LEVEL 1//EN//2.0" => 1,            "-//IETF//DTD HTML STRICT LEVEL 0//",
3547            "-//IETF//DTD HTML LEVEL 2//EN" => 1,            "-//IETF//DTD HTML STRICT LEVEL 1//",
3548            "-//IETF//DTD HTML LEVEL 2//EN//2.0" => 1,            "-//IETF//DTD HTML STRICT LEVEL 2//",
3549            "-//IETF//DTD HTML LEVEL 3//EN" => 1,            "-//IETF//DTD HTML STRICT LEVEL 3//",
3550            "-//IETF//DTD HTML LEVEL 3//EN//3.0" => 1,            "-//IETF//DTD HTML STRICT//",
3551            "-//IETF//DTD HTML STRICT LEVEL 0//EN" => 1,            "-//IETF//DTD HTML//",
3552            "-//IETF//DTD HTML STRICT LEVEL 0//EN//2.0" => 1,            "-//METRIUS//DTD METRIUS PRESENTATIONAL//",
3553            "-//IETF//DTD HTML STRICT LEVEL 1//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//",
3554            "-//IETF//DTD HTML STRICT LEVEL 1//EN//2.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//",
3555            "-//IETF//DTD HTML STRICT LEVEL 2//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//",
3556            "-//IETF//DTD HTML STRICT LEVEL 2//EN//2.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//",
3557            "-//IETF//DTD HTML STRICT LEVEL 3//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//",
3558            "-//IETF//DTD HTML STRICT LEVEL 3//EN//3.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//",
3559            "-//IETF//DTD HTML STRICT//EN" => 1,            "-//NETSCAPE COMM. CORP.//DTD HTML//",
3560            "-//IETF//DTD HTML STRICT//EN//2.0" => 1,            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//",
3561            "-//IETF//DTD HTML STRICT//EN//3.0" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//",
3562            "-//IETF//DTD HTML//EN" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//",
3563            "-//IETF//DTD HTML//EN//2.0" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//",
3564            "-//IETF//DTD HTML//EN//3.0" => 1,            "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//",
3565            "-//METRIUS//DTD METRIUS PRESENTATIONAL//EN" => 1,            "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//",
3566            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//EN" => 1,            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//",
3567            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//EN" => 1,            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//",
3568            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//",
3569            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//",
3570            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//EN" => 1,            "-//W3C//DTD HTML 3 1995-03-24//",
3571            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//EN" => 1,            "-//W3C//DTD HTML 3.2 DRAFT//",
3572            "-//NETSCAPE COMM. CORP.//DTD HTML//EN" => 1,            "-//W3C//DTD HTML 3.2 FINAL//",
3573            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,            "-//W3C//DTD HTML 3.2//",
3574            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,            "-//W3C//DTD HTML 3.2S DRAFT//",
3575            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,            "-//W3C//DTD HTML 4.0 FRAMESET//",
3576            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//EN" => 1,            "-//W3C//DTD HTML 4.0 TRANSITIONAL//",
3577            "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//EN" => 1,            "-//W3C//DTD HTML EXPERIMETNAL 19960712//",
3578            "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//EN" => 1,            "-//W3C//DTD HTML EXPERIMENTAL 970421//",
3579            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,            "-//W3C//DTD W3 HTML//",
3580            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,            "-//W3O//DTD W3 HTML 3.0//",
3581            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,            "-//WEBTECHS//DTD MOZILLA HTML 2.0//",
3582            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//EN" => 1,            "-//WEBTECHS//DTD MOZILLA HTML//",
3583            "-//W3C//DTD HTML 3 1995-03-24//EN" => 1,          ]; # $prefix
3584            "-//W3C//DTD HTML 3.2 DRAFT//EN" => 1,          my $match;
3585            "-//W3C//DTD HTML 3.2 FINAL//EN" => 1,          for (@$prefix) {
3586            "-//W3C//DTD HTML 3.2//EN" => 1,            if (substr ($prefix, 0, length $_) eq $_) {
3587            "-//W3C//DTD HTML 3.2S DRAFT//EN" => 1,              $match = 1;
3588            "-//W3C//DTD HTML 4.0 FRAMESET//EN" => 1,              last;
3589            "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN" => 1,            }
3590            "-//W3C//DTD HTML EXPERIMETNAL 19960712//EN" => 1,          }
3591            "-//W3C//DTD HTML EXPERIMENTAL 970421//EN" => 1,          if ($match or
3592            "-//W3C//DTD W3 HTML//EN" => 1,              $pubid eq "-//W3O//DTD W3 HTML STRICT 3.0//EN//" or
3593            "-//W3O//DTD W3 HTML 3.0//EN" => 1,              $pubid eq "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" or
3594            "-//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}) {  
3595            !!!cp ('t5');            !!!cp ('t5');
3596            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
3597          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or          } elsif ($pubid =~ m[^-//W3C//DTD HTML 4.01 FRAMESET//] or
3598                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {                   $pubid =~ m[^-//W3C//DTD HTML 4.01 TRANSITIONAL//]) {
3599            if (defined $token->{system_identifier}) {            if (defined $token->{system_identifier}) {
3600              !!!cp ('t6');              !!!cp ('t6');
3601              $self->{document}->manakai_compat_mode ('quirks');              $self->{document}->manakai_compat_mode ('quirks');
# Line 2632  sub _tree_construction_initial ($) { Line 3603  sub _tree_construction_initial ($) {
3603              !!!cp ('t7');              !!!cp ('t7');
3604              $self->{document}->manakai_compat_mode ('limited quirks');              $self->{document}->manakai_compat_mode ('limited quirks');
3605            }            }
3606          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 FRAMESET//EN" or          } elsif ($pubid =~ m[^-//W3C//DTD XHTML 1.0 FRAMESET//] or
3607                   $pubid eq "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN") {                   $pubid =~ m[^-//W3C//DTD XHTML 1.0 TRANSITIONAL//]) {
3608            !!!cp ('t8');            !!!cp ('t8');
3609            $self->{document}->manakai_compat_mode ('limited quirks');            $self->{document}->manakai_compat_mode ('limited quirks');
3610          } else {          } else {
# Line 2646  sub _tree_construction_initial ($) { Line 3617  sub _tree_construction_initial ($) {
3617          my $sysid = $token->{system_identifier};          my $sysid = $token->{system_identifier};
3618          $sysid =~ tr/A-Z/a-z/;          $sysid =~ tr/A-Z/a-z/;
3619          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") {
3620            ## TODO: Check the spec: PUBLIC "(limited quirks)" "(quirks)"            ## NOTE: Ensure that |PUBLIC "(limited quirks)" "(quirks)"| is
3621              ## marked as quirks.
3622            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
3623            !!!cp ('t11');            !!!cp ('t11');
3624          } else {          } else {
# Line 2669  sub _tree_construction_initial ($) { Line 3641  sub _tree_construction_initial ($) {
3641        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3642        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
3643        ## reprocess        ## reprocess
3644          !!!ack-later;
3645        return;        return;
3646      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
3647        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
# Line 2749  sub _tree_construction_root_element ($) Line 3722  sub _tree_construction_root_element ($)
3722        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
3723          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
3724            my $root_element;            my $root_element;
3725            !!!create-element ($root_element, $token->{tag_name}, $token->{attributes}, $token);            !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
3726            $self->{document}->append_child ($root_element);            $self->{document}->append_child ($root_element);
3727            push @{$self->{open_elements}}, [$root_element, 'html'];            push @{$self->{open_elements}},
3728                  [$root_element, $el_category->{html}];
3729    
3730            if ($token->{attributes}->{manifest}) {            if ($token->{attributes}->{manifest}) {
3731              !!!cp ('t24');              !!!cp ('t24');
3732              $self->{application_cache_selection}              $self->{application_cache_selection}
3733                  ->($token->{attributes}->{manifest}->{value});                  ->($token->{attributes}->{manifest}->{value});
3734              ## ISSUE: No relative reference resolution?              ## ISSUE: Spec is unclear on relative references.
3735                ## According to Hixie (#whatwg 2008-03-19), it should be
3736                ## resolved against the base URI of the document in HTML
3737                ## or xml:base of the element in XHTML.
3738            } else {            } else {
3739              !!!cp ('t25');              !!!cp ('t25');
3740              $self->{application_cache_selection}->(undef);              $self->{application_cache_selection}->(undef);
3741            }            }
3742    
3743              !!!nack ('t25c');
3744    
3745            !!!next-token;            !!!next-token;
3746            return; ## Go to the "before head" insertion mode.            return; ## Go to the "before head" insertion mode.
3747          } else {          } else {
# Line 2779  sub _tree_construction_root_element ($) Line 3758  sub _tree_construction_root_element ($)
3758          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
3759        }        }
3760    
3761      my $root_element; !!!create-element ($root_element, 'html',, $token);      my $root_element;
3762        !!!create-element ($root_element, $HTML_NS, 'html',, $token);
3763      $self->{document}->append_child ($root_element);      $self->{document}->append_child ($root_element);
3764      push @{$self->{open_elements}}, [$root_element, 'html'];      push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
3765    
3766      $self->{application_cache_selection}->(undef);      $self->{application_cache_selection}->(undef);
3767    
3768      ## NOTE: Reprocess the token.      ## NOTE: Reprocess the token.
3769        !!!ack-later;
3770      return; ## Go to the "before head" insertion mode.      return; ## Go to the "before head" insertion mode.
3771    
3772      ## ISSUE: There is an issue in the spec      ## ISSUE: There is an issue in the spec
# Line 2809  sub _reset_insertion_mode ($) { Line 3790  sub _reset_insertion_mode ($) {
3790        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
3791          $last = 1;          $last = 1;
3792          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
3793            if ($self->{inner_html_node}->[1] eq 'td' or            !!!cp ('t28');
3794                $self->{inner_html_node}->[1] eq 'th') {            $node = $self->{inner_html_node};
3795              !!!cp ('t27');          } else {
3796              #            die "_reset_insertion_mode: t27";
           } else {  
             !!!cp ('t28');  
             $node = $self->{inner_html_node};  
           }  
3797          }          }
3798        }        }
3799              
3800        ## Step 4..13        ## Step 4..14
3801        my $new_mode = {        my $new_mode;
3802          if ($node->[1] & FOREIGN_EL) {
3803            !!!cp ('t28.1');
3804            ## NOTE: Strictly spaking, the line below only applies to MathML and
3805            ## SVG elements.  Currently the HTML syntax supports only MathML and
3806            ## SVG elements as foreigners.
3807            $new_mode = IN_BODY_IM | IN_FOREIGN_CONTENT_IM;
3808          } elsif ($node->[1] & TABLE_CELL_EL) {
3809            if ($last) {
3810              !!!cp ('t28.2');
3811              #
3812            } else {
3813              !!!cp ('t28.3');
3814              $new_mode = IN_CELL_IM;
3815            }
3816          } else {
3817            !!!cp ('t28.4');
3818            $new_mode = {
3819                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
3820                        ## NOTE: |option| and |optgroup| do not set                        ## NOTE: |option| and |optgroup| do not set
3821                        ## insertion mode to "in select" by themselves.                        ## insertion mode to "in select" by themselves.
                       td => IN_CELL_IM,  
                       th => IN_CELL_IM,  
3822                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
3823                        tbody => IN_TABLE_BODY_IM,                        tbody => IN_TABLE_BODY_IM,
3824                        thead => IN_TABLE_BODY_IM,                        thead => IN_TABLE_BODY_IM,
# Line 2837  sub _reset_insertion_mode ($) { Line 3829  sub _reset_insertion_mode ($) {
3829                        head => IN_BODY_IM, # not in head!                        head => IN_BODY_IM, # not in head!
3830                        body => IN_BODY_IM,                        body => IN_BODY_IM,
3831                        frameset => IN_FRAMESET_IM,                        frameset => IN_FRAMESET_IM,
3832                       }->{$node->[1]};                       }->{$node->[0]->manakai_local_name};
3833          }
3834        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
3835                
3836        ## Step 14        ## Step 15
3837        if ($node->[1] eq 'html') {        if ($node->[1] & HTML_EL) {
3838          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
3839            !!!cp ('t29');            !!!cp ('t29');
3840            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
# Line 2855  sub _reset_insertion_mode ($) { Line 3848  sub _reset_insertion_mode ($) {
3848          !!!cp ('t31');          !!!cp ('t31');
3849        }        }
3850                
3851        ## Step 15        ## Step 16
3852        $self->{insertion_mode} = IN_BODY_IM and return if $last;        $self->{insertion_mode} = IN_BODY_IM and return if $last;
3853                
3854        ## Step 16        ## Step 17
3855        $i--;        $i--;
3856        $node = $self->{open_elements}->[$i];        $node = $self->{open_elements}->[$i];
3857                
3858        ## Step 17        ## Step 18
3859        redo S3;        redo S3;
3860      } # S3      } # S3
3861    
# Line 2974  sub _tree_construction_main ($) { Line 3967  sub _tree_construction_main ($) {
3967      ## Step 1      ## Step 1
3968      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
3969      my $el;      my $el;
3970      !!!create-element ($el, $start_tag_name, $token->{attributes}, $token);      !!!create-element ($el, $HTML_NS, $start_tag_name, $token->{attributes}, $token);
3971    
3972      ## Step 2      ## Step 2
3973      $insert->($el);      $insert->($el);
# Line 2985  sub _tree_construction_main ($) { Line 3978  sub _tree_construction_main ($) {
3978    
3979      ## Step 4      ## Step 4
3980      my $text = '';      my $text = '';
3981        !!!nack ('t40.1');
3982      !!!next-token;      !!!next-token;
3983      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
3984        !!!cp ('t40');        !!!cp ('t40');
# Line 3011  sub _tree_construction_main ($) { Line 4005  sub _tree_construction_main ($) {
4005        ## NOTE: An end-of-file token.        ## NOTE: An end-of-file token.
4006        if ($content_model_flag == CDATA_CONTENT_MODEL) {        if ($content_model_flag == CDATA_CONTENT_MODEL) {
4007          !!!cp ('t43');          !!!cp ('t43');
4008          !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);          !!!parse-error (type => 'in CDATA:#eof', token => $token);
4009        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
4010          !!!cp ('t44');          !!!cp ('t44');
4011          !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);          !!!parse-error (type => 'in RCDATA:#eof', token => $token);
4012        } else {        } else {
4013          die "$0: $content_model_flag in parse_rcdata";          die "$0: $content_model_flag in parse_rcdata";
4014        }        }
# Line 3024  sub _tree_construction_main ($) { Line 4018  sub _tree_construction_main ($) {
4018    
4019    my $script_start_tag = sub () {    my $script_start_tag = sub () {
4020      my $script_el;      my $script_el;
4021      !!!create-element ($script_el, 'script', $token->{attributes}, $token);      !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
4022      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
4023    
4024      $self->{content_model} = CDATA_CONTENT_MODEL;      $self->{content_model} = CDATA_CONTENT_MODEL;
4025      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
4026            
4027      my $text = '';      my $text = '';
4028        !!!nack ('t45.1');
4029      !!!next-token;      !!!next-token;
4030      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
4031        !!!cp ('t45');        !!!cp ('t45');
# Line 3050  sub _tree_construction_main ($) { Line 4045  sub _tree_construction_main ($) {
4045        ## Ignore the token        ## Ignore the token
4046      } else {      } else {
4047        !!!cp ('t48');        !!!cp ('t48');
4048        !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);        !!!parse-error (type => 'in CDATA:#eof', token => $token);
4049        ## ISSUE: And ignore?        ## ISSUE: And ignore?
4050        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
4051      }      }
# Line 3088  sub _tree_construction_main ($) { Line 4083  sub _tree_construction_main ($) {
4083        my $formatting_element;        my $formatting_element;
4084        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
4085        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
4086          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[0] eq '#marker') {
4087              !!!cp ('t52');
4088              last AFE;
4089            } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
4090                         eq $tag_name) {
4091            !!!cp ('t51');            !!!cp ('t51');
4092            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
4093            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
4094            last AFE;            last AFE;
         } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {  
           !!!cp ('t52');  
           last AFE;  
4095          }          }
4096        } # AFE        } # AFE
4097        unless (defined $formatting_element) {        unless (defined $formatting_element) {
4098          !!!cp ('t53');          !!!cp ('t53');
4099          !!!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);
4100          ## Ignore the token          ## Ignore the token
4101          !!!next-token;          !!!next-token;
4102          return;          return;
# Line 3117  sub _tree_construction_main ($) { Line 4113  sub _tree_construction_main ($) {
4113              last INSCOPE;              last INSCOPE;
4114            } else { # in open elements but not in scope            } else { # in open elements but not in scope
4115              !!!cp ('t55');              !!!cp ('t55');
4116              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},              !!!parse-error (type => 'unmatched end tag',
4117                                text => $token->{tag_name},
4118                              token => $end_tag_token);                              token => $end_tag_token);
4119              ## Ignore the token              ## Ignore the token
4120              !!!next-token;              !!!next-token;
4121              return;              return;
4122            }            }
4123          } 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]}) {  
4124            !!!cp ('t56');            !!!cp ('t56');
4125            $in_scope = 0;            $in_scope = 0;
4126          }          }
4127        } # INSCOPE        } # INSCOPE
4128        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
4129          !!!cp ('t57');          !!!cp ('t57');
4130          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},          !!!parse-error (type => 'unmatched end tag',
4131                            text => $token->{tag_name},
4132                          token => $end_tag_token);                          token => $end_tag_token);
4133          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
4134          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
# Line 3141  sub _tree_construction_main ($) { Line 4136  sub _tree_construction_main ($) {
4136        }        }
4137        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
4138          !!!cp ('t58');          !!!cp ('t58');
4139          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1],          !!!parse-error (type => 'not closed',
4140                            text => $self->{open_elements}->[-1]->[0]
4141                                ->manakai_local_name,
4142                          token => $end_tag_token);                          token => $end_tag_token);
4143        }        }
4144                
# Line 3150  sub _tree_construction_main ($) { Line 4147  sub _tree_construction_main ($) {
4147        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
4148        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
4149          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
4150          if (not $formatting_category->{$node->[1]} and          if (not ($node->[1] & FORMATTING_EL) and
4151              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
4152              ($special_category->{$node->[1]} or              ($node->[1] & SPECIAL_EL or
4153               $scoping_category->{$node->[1]})) { ## Scoping is redundant, maybe               $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
4154            !!!cp ('t59');            !!!cp ('t59');
4155            $furthest_block = $node;            $furthest_block = $node;
4156            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
# Line 3239  sub _tree_construction_main ($) { Line 4236  sub _tree_construction_main ($) {
4236        } # S7          } # S7  
4237                
4238        ## Step 8        ## Step 8
4239        if ({        if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
            table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,  
           }->{$common_ancestor_node->[1]}) {  
4240          my $foster_parent_element;          my $foster_parent_element;
4241          my $next_sibling;          my $next_sibling;
4242                           OE: for (reverse 0..$#{$self->{open_elements}}) {          OE: for (reverse 0..$#{$self->{open_elements}}) {
4243                             if ($self->{open_elements}->[$_]->[1] eq 'table') {            if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
4244                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4245                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
4246                                 !!!cp ('t65.1');                                 !!!cp ('t65.1');
# Line 3318  sub _tree_construction_main ($) { Line 4313  sub _tree_construction_main ($) {
4313    
4314    my $insert_to_foster = sub {    my $insert_to_foster = sub {
4315      my $child = shift;      my $child = shift;
4316      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]}) {  
4317        # MUST        # MUST
4318        my $foster_parent_element;        my $foster_parent_element;
4319        my $next_sibling;        my $next_sibling;
4320                           OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
4321                             if ($self->{open_elements}->[$_]->[1] eq 'table') {          if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
4322                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4323                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
4324                                 !!!cp ('t70');                                 !!!cp ('t70');
# Line 3350  sub _tree_construction_main ($) { Line 4343  sub _tree_construction_main ($) {
4343      }      }
4344    }; # $insert_to_foster    }; # $insert_to_foster
4345    
4346    B: {    B: while (1) {
4347      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
4348        !!!cp ('t73');        !!!cp ('t73');
4349        !!!parse-error (type => 'DOCTYPE in the middle', token => $token);        !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
4350        ## Ignore the token        ## Ignore the token
4351        ## Stay in the phase        ## Stay in the phase
4352        !!!next-token;        !!!next-token;
4353        redo B;        next B;
4354      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
4355               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
4356        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4357          !!!cp ('t79');          !!!cp ('t79');
4358          !!!parse-error (type => 'after html:html', token => $token);          !!!parse-error (type => 'after html', text => 'html', token => $token);
4359          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
4360        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
4361          !!!cp ('t80');          !!!cp ('t80');
4362          !!!parse-error (type => 'after html:html', token => $token);          !!!parse-error (type => 'after html', text => 'html', token => $token);
4363          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
4364        } else {        } else {
4365          !!!cp ('t81');          !!!cp ('t81');
# Line 3383  sub _tree_construction_main ($) { Line 4376  sub _tree_construction_main ($) {
4376               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
4377          }          }
4378        }        }
4379          !!!nack ('t84.1');
4380        !!!next-token;        !!!next-token;
4381        redo B;        next B;
4382      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
4383        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
4384        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
# Line 3398  sub _tree_construction_main ($) { Line 4392  sub _tree_construction_main ($) {
4392          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
4393        }        }
4394        !!!next-token;        !!!next-token;
4395        redo B;        next B;
4396      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
4397          if ($token->{type} == CHARACTER_TOKEN) {
4398            !!!cp ('t87.1');
4399            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4400            !!!next-token;
4401            next B;
4402          } elsif ($token->{type} == START_TAG_TOKEN) {
4403            if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
4404                 $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
4405                not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
4406                ($token->{tag_name} eq 'svg' and
4407                 $self->{open_elements}->[-1]->[1] & MML_AXML_EL)) {
4408              ## NOTE: "using the rules for secondary insertion mode"then"continue"
4409              !!!cp ('t87.2');
4410              #
4411            } elsif ({
4412                      b => 1, big => 1, blockquote => 1, body => 1, br => 1,
4413                      center => 1, code => 1, dd => 1, div => 1, dl => 1, dt => 1,
4414                      em => 1, embed => 1, font => 1, h1 => 1, h2 => 1, h3 => 1,
4415                      h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, i => 1,
4416                      img => 1, li => 1, listing => 1, menu => 1, meta => 1,
4417                      nobr => 1, ol => 1, p => 1, pre => 1, ruby => 1, s => 1,
4418                      small => 1, span => 1, strong => 1, strike => 1, sub => 1,
4419                      sup => 1, table => 1, tt => 1, u => 1, ul => 1, var => 1,
4420                     }->{$token->{tag_name}}) {
4421              !!!cp ('t87.2');
4422              !!!parse-error (type => 'not closed',
4423                              text => $self->{open_elements}->[-1]->[0]
4424                                  ->manakai_local_name,
4425                              token => $token);
4426    
4427              pop @{$self->{open_elements}}
4428                  while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4429    
4430              $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4431              ## Reprocess.
4432              next B;
4433            } else {
4434              my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
4435              my $tag_name = $token->{tag_name};
4436              if ($nsuri eq $SVG_NS) {
4437                $tag_name = {
4438                   altglyph => 'altGlyph',
4439                   altglyphdef => 'altGlyphDef',
4440                   altglyphitem => 'altGlyphItem',
4441                   animatecolor => 'animateColor',
4442                   animatemotion => 'animateMotion',
4443                   animatetransform => 'animateTransform',
4444                   clippath => 'clipPath',
4445                   feblend => 'feBlend',
4446                   fecolormatrix => 'feColorMatrix',
4447                   fecomponenttransfer => 'feComponentTransfer',
4448                   fecomposite => 'feComposite',
4449                   feconvolvematrix => 'feConvolveMatrix',
4450                   fediffuselighting => 'feDiffuseLighting',
4451                   fedisplacementmap => 'feDisplacementMap',
4452                   fedistantlight => 'feDistantLight',
4453                   feflood => 'feFlood',
4454                   fefunca => 'feFuncA',
4455                   fefuncb => 'feFuncB',
4456                   fefuncg => 'feFuncG',
4457                   fefuncr => 'feFuncR',
4458                   fegaussianblur => 'feGaussianBlur',
4459                   feimage => 'feImage',
4460                   femerge => 'feMerge',
4461                   femergenode => 'feMergeNode',
4462                   femorphology => 'feMorphology',
4463                   feoffset => 'feOffset',
4464                   fepointlight => 'fePointLight',
4465                   fespecularlighting => 'feSpecularLighting',
4466                   fespotlight => 'feSpotLight',
4467                   fetile => 'feTile',
4468                   feturbulence => 'feTurbulence',
4469                   foreignobject => 'foreignObject',
4470                   glyphref => 'glyphRef',
4471                   lineargradient => 'linearGradient',
4472                   radialgradient => 'radialGradient',
4473                   #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
4474                   textpath => 'textPath',  
4475                }->{$tag_name} || $tag_name;
4476              }
4477    
4478              ## "adjust SVG attributes" (SVG only) - done in insert-element-f
4479    
4480              ## "adjust foreign attributes" - done in insert-element-f
4481    
4482              !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
4483    
4484              if ($self->{self_closing}) {
4485                pop @{$self->{open_elements}};
4486                !!!ack ('t87.3');
4487              } else {
4488                !!!cp ('t87.4');
4489              }
4490    
4491              !!!next-token;
4492              next B;
4493            }
4494          } elsif ($token->{type} == END_TAG_TOKEN) {
4495            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4496            !!!cp ('t87.5');
4497            #
4498          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4499            !!!cp ('t87.6');
4500            !!!parse-error (type => 'not closed',
4501                            text => $self->{open_elements}->[-1]->[0]
4502                                ->manakai_local_name,
4503                            token => $token);
4504    
4505            pop @{$self->{open_elements}}
4506                while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4507    
4508            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4509            ## Reprocess.
4510            next B;
4511          } else {
4512            die "$0: $token->{type}: Unknown token type";        
4513          }
4514        }
4515    
4516        if ($self->{insertion_mode} & HEAD_IMS) {
4517        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4518          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4519            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4520              !!!cp ('t88.2');              !!!cp ('t88.2');
4521              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4522                #
4523            } else {            } else {
4524              !!!cp ('t88.1');              !!!cp ('t88.1');
4525              ## Ignore the token.              ## Ignore the token.
4526              !!!next-token;              #
             redo B;  
4527            }            }
4528            unless (length $token->{data}) {            unless (length $token->{data}) {
4529              !!!cp ('t88');              !!!cp ('t88');
4530              !!!next-token;              !!!next-token;
4531              redo B;              next B;
4532            }            }
4533    ## TODO: set $token->{column} appropriately
4534          }          }
4535    
4536          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4537            !!!cp ('t89');            !!!cp ('t89');
4538            ## As if <head>            ## As if <head>
4539            !!!create-element ($self->{head_element}, 'head',, $token);            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4540            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4541            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            push @{$self->{open_elements}},
4542                  [$self->{head_element}, $el_category->{head}];
4543    
4544            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4545            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
# Line 3433  sub _tree_construction_main ($) { Line 4549  sub _tree_construction_main ($) {
4549            !!!cp ('t90');            !!!cp ('t90');
4550            ## As if </noscript>            ## As if </noscript>
4551            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4552            !!!parse-error (type => 'in noscript:#character', token => $token);            !!!parse-error (type => 'in noscript:#text', token => $token);
4553                        
4554            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4555            ## As if </head>            ## As if </head>
# Line 3449  sub _tree_construction_main ($) { Line 4565  sub _tree_construction_main ($) {
4565            !!!cp ('t92');            !!!cp ('t92');
4566          }          }
4567    
4568              ## "after head" insertion mode          ## "after head" insertion mode
4569              ## As if <body>          ## As if <body>
4570              !!!insert-element ('body',, $token);          !!!insert-element ('body',, $token);
4571              $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
4572              ## reprocess          ## reprocess
4573              redo B;          next B;
4574            } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4575              if ($token->{tag_name} eq 'head') {          if ($token->{tag_name} eq 'head') {
4576                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4577                  !!!cp ('t93');              !!!cp ('t93');
4578                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes}, $token);              !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
4579                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              $self->{open_elements}->[-1]->[0]->append_child
4580                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];                  ($self->{head_element});
4581                  $self->{insertion_mode} = IN_HEAD_IM;              push @{$self->{open_elements}},
4582                  !!!next-token;                  [$self->{head_element}, $el_category->{head}];
4583                  redo B;              $self->{insertion_mode} = IN_HEAD_IM;
4584                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {              !!!nack ('t93.1');
4585                  !!!cp ('t94');              !!!next-token;
4586                  #              next B;
4587                } else {            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4588                  !!!cp ('t95');              !!!cp ('t93.2');
4589                  !!!parse-error (type => 'in head:head', token => $token); # or in head noscript              !!!parse-error (type => 'after head', text => 'head',
4590                  ## Ignore the token                              token => $token);
4591                  !!!next-token;              ## Ignore the token
4592                  redo B;              !!!nack ('t93.3');
4593                }              !!!next-token;
4594              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              next B;
4595                !!!cp ('t96');            } else {
4596                ## As if <head>              !!!cp ('t95');
4597                !!!create-element ($self->{head_element}, 'head',, $token);              !!!parse-error (type => 'in head:head',
4598                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                              token => $token); # or in head noscript
4599                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];              ## Ignore the token
4600                !!!nack ('t95.1');
4601                !!!next-token;
4602                next B;
4603              }
4604            } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4605              !!!cp ('t96');
4606              ## As if <head>
4607              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4608              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4609              push @{$self->{open_elements}},
4610                  [$self->{head_element}, $el_category->{head}];
4611    
4612                $self->{insertion_mode} = IN_HEAD_IM;            $self->{insertion_mode} = IN_HEAD_IM;
4613                ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4614              } else {          } else {
4615                !!!cp ('t97');            !!!cp ('t97');
4616              }          }
4617    
4618              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
4619                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4620                  !!!cp ('t98');                  !!!cp ('t98');
4621                  ## As if </noscript>                  ## As if </noscript>
4622                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4623                  !!!parse-error (type => 'in noscript:base', token => $token);                  !!!parse-error (type => 'in noscript', text => 'base',
4624                                    token => $token);
4625                                
4626                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4627                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
# Line 3504  sub _tree_construction_main ($) { Line 4632  sub _tree_construction_main ($) {
4632                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4633                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4634                  !!!cp ('t100');                  !!!cp ('t100');
4635                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4636                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4637                    push @{$self->{open_elements}},
4638                        [$self->{head_element}, $el_category->{head}];
4639                } else {                } else {
4640                  !!!cp ('t101');                  !!!cp ('t101');
4641                }                }
# Line 3513  sub _tree_construction_main ($) { Line 4643  sub _tree_construction_main ($) {
4643                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4644                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4645                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4646                  !!!nack ('t101.1');
4647                !!!next-token;                !!!next-token;
4648                redo B;                next B;
4649              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
4650                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4651                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4652                  !!!cp ('t102');                  !!!cp ('t102');
4653                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4654                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4655                    push @{$self->{open_elements}},
4656                        [$self->{head_element}, $el_category->{head}];
4657                } else {                } else {
4658                  !!!cp ('t103');                  !!!cp ('t103');
4659                }                }
# Line 3528  sub _tree_construction_main ($) { Line 4661  sub _tree_construction_main ($) {
4661                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4662                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4663                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4664                  !!!ack ('t103.1');
4665                !!!next-token;                !!!next-token;
4666                redo B;                next B;
4667              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
4668                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4669                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4670                  !!!cp ('t104');                  !!!cp ('t104');
4671                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4672                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4673                    push @{$self->{open_elements}},
4674                        [$self->{head_element}, $el_category->{head}];
4675                } else {                } else {
4676                  !!!cp ('t105');                  !!!cp ('t105');
4677                }                }
# Line 3543  sub _tree_construction_main ($) { Line 4679  sub _tree_construction_main ($) {
4679                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.
4680    
4681                unless ($self->{confident}) {                unless ($self->{confident}) {
4682                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) {
4683                    !!!cp ('t106');                    !!!cp ('t106');
4684                      ## NOTE: Whether the encoding is supported or not is handled
4685                      ## in the {change_encoding} callback.
4686                    $self->{change_encoding}                    $self->{change_encoding}
4687                        ->($self, $token->{attributes}->{charset}->{value},                        ->($self, $token->{attributes}->{charset}->{value},
4688                           $token);                           $token);
# Line 3554  sub _tree_construction_main ($) { Line 4692  sub _tree_construction_main ($) {
4692                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
4693                                                 ->{has_reference});                                                 ->{has_reference});
4694                  } elsif ($token->{attributes}->{content}) {                  } elsif ($token->{attributes}->{content}) {
                   ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
4695                    if ($token->{attributes}->{content}->{value}                    if ($token->{attributes}->{content}->{value}
4696                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                        =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4697                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
4698                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4699                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20\x3B]*))/x) {
4700                      !!!cp ('t107');                      !!!cp ('t107');
4701                        ## NOTE: Whether the encoding is supported or not is handled
4702                        ## in the {change_encoding} callback.
4703                      $self->{change_encoding}                      $self->{change_encoding}
4704                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
4705                             $token);                             $token);
# Line 3591  sub _tree_construction_main ($) { Line 4730  sub _tree_construction_main ($) {
4730    
4731                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4732                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4733                  !!!ack ('t110.1');
4734                !!!next-token;                !!!next-token;
4735                redo B;                next B;
4736              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
4737                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4738                  !!!cp ('t111');                  !!!cp ('t111');
4739                  ## As if </noscript>                  ## As if </noscript>
4740                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4741                  !!!parse-error (type => 'in noscript:title', token => $token);                  !!!parse-error (type => 'in noscript', text => 'title',
4742                                    token => $token);
4743                                
4744                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4745                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4746                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4747                  !!!cp ('t112');                  !!!cp ('t112');
4748                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4749                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4750                    push @{$self->{open_elements}},
4751                        [$self->{head_element}, $el_category->{head}];
4752                } else {                } else {
4753                  !!!cp ('t113');                  !!!cp ('t113');
4754                }                }
# Line 3616  sub _tree_construction_main ($) { Line 4759  sub _tree_construction_main ($) {
4759                $parse_rcdata->(RCDATA_CONTENT_MODEL);                $parse_rcdata->(RCDATA_CONTENT_MODEL);
4760                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4761                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4762                redo B;                next B;
4763              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style' or
4764                         $token->{tag_name} eq 'noframes') {
4765                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
4766                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
4767                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4768                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4769                  !!!cp ('t114');                  !!!cp ('t114');
4770                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4771                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4772                    push @{$self->{open_elements}},
4773                        [$self->{head_element}, $el_category->{head}];
4774                } else {                } else {
4775                  !!!cp ('t115');                  !!!cp ('t115');
4776                }                }
4777                $parse_rcdata->(CDATA_CONTENT_MODEL);                $parse_rcdata->(CDATA_CONTENT_MODEL);
4778                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4779                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4780                redo B;                next B;
4781              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4782                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
4783                  !!!cp ('t116');                  !!!cp ('t116');
4784                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
4785                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4786                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
4787                    !!!nack ('t116.1');
4788                  !!!next-token;                  !!!next-token;
4789                  redo B;                  next B;
4790                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4791                  !!!cp ('t117');                  !!!cp ('t117');
4792                  !!!parse-error (type => 'in noscript:noscript', token => $token);                  !!!parse-error (type => 'in noscript', text => 'noscript',
4793                                    token => $token);
4794                  ## Ignore the token                  ## Ignore the token
4795                    !!!nack ('t117.1');
4796                  !!!next-token;                  !!!next-token;
4797                  redo B;                  next B;
4798                } else {                } else {
4799                  !!!cp ('t118');                  !!!cp ('t118');
4800                  #                  #
# Line 3655  sub _tree_construction_main ($) { Line 4804  sub _tree_construction_main ($) {
4804                  !!!cp ('t119');                  !!!cp ('t119');
4805                  ## As if </noscript>                  ## As if </noscript>
4806                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4807                  !!!parse-error (type => 'in noscript:script', token => $token);                  !!!parse-error (type => 'in noscript', text => 'script',
4808                                    token => $token);
4809                                
4810                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4811                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4812                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4813                  !!!cp ('t120');                  !!!cp ('t120');
4814                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'after head',
4815                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                                  text => $token->{tag_name}, token => $token);
4816                    push @{$self->{open_elements}},
4817                        [$self->{head_element}, $el_category->{head}];
4818                } else {                } else {
4819                  !!!cp ('t121');                  !!!cp ('t121');
4820                }                }
# Line 3671  sub _tree_construction_main ($) { Line 4823  sub _tree_construction_main ($) {
4823                $script_start_tag->();                $script_start_tag->();
4824                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4825                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4826                redo B;                next B;
4827              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
4828                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
4829                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4830                  !!!cp ('t122');                  !!!cp ('t122');
4831                  ## As if </noscript>                  ## As if </noscript>
4832                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4833                  !!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'in noscript',
4834                                    text => $token->{tag_name}, token => $token);
4835                                    
4836                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4837                  ## As if </head>                  ## As if </head>
# Line 3705  sub _tree_construction_main ($) { Line 4858  sub _tree_construction_main ($) {
4858                } else {                } else {
4859                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
4860                }                }
4861                  !!!nack ('t127.1');
4862                !!!next-token;                !!!next-token;
4863                redo B;                next B;
4864              } else {              } else {
4865                !!!cp ('t128');                !!!cp ('t128');
4866                #                #
# Line 3716  sub _tree_construction_main ($) { Line 4870  sub _tree_construction_main ($) {
4870                !!!cp ('t129');                !!!cp ('t129');
4871                ## As if </noscript>                ## As if </noscript>
4872                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4873                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'in noscript:/',
4874                                  text => $token->{tag_name}, token => $token);
4875                                
4876                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4877                ## As if </head>                ## As if </head>
# Line 3738  sub _tree_construction_main ($) { Line 4893  sub _tree_construction_main ($) {
4893              !!!insert-element ('body',, $token);              !!!insert-element ('body',, $token);
4894              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4895              ## reprocess              ## reprocess
4896              redo B;              !!!ack-later;
4897                next B;
4898            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
4899              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
4900                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4901                  !!!cp ('t132');                  !!!cp ('t132');
4902                  ## As if <head>                  ## As if <head>
4903                  !!!create-element ($self->{head_element}, 'head',, $token);                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4904                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4905                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4906                        [$self->{head_element}, $el_category->{head}];
4907    
4908                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4909                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4910                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4911                  !!!next-token;                  !!!next-token;
4912                  redo B;                  next B;
4913                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4914                  !!!cp ('t133');                  !!!cp ('t133');
4915                  ## As if </noscript>                  ## As if </noscript>
4916                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4917                  !!!parse-error (type => 'in noscript:/head', token => $token);                  !!!parse-error (type => 'in noscript:/',
4918                                    text => 'head', token => $token);
4919                                    
4920                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4921                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4922                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4923                  !!!next-token;                  !!!next-token;
4924                  redo B;                  next B;
4925                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4926                  !!!cp ('t134');                  !!!cp ('t134');
4927                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4928                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4929                  !!!next-token;                  !!!next-token;
4930                  redo B;                  next B;
4931                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4932                    !!!cp ('t134.1');
4933                    !!!parse-error (type => 'unmatched end tag', text => 'head',
4934                                    token => $token);
4935                    ## Ignore the token
4936                    !!!next-token;
4937                    next B;
4938                } else {                } else {
4939                  !!!cp ('t135');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 #  
4940                }                }
4941              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4942                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
# Line 3780  sub _tree_construction_main ($) { Line 4944  sub _tree_construction_main ($) {
4944                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4945                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4946                  !!!next-token;                  !!!next-token;
4947                  redo B;                  next B;
4948                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM or
4949                           $self->{insertion_mode} == AFTER_HEAD_IM) {
4950                  !!!cp ('t137');                  !!!cp ('t137');
4951                  !!!parse-error (type => 'unmatched end tag:noscript', token => $token);                  !!!parse-error (type => 'unmatched end tag',
4952                                    text => 'noscript', token => $token);
4953                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
4954                  !!!next-token;                  !!!next-token;
4955                  redo B;                  next B;
4956                } else {                } else {
4957                  !!!cp ('t138');                  !!!cp ('t138');
4958                  #                  #
# Line 3794  sub _tree_construction_main ($) { Line 4960  sub _tree_construction_main ($) {
4960              } elsif ({              } elsif ({
4961                        body => 1, html => 1,                        body => 1, html => 1,
4962                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4963                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM or
4964                  !!!cp ('t139');                    $self->{insertion_mode} == IN_HEAD_IM or
4965                  ## 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) {  
4966                  !!!cp ('t140');                  !!!cp ('t140');
4967                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
4968                                    text => $token->{tag_name}, token => $token);
4969                    ## Ignore the token
4970                    !!!next-token;
4971                    next B;
4972                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4973                    !!!cp ('t140.1');
4974                    !!!parse-error (type => 'unmatched end tag',
4975                                    text => $token->{tag_name}, token => $token);
4976                  ## Ignore the token                  ## Ignore the token
4977                  !!!next-token;                  !!!next-token;
4978                  redo B;                  next B;
4979                } else {                } else {
4980                  !!!cp ('t141');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
4981                }                }
4982                              } elsif ($token->{tag_name} eq 'p') {
4983                #                !!!cp ('t142');
4984              } elsif ({                !!!parse-error (type => 'unmatched end tag',
4985                        p => 1, br => 1,                                text => $token->{tag_name}, token => $token);
4986                       }->{$token->{tag_name}}) {                ## Ignore the token
4987                  !!!next-token;
4988                  next B;
4989                } elsif ($token->{tag_name} eq 'br') {
4990                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4991                  !!!cp ('t142');                  !!!cp ('t142.2');
4992                  ## As if <head>                  ## (before head) as if <head>, (in head) as if </head>
4993                  !!!create-element ($self->{head_element}, 'head',, $token);                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4994                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4995                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  $self->{insertion_mode} = AFTER_HEAD_IM;
4996      
4997                    ## Reprocess in the "after head" insertion mode...
4998                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4999                    !!!cp ('t143.2');
5000                    ## As if </head>
5001                    pop @{$self->{open_elements}};
5002                    $self->{insertion_mode} = AFTER_HEAD_IM;
5003      
5004                    ## Reprocess in the "after head" insertion mode...
5005                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
5006                    !!!cp ('t143.3');
5007                    ## ISSUE: Two parse errors for <head><noscript></br>
5008                    !!!parse-error (type => 'unmatched end tag',
5009                                    text => 'br', token => $token);
5010                    ## As if </noscript>
5011                    pop @{$self->{open_elements}};
5012                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
5013    
5014                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
5015                } else {                  ## As if </head>
5016                  !!!cp ('t143');                  pop @{$self->{open_elements}};
5017                }                  $self->{insertion_mode} = AFTER_HEAD_IM;
5018    
5019                #                  ## Reprocess in the "after head" insertion mode...
5020              } else {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
5021                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                  !!!cp ('t143.4');
                 !!!cp ('t144');  
5022                  #                  #
5023                } else {                } else {
5024                  !!!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;  
5025                }                }
5026    
5027                  ## ISSUE: does not agree with IE7 - it doesn't ignore </br>.
5028                  !!!parse-error (type => 'unmatched end tag',
5029                                  text => 'br', token => $token);
5030                  ## Ignore the token
5031                  !!!next-token;
5032                  next B;
5033                } else {
5034                  !!!cp ('t145');
5035                  !!!parse-error (type => 'unmatched end tag',
5036                                  text => $token->{tag_name}, token => $token);
5037                  ## Ignore the token
5038                  !!!next-token;
5039                  next B;
5040              }              }
5041    
5042              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
5043                !!!cp ('t146');                !!!cp ('t146');
5044                ## As if </noscript>                ## As if </noscript>
5045                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5046                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'in noscript:/',
5047                                  text => $token->{tag_name}, token => $token);
5048                                
5049                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
5050                ## As if </head>                ## As if </head>
# Line 3864  sub _tree_construction_main ($) { Line 5060  sub _tree_construction_main ($) {
5060              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
5061  ## ISSUE: This case cannot be reached?  ## ISSUE: This case cannot be reached?
5062                !!!cp ('t148');                !!!cp ('t148');
5063                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'unmatched end tag',
5064                                  text => $token->{tag_name}, token => $token);
5065                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
5066                !!!next-token;                !!!next-token;
5067                redo B;                next B;
5068              } else {              } else {
5069                !!!cp ('t149');                !!!cp ('t149');
5070              }              }
# Line 3877  sub _tree_construction_main ($) { Line 5074  sub _tree_construction_main ($) {
5074              !!!insert-element ('body',, $token);              !!!insert-element ('body',, $token);
5075              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
5076              ## reprocess              ## reprocess
5077              redo B;              next B;
5078        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5079          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
5080            !!!cp ('t149.1');            !!!cp ('t149.1');
5081    
5082            ## NOTE: As if <head>            ## NOTE: As if <head>
5083            !!!create-element ($self->{head_element}, 'head',, $token);            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
5084            $self->{open_elements}->[-1]->[0]->append_child            $self->{open_elements}->[-1]->[0]->append_child
5085                ($self->{head_element});                ($self->{head_element});
5086            #push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            #push @{$self->{open_elements}},
5087              #    [$self->{head_element}, $el_category->{head}];
5088            #$self->{insertion_mode} = IN_HEAD_IM;            #$self->{insertion_mode} = IN_HEAD_IM;
5089            ## NOTE: Reprocess.            ## NOTE: Reprocess.
5090    
# Line 3930  sub _tree_construction_main ($) { Line 5128  sub _tree_construction_main ($) {
5128          !!!insert-element ('body',, $token);          !!!insert-element ('body',, $token);
5129          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
5130          ## NOTE: Reprocess.          ## NOTE: Reprocess.
5131          redo B;          next B;
5132        } else {        } else {
5133          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5134        }        }
# Line 3945  sub _tree_construction_main ($) { Line 5143  sub _tree_construction_main ($) {
5143              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5144    
5145              !!!next-token;              !!!next-token;
5146              redo B;              next B;
5147            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
5148              if ({              if ({
5149                   caption => 1, col => 1, colgroup => 1, tbody => 1,                   caption => 1, col => 1, colgroup => 1, tbody => 1,
# Line 3955  sub _tree_construction_main ($) { Line 5153  sub _tree_construction_main ($) {
5153                  ## have an element in table scope                  ## have an element in table scope
5154                  for (reverse 0..$#{$self->{open_elements}}) {                  for (reverse 0..$#{$self->{open_elements}}) {
5155                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5156                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] & TABLE_CELL_EL) {
5157                      !!!cp ('t151');                      !!!cp ('t151');
5158    
5159                      ## Close the cell                      ## Close the cell
5160                      !!!back-token; # <?>                      !!!back-token; # <x>
5161                      $token = {type => END_TAG_TOKEN, tag_name => $node->[1],                      $token = {type => END_TAG_TOKEN,
5162                                  tag_name => $node->[0]->manakai_local_name,
5163                                line => $token->{line},                                line => $token->{line},
5164                                column => $token->{column}};                                column => $token->{column}};
5165                      redo B;                      next B;
5166                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5167                      !!!cp ('t152');                      !!!cp ('t152');
5168                      ## ISSUE: This case can never be reached, maybe.                      ## ISSUE: This case can never be reached, maybe.
5169                      last;                      last;
# Line 3975  sub _tree_construction_main ($) { Line 5172  sub _tree_construction_main ($) {
5172    
5173                  !!!cp ('t153');                  !!!cp ('t153');
5174                  !!!parse-error (type => 'start tag not allowed',                  !!!parse-error (type => 'start tag not allowed',
5175                      value => $token->{tag_name}, token => $token);                      text => $token->{tag_name}, token => $token);
5176                  ## Ignore the token                  ## Ignore the token
5177                    !!!nack ('t153.1');
5178                  !!!next-token;                  !!!next-token;
5179                  redo B;                  next B;
5180                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
5181                  !!!parse-error (type => 'not closed:caption', token => $token);                  !!!parse-error (type => 'not closed', text => 'caption',
5182                                    token => $token);
5183                                    
5184                  ## NOTE: As if </caption>.                  ## NOTE: As if </caption>.
5185                  ## have a table element in table scope                  ## have a table element in table scope
# Line 3988  sub _tree_construction_main ($) { Line 5187  sub _tree_construction_main ($) {
5187                  INSCOPE: {                  INSCOPE: {
5188                    for (reverse 0..$#{$self->{open_elements}}) {                    for (reverse 0..$#{$self->{open_elements}}) {
5189                      my $node = $self->{open_elements}->[$_];                      my $node = $self->{open_elements}->[$_];
5190                      if ($node->[1] eq 'caption') {                      if ($node->[1] & CAPTION_EL) {
5191                        !!!cp ('t155');                        !!!cp ('t155');
5192                        $i = $_;                        $i = $_;
5193                        last INSCOPE;                        last INSCOPE;
5194                      } elsif ({                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
                               table => 1, html => 1,  
                              }->{$node->[1]}) {  
5195                        !!!cp ('t156');                        !!!cp ('t156');
5196                        last;                        last;
5197                      }                      }
# Line 4002  sub _tree_construction_main ($) { Line 5199  sub _tree_construction_main ($) {
5199    
5200                    !!!cp ('t157');                    !!!cp ('t157');
5201                    !!!parse-error (type => 'start tag not allowed',                    !!!parse-error (type => 'start tag not allowed',
5202                                    value => $token->{tag_name}, token => $token);                                    text => $token->{tag_name}, token => $token);
5203                    ## Ignore the token                    ## Ignore the token
5204                      !!!nack ('t157.1');
5205                    !!!next-token;                    !!!next-token;
5206                    redo B;                    next B;
5207                  } # INSCOPE                  } # INSCOPE
5208                                    
5209                  ## generate implied end tags                  ## generate implied end tags
5210                  while ({                  while ($self->{open_elements}->[-1]->[1]
5211                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
5212                    !!!cp ('t158');                    !!!cp ('t158');
5213                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5214                  }                  }
5215    
5216                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5217                    !!!cp ('t159');                    !!!cp ('t159');
5218                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                    !!!parse-error (type => 'not closed',
5219                                      text => $self->{open_elements}->[-1]->[0]
5220                                          ->manakai_local_name,
5221                                      token => $token);
5222                  } else {                  } else {
5223                    !!!cp ('t160');                    !!!cp ('t160');
5224                  }                  }
# Line 4030  sub _tree_construction_main ($) { Line 5230  sub _tree_construction_main ($) {
5230                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5231                                    
5232                  ## reprocess                  ## reprocess
5233                  redo B;                  !!!ack-later;
5234                    next B;
5235                } else {                } else {
5236                  !!!cp ('t161');                  !!!cp ('t161');
5237                  #                  #
# Line 4046  sub _tree_construction_main ($) { Line 5247  sub _tree_construction_main ($) {
5247                  my $i;                  my $i;
5248                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5249                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5250                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5251                      !!!cp ('t163');                      !!!cp ('t163');
5252                      $i = $_;                      $i = $_;
5253                      last INSCOPE;                      last INSCOPE;
5254                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5255                      !!!cp ('t164');                      !!!cp ('t164');
5256                      last INSCOPE;                      last INSCOPE;
5257                    }                    }
5258                  } # INSCOPE                  } # INSCOPE
5259                    unless (defined $i) {                    unless (defined $i) {
5260                      !!!cp ('t165');                      !!!cp ('t165');
5261                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                      !!!parse-error (type => 'unmatched end tag',
5262                                        text => $token->{tag_name},
5263                                        token => $token);
5264                      ## Ignore the token                      ## Ignore the token
5265                      !!!next-token;                      !!!next-token;
5266                      redo B;                      next B;
5267                    }                    }
5268                                    
5269                  ## generate implied end tags                  ## generate implied end tags
5270                  while ({                  while ($self->{open_elements}->[-1]->[1]
5271                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
5272                    !!!cp ('t166');                    !!!cp ('t166');
5273                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5274                  }                  }
5275    
5276                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5277                            ne $token->{tag_name}) {
5278                    !!!cp ('t167');                    !!!cp ('t167');
5279                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                    !!!parse-error (type => 'not closed',
5280                                      text => $self->{open_elements}->[-1]->[0]
5281                                          ->manakai_local_name,
5282                                      token => $token);
5283                  } else {                  } else {
5284                    !!!cp ('t168');                    !!!cp ('t168');
5285                  }                  }
# Line 4087  sub _tree_construction_main ($) { Line 5291  sub _tree_construction_main ($) {
5291                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5292                                    
5293                  !!!next-token;                  !!!next-token;
5294                  redo B;                  next B;
5295                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
5296                  !!!cp ('t169');                  !!!cp ('t169');
5297                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5298                                    text => $token->{tag_name}, token => $token);
5299                  ## Ignore the token                  ## Ignore the token
5300                  !!!next-token;                  !!!next-token;
5301                  redo B;                  next B;
5302                } else {                } else {
5303                  !!!cp ('t170');                  !!!cp ('t170');
5304                  #                  #
# Line 4105  sub _tree_construction_main ($) { Line 5310  sub _tree_construction_main ($) {
5310                  INSCOPE: {                  INSCOPE: {
5311                    for (reverse 0..$#{$self->{open_elements}}) {                    for (reverse 0..$#{$self->{open_elements}}) {
5312                      my $node = $self->{open_elements}->[$_];                      my $node = $self->{open_elements}->[$_];
5313                      if ($node->[1] eq $token->{tag_name}) {                      if ($node->[1] & CAPTION_EL) {
5314                        !!!cp ('t171');                        !!!cp ('t171');
5315                        $i = $_;                        $i = $_;
5316                        last INSCOPE;                        last INSCOPE;
5317                      } elsif ({                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
                               table => 1, html => 1,  
                              }->{$node->[1]}) {  
5318                        !!!cp ('t172');                        !!!cp ('t172');
5319                        last;                        last;
5320                      }                      }
# Line 4119  sub _tree_construction_main ($) { Line 5322  sub _tree_construction_main ($) {
5322    
5323                    !!!cp ('t173');                    !!!cp ('t173');
5324                    !!!parse-error (type => 'unmatched end tag',                    !!!parse-error (type => 'unmatched end tag',
5325                                    value => $token->{tag_name}, token => $token);                                    text => $token->{tag_name}, token => $token);
5326                    ## Ignore the token                    ## Ignore the token
5327                    !!!next-token;                    !!!next-token;
5328                    redo B;                    next B;
5329                  } # INSCOPE                  } # INSCOPE
5330                                    
5331                  ## generate implied end tags                  ## generate implied end tags
5332                  while ({                  while ($self->{open_elements}->[-1]->[1]
5333                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
5334                    !!!cp ('t174');                    !!!cp ('t174');
5335                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5336                  }                  }
5337                                    
5338                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5339                    !!!cp ('t175');                    !!!cp ('t175');
5340                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                    !!!parse-error (type => 'not closed',
5341                                      text => $self->{open_elements}->[-1]->[0]
5342                                          ->manakai_local_name,
5343                                      token => $token);
5344                  } else {                  } else {
5345                    !!!cp ('t176');                    !!!cp ('t176');
5346                  }                  }
# Line 4147  sub _tree_construction_main ($) { Line 5352  sub _tree_construction_main ($) {
5352                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5353                                    
5354                  !!!next-token;                  !!!next-token;
5355                  redo B;                  next B;
5356                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
5357                  !!!cp ('t177');                  !!!cp ('t177');
5358                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5359                                    text => $token->{tag_name}, token => $token);
5360                  ## Ignore the token                  ## Ignore the token
5361                  !!!next-token;                  !!!next-token;
5362                  redo B;                  next B;
5363                } else {                } else {
5364                  !!!cp ('t178');                  !!!cp ('t178');
5365                  #                  #
# Line 4169  sub _tree_construction_main ($) { Line 5375  sub _tree_construction_main ($) {
5375                INSCOPE: {                INSCOPE: {
5376                  for (reverse 0..$#{$self->{open_elements}}) {                  for (reverse 0..$#{$self->{open_elements}}) {
5377                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5378                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5379                      !!!cp ('t179');                      !!!cp ('t179');
5380                      $i = $_;                      $i = $_;
5381    
5382                      ## Close the cell                      ## Close the cell
5383                      !!!back-token; # </?>                      !!!back-token; # </x>
5384                      $token = {type => END_TAG_TOKEN, tag_name => $tn,                      $token = {type => END_TAG_TOKEN, tag_name => $tn,
5385                                line => $token->{line},                                line => $token->{line},
5386                                column => $token->{column}};                                column => $token->{column}};
5387                      redo B;                      next B;
5388                    } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {                    } elsif ($node->[1] & TABLE_CELL_EL) {
5389                      !!!cp ('t180');                      !!!cp ('t180');
5390                      $tn = $node->[1];                      $tn = $node->[0]->manakai_local_name;
5391                      ## NOTE: There is exactly one |td| or |th| element                      ## NOTE: There is exactly one |td| or |th| element
5392                      ## in scope in the stack of open elements by definition.                      ## in scope in the stack of open elements by definition.
5393                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5394                      ## ISSUE: Can this be reached?                      ## ISSUE: Can this be reached?
5395                      !!!cp ('t181');                      !!!cp ('t181');
5396                      last;                      last;
# Line 4195  sub _tree_construction_main ($) { Line 5399  sub _tree_construction_main ($) {
5399    
5400                  !!!cp ('t182');                  !!!cp ('t182');
5401                  !!!parse-error (type => 'unmatched end tag',                  !!!parse-error (type => 'unmatched end tag',
5402                      value => $token->{tag_name}, token => $token);                      text => $token->{tag_name}, token => $token);
5403                  ## Ignore the token                  ## Ignore the token
5404                  !!!next-token;                  !!!next-token;
5405                  redo B;                  next B;
5406                } # INSCOPE                } # INSCOPE
5407              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
5408                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5409                !!!parse-error (type => 'not closed:caption', token => $token);                !!!parse-error (type => 'not closed', text => 'caption',
5410                                  token => $token);
5411    
5412                ## As if </caption>                ## As if </caption>
5413                ## have a table element in table scope                ## have a table element in table scope
5414                my $i;                my $i;
5415                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5416                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5417                  if ($node->[1] eq 'caption') {                  if ($node->[1] & CAPTION_EL) {
5418                    !!!cp ('t184');                    !!!cp ('t184');
5419                    $i = $_;                    $i = $_;
5420                    last INSCOPE;                    last INSCOPE;
5421                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5422                    !!!cp ('t185');                    !!!cp ('t185');
5423                    last INSCOPE;                    last INSCOPE;
5424                  }                  }
5425                } # INSCOPE                } # INSCOPE
5426                unless (defined $i) {                unless (defined $i) {
5427                  !!!cp ('t186');                  !!!cp ('t186');
5428                  !!!parse-error (type => 'unmatched end tag:caption', token => $token);                  !!!parse-error (type => 'unmatched end tag',
5429                                    text => 'caption', token => $token);
5430                  ## Ignore the token                  ## Ignore the token
5431                  !!!next-token;                  !!!next-token;
5432                  redo B;                  next B;
5433                }                }
5434                                
5435                ## generate implied end tags                ## generate implied end tags
5436                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5437                  !!!cp ('t187');                  !!!cp ('t187');
5438                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5439                }                }
5440    
5441                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5442                  !!!cp ('t188');                  !!!cp ('t188');
5443                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                  !!!parse-error (type => 'not closed',
5444                                    text => $self->{open_elements}->[-1]->[0]
5445                                        ->manakai_local_name,
5446                                    token => $token);
5447                } else {                } else {
5448                  !!!cp ('t189');                  !!!cp ('t189');
5449                }                }
# Line 4250  sub _tree_construction_main ($) { Line 5455  sub _tree_construction_main ($) {
5455                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5456    
5457                ## reprocess                ## reprocess
5458                redo B;                next B;
5459              } elsif ({              } elsif ({
5460                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
5461                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5462                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
5463                  !!!cp ('t190');                  !!!cp ('t190');
5464                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5465                                    text => $token->{tag_name}, token => $token);
5466                  ## Ignore the token                  ## Ignore the token
5467                  !!!next-token;                  !!!next-token;
5468                  redo B;                  next B;
5469                } else {                } else {
5470                  !!!cp ('t191');                  !!!cp ('t191');
5471                  #                  #
# Line 4270  sub _tree_construction_main ($) { Line 5476  sub _tree_construction_main ($) {
5476                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
5477                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5478                !!!cp ('t192');                !!!cp ('t192');
5479                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'unmatched end tag',
5480                                  text => $token->{tag_name}, token => $token);
5481                ## Ignore the token                ## Ignore the token
5482                !!!next-token;                !!!next-token;
5483                redo B;                next B;
5484              } else {              } else {
5485                !!!cp ('t193');                !!!cp ('t193');
5486                #                #
5487              }              }
5488        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5489          for my $entry (@{$self->{open_elements}}) {          for my $entry (@{$self->{open_elements}}) {
5490            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]}) {  
5491              !!!cp ('t75');              !!!cp ('t75');
5492              !!!parse-error (type => 'in body:#eof', token => $token);              !!!parse-error (type => 'in body:#eof', token => $token);
5493              last;              last;
# Line 4307  sub _tree_construction_main ($) { Line 5511  sub _tree_construction_main ($) {
5511            unless (length $token->{data}) {            unless (length $token->{data}) {
5512              !!!cp ('t194');              !!!cp ('t194');
5513              !!!next-token;              !!!next-token;
5514              redo B;              next B;
5515            } else {            } else {
5516              !!!cp ('t195');              !!!cp ('t195');
5517            }            }
5518          }          }
5519    
5520              !!!parse-error (type => 'in table:#character', token => $token);          !!!parse-error (type => 'in table:#text', token => $token);
5521    
5522              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
5523              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
# Line 4321  sub _tree_construction_main ($) { Line 5525  sub _tree_construction_main ($) {
5525              ## result in a new Text node.              ## result in a new Text node.
5526              $reconstruct_active_formatting_elements->($insert_to_foster);              $reconstruct_active_formatting_elements->($insert_to_foster);
5527                            
5528              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]}) {  
5529                # MUST                # MUST
5530                my $foster_parent_element;                my $foster_parent_element;
5531                my $next_sibling;                my $next_sibling;
5532                my $prev_sibling;                my $prev_sibling;
5533                OE: for (reverse 0..$#{$self->{open_elements}}) {                OE: for (reverse 0..$#{$self->{open_elements}}) {
5534                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
5535                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
5536                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
5537                      !!!cp ('t196');                      !!!cp ('t196');
# Line 4365  sub _tree_construction_main ($) { Line 5566  sub _tree_construction_main ($) {
5566          }          }
5567                            
5568          !!!next-token;          !!!next-token;
5569          redo B;          next B;
5570        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5571              if ({          if ({
5572                   tr => ($self->{insertion_mode} != IN_ROW_IM),               tr => ($self->{insertion_mode} != IN_ROW_IM),
5573                   th => 1, td => 1,               th => 1, td => 1,
5574                  }->{$token->{tag_name}}) {              }->{$token->{tag_name}}) {
5575                if ($self->{insertion_mode} == IN_TABLE_IM) {            if ($self->{insertion_mode} == IN_TABLE_IM) {
5576                  ## Clear back to table context              ## Clear back to table context
5577                  while ($self->{open_elements}->[-1]->[1] ne 'table' and              while (not ($self->{open_elements}->[-1]->[1]
5578                         $self->{open_elements}->[-1]->[1] ne 'html') {                              & TABLE_SCOPING_EL)) {
5579                    !!!cp ('t201');                !!!cp ('t201');
5580                    pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5581                  }              }
5582                                
5583                  !!!insert-element ('tbody',, $token);              !!!insert-element ('tbody',, $token);
5584                  $self->{insertion_mode} = IN_TABLE_BODY_IM;              $self->{insertion_mode} = IN_TABLE_BODY_IM;
5585                  ## reprocess in the "in table body" insertion mode...              ## reprocess in the "in table body" insertion mode...
5586                }            }
5587              
5588                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {            if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
5589                  unless ($token->{tag_name} eq 'tr') {              unless ($token->{tag_name} eq 'tr') {
5590                    !!!cp ('t202');                !!!cp ('t202');
5591                    !!!parse-error (type => 'missing start tag:tr', token => $token);                !!!parse-error (type => 'missing start tag:tr', token => $token);
5592                  }              }
5593                                    
5594                  ## Clear back to table body context              ## Clear back to table body context
5595                  while (not {              while (not ($self->{open_elements}->[-1]->[1]
5596                    tbody => 1, tfoot => 1, thead => 1, html => 1,                              & TABLE_ROWS_SCOPING_EL)) {
5597                  }->{$self->{open_elements}->[-1]->[1]}) {                !!!cp ('t203');
5598                    !!!cp ('t203');                ## ISSUE: Can this case be reached?
5599                    ## ISSUE: Can this case be reached?                pop @{$self->{open_elements}};
5600                    pop @{$self->{open_elements}};              }
                 }  
5601                                    
5602                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5603                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5604                    !!!cp ('t204');                    !!!cp ('t204');
5605                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5606                      !!!nack ('t204');
5607                    !!!next-token;                    !!!next-token;
5608                    redo B;                    next B;
5609                  } else {                  } else {
5610                    !!!cp ('t205');                    !!!cp ('t205');
5611                    !!!insert-element ('tr',, $token);                    !!!insert-element ('tr',, $token);
# Line 4415  sub _tree_construction_main ($) { Line 5616  sub _tree_construction_main ($) {
5616                }                }
5617    
5618                ## Clear back to table row context                ## Clear back to table row context
5619                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5620                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5621                  !!!cp ('t207');                  !!!cp ('t207');
5622                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5623                }                }
# Line 4427  sub _tree_construction_main ($) { Line 5627  sub _tree_construction_main ($) {
5627    
5628                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
5629                                
5630                  !!!nack ('t207.1');
5631                !!!next-token;                !!!next-token;
5632                redo B;                next B;
5633              } elsif ({              } elsif ({
5634                        caption => 1, col => 1, colgroup => 1,                        caption => 1, col => 1, colgroup => 1,
5635                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
# Line 4440  sub _tree_construction_main ($) { Line 5641  sub _tree_construction_main ($) {
5641                  my $i;                  my $i;
5642                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5643                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5644                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5645                      !!!cp ('t208');                      !!!cp ('t208');
5646                      $i = $_;                      $i = $_;
5647                      last INSCOPE;                      last INSCOPE;
5648                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             html => 1,  
   
                             ## NOTE: This element does not appear here, maybe.  
                             table => 1,  
                            }->{$node->[1]}) {  
5649                      !!!cp ('t209');                      !!!cp ('t209');
5650                      last INSCOPE;                      last INSCOPE;
5651                    }                    }
5652                  } # INSCOPE                  } # INSCOPE
5653                  unless (defined $i) {                  unless (defined $i) {
5654                   !!!cp ('t210');                    !!!cp ('t210');
5655  ## TODO: This type is wrong.  ## TODO: This type is wrong.
5656                   !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token);                    !!!parse-error (type => 'unmacthed end tag',
5657                                      text => $token->{tag_name}, token => $token);
5658                    ## Ignore the token                    ## Ignore the token
5659                      !!!nack ('t210.1');
5660                    !!!next-token;                    !!!next-token;
5661                    redo B;                    next B;
5662                  }                  }
5663                                    
5664                  ## Clear back to table row context                  ## Clear back to table row context
5665                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5666                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5667                    !!!cp ('t211');                    !!!cp ('t211');
5668                    ## ISSUE: Can this case be reached?                    ## ISSUE: Can this case be reached?
5669                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4477  sub _tree_construction_main ($) { Line 5674  sub _tree_construction_main ($) {
5674                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5675                    !!!cp ('t212');                    !!!cp ('t212');
5676                    ## reprocess                    ## reprocess
5677                    redo B;                    !!!ack-later;
5678                      next B;
5679                  } else {                  } else {
5680                    !!!cp ('t213');                    !!!cp ('t213');
5681                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
# Line 4489  sub _tree_construction_main ($) { Line 5687  sub _tree_construction_main ($) {
5687                  my $i;                  my $i;
5688                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5689                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5690                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5691                      !!!cp ('t214');                      !!!cp ('t214');
5692                      $i = $_;                      $i = $_;
5693                      last INSCOPE;                      last INSCOPE;
5694                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5695                      !!!cp ('t215');                      !!!cp ('t215');
5696                      last INSCOPE;                      last INSCOPE;
5697                    }                    }
5698                  } # INSCOPE                  } # INSCOPE
5699                  unless (defined $i) {                  unless (defined $i) {
5700                    !!!cp ('t216');                    !!!cp ('t216');
5701  ## TODO: This erorr type ios wrong.  ## TODO: This erorr type is wrong.
5702                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                    !!!parse-error (type => 'unmatched end tag',
5703                                      text => $token->{tag_name}, token => $token);
5704                    ## Ignore the token                    ## Ignore the token
5705                      !!!nack ('t216.1');
5706                    !!!next-token;                    !!!next-token;
5707                    redo B;                    next B;
5708                  }                  }
5709    
5710                  ## Clear back to table body context                  ## Clear back to table body context
5711                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5712                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5713                    !!!cp ('t217');                    !!!cp ('t217');
5714                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5715                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4536  sub _tree_construction_main ($) { Line 5731  sub _tree_construction_main ($) {
5731    
5732                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
5733                  ## Clear back to table context                  ## Clear back to table context
5734                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5735                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5736                    !!!cp ('t219');                    !!!cp ('t219');
5737                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5738                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4546  sub _tree_construction_main ($) { Line 5741  sub _tree_construction_main ($) {
5741                  !!!insert-element ('colgroup',, $token);                  !!!insert-element ('colgroup',, $token);
5742                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
5743                  ## reprocess                  ## reprocess
5744                  redo B;                  !!!ack-later;
5745                    next B;
5746                } elsif ({                } elsif ({
5747                          caption => 1,                          caption => 1,
5748                          colgroup => 1,                          colgroup => 1,
5749                          tbody => 1, tfoot => 1, thead => 1,                          tbody => 1, tfoot => 1, thead => 1,
5750                         }->{$token->{tag_name}}) {                         }->{$token->{tag_name}}) {
5751                  ## Clear back to table context                  ## Clear back to table context
5752                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5753                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5754                    !!!cp ('t220');                    !!!cp ('t220');
5755                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5756                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4572  sub _tree_construction_main ($) { Line 5768  sub _tree_construction_main ($) {
5768                                             thead => IN_TABLE_BODY_IM,                                             thead => IN_TABLE_BODY_IM,
5769                                            }->{$token->{tag_name}};                                            }->{$token->{tag_name}};
5770                  !!!next-token;                  !!!next-token;
5771                  redo B;                  !!!nack ('t220.1');
5772                    next B;
5773                } else {                } else {
5774                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
5775                }                }
5776              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5777                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                !!!parse-error (type => 'not closed',
5778                                  text => $self->{open_elements}->[-1]->[0]
5779                                      ->manakai_local_name,
5780                                  token => $token);
5781    
5782                ## As if </table>                ## As if </table>
5783                ## have a table element in table scope                ## have a table element in table scope
5784                my $i;                my $i;
5785                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5786                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5787                  if ($node->[1] eq 'table') {                  if ($node->[1] & TABLE_EL) {
5788                    !!!cp ('t221');                    !!!cp ('t221');
5789                    $i = $_;                    $i = $_;
5790                    last INSCOPE;                    last INSCOPE;
5791                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           #table => 1,  
                           html => 1,  
                          }->{$node->[1]}) {  
5792                    !!!cp ('t222');                    !!!cp ('t222');
5793                    last INSCOPE;                    last INSCOPE;
5794                  }                  }
# Line 4599  sub _tree_construction_main ($) { Line 5796  sub _tree_construction_main ($) {
5796                unless (defined $i) {                unless (defined $i) {
5797                  !!!cp ('t223');                  !!!cp ('t223');
5798  ## TODO: The following is wrong, maybe.  ## TODO: The following is wrong, maybe.
5799                  !!!parse-error (type => 'unmatched end tag:table', token => $token);                  !!!parse-error (type => 'unmatched end tag', text => 'table',
5800                                    token => $token);
5801                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
5802                    !!!nack ('t223.1');
5803                  !!!next-token;                  !!!next-token;
5804                  redo B;                  next B;
5805                }                }
5806                                
5807  ## TODO: Followings are removed from the latest spec.  ## TODO: Followings are removed from the latest spec.
5808                ## generate implied end tags                ## generate implied end tags
5809                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5810                  !!!cp ('t224');                  !!!cp ('t224');
5811                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5812                }                }
5813    
5814                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] & TABLE_EL) {
5815                  !!!cp ('t225');                  !!!cp ('t225');
5816  ## ISSUE: Can this case be reached?                  ## NOTE: |<table><tr><table>|
5817                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                  !!!parse-error (type => 'not closed',
5818                                    text => $self->{open_elements}->[-1]->[0]
5819                                        ->manakai_local_name,
5820                                    token => $token);
5821                } else {                } else {
5822                  !!!cp ('t226');                  !!!cp ('t226');
5823                }                }
# Line 4627  sub _tree_construction_main ($) { Line 5827  sub _tree_construction_main ($) {
5827    
5828                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5829    
5830                ## reprocess            ## reprocess
5831                redo B;            !!!ack-later;
5832              next B;
5833          } elsif ($token->{tag_name} eq 'style') {          } elsif ($token->{tag_name} eq 'style') {
5834            if (not $open_tables->[-1]->[1]) { # tainted            if (not $open_tables->[-1]->[1]) { # tainted
5835              !!!cp ('t227.8');              !!!cp ('t227.8');
5836              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5837              $parse_rcdata->(CDATA_CONTENT_MODEL);              $parse_rcdata->(CDATA_CONTENT_MODEL);
5838              redo B;              next B;
5839            } else {            } else {
5840              !!!cp ('t227.7');              !!!cp ('t227.7');
5841              #              #
# Line 4644  sub _tree_construction_main ($) { Line 5845  sub _tree_construction_main ($) {
5845              !!!cp ('t227.6');              !!!cp ('t227.6');
5846              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5847              $script_start_tag->();              $script_start_tag->();
5848              redo B;              next B;
5849            } else {            } else {
5850              !!!cp ('t227.5');              !!!cp ('t227.5');
5851              #              #
# Line 4655  sub _tree_construction_main ($) { Line 5856  sub _tree_construction_main ($) {
5856                my $type = lc $token->{attributes}->{type}->{value};                my $type = lc $token->{attributes}->{type}->{value};
5857                if ($type eq 'hidden') {                if ($type eq 'hidden') {
5858                  !!!cp ('t227.3');                  !!!cp ('t227.3');
5859                  !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'in table',
5860                                    text => $token->{tag_name}, token => $token);
5861    
5862                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5863    
# Line 4664  sub _tree_construction_main ($) { Line 5866  sub _tree_construction_main ($) {
5866                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5867    
5868                  !!!next-token;                  !!!next-token;
5869                  redo B;                  !!!ack ('t227.2.1');
5870                    next B;
5871                } else {                } else {
5872                  !!!cp ('t227.2');                  !!!cp ('t227.2');
5873                  #                  #
# Line 4682  sub _tree_construction_main ($) { Line 5885  sub _tree_construction_main ($) {
5885            #            #
5886          }          }
5887    
5888          !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'in table', text => $token->{tag_name},
5889                            token => $token);
5890    
5891          $insert = $insert_to_foster;          $insert = $insert_to_foster;
5892          #          #
# Line 4693  sub _tree_construction_main ($) { Line 5897  sub _tree_construction_main ($) {
5897                my $i;                my $i;
5898                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5899                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5900                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_ROW_EL) {
5901                    !!!cp ('t228');                    !!!cp ('t228');
5902                    $i = $_;                    $i = $_;
5903                    last INSCOPE;                    last INSCOPE;
5904                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5905                    !!!cp ('t229');                    !!!cp ('t229');
5906                    last INSCOPE;                    last INSCOPE;
5907                  }                  }
5908                } # INSCOPE                } # INSCOPE
5909                unless (defined $i) {                unless (defined $i) {
5910                  !!!cp ('t230');                  !!!cp ('t230');
5911                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
5912                                    text => $token->{tag_name}, token => $token);
5913                  ## Ignore the token                  ## Ignore the token
5914                    !!!nack ('t230.1');
5915                  !!!next-token;                  !!!next-token;
5916                  redo B;                  next B;
5917                } else {                } else {
5918                  !!!cp ('t232');                  !!!cp ('t232');
5919                }                }
5920    
5921                ## Clear back to table row context                ## Clear back to table row context
5922                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5923                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5924                  !!!cp ('t231');                  !!!cp ('t231');
5925  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5926                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4726  sub _tree_construction_main ($) { Line 5929  sub _tree_construction_main ($) {
5929                pop @{$self->{open_elements}}; # tr                pop @{$self->{open_elements}}; # tr
5930                $self->{insertion_mode} = IN_TABLE_BODY_IM;                $self->{insertion_mode} = IN_TABLE_BODY_IM;
5931                !!!next-token;                !!!next-token;
5932                redo B;                !!!nack ('t231.1');
5933                  next B;
5934              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5935                if ($self->{insertion_mode} == IN_ROW_IM) {                if ($self->{insertion_mode} == IN_ROW_IM) {
5936                  ## As if </tr>                  ## As if </tr>
# Line 4734  sub _tree_construction_main ($) { Line 5938  sub _tree_construction_main ($) {
5938                  my $i;                  my $i;
5939                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5940                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5941                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5942                      !!!cp ('t233');                      !!!cp ('t233');
5943                      $i = $_;                      $i = $_;
5944                      last INSCOPE;                      last INSCOPE;
5945                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5946                      !!!cp ('t234');                      !!!cp ('t234');
5947                      last INSCOPE;                      last INSCOPE;
5948                    }                    }
# Line 4748  sub _tree_construction_main ($) { Line 5950  sub _tree_construction_main ($) {
5950                  unless (defined $i) {                  unless (defined $i) {
5951                    !!!cp ('t235');                    !!!cp ('t235');
5952  ## TODO: The following is wrong.  ## TODO: The following is wrong.
5953                    !!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token);                    !!!parse-error (type => 'unmatched end tag',
5954                                      text => $token->{type}, token => $token);
5955                    ## Ignore the token                    ## Ignore the token
5956                      !!!nack ('t236.1');
5957                    !!!next-token;                    !!!next-token;
5958                    redo B;                    next B;
5959                  }                  }
5960                                    
5961                  ## Clear back to table row context                  ## Clear back to table row context
5962                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5963                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5964                    !!!cp ('t236');                    !!!cp ('t236');
5965  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5966                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4773  sub _tree_construction_main ($) { Line 5976  sub _tree_construction_main ($) {
5976                  my $i;                  my $i;
5977                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5978                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5979                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5980                      !!!cp ('t237');                      !!!cp ('t237');
5981                      $i = $_;                      $i = $_;
5982                      last INSCOPE;                      last INSCOPE;
5983                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5984                      !!!cp ('t238');                      !!!cp ('t238');
5985                      last INSCOPE;                      last INSCOPE;
5986                    }                    }
5987                  } # INSCOPE                  } # INSCOPE
5988                  unless (defined $i) {                  unless (defined $i) {
5989                    !!!cp ('t239');                    !!!cp ('t239');
5990                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                    !!!parse-error (type => 'unmatched end tag',
5991                                      text => $token->{tag_name}, token => $token);
5992                    ## Ignore the token                    ## Ignore the token
5993                      !!!nack ('t239.1');
5994                    !!!next-token;                    !!!next-token;
5995                    redo B;                    next B;
5996                  }                  }
5997                                    
5998                  ## Clear back to table body context                  ## Clear back to table body context
5999                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
6000                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
6001                    !!!cp ('t240');                    !!!cp ('t240');
6002                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
6003                  }                  }
# Line 4823  sub _tree_construction_main ($) { Line 6023  sub _tree_construction_main ($) {
6023                my $i;                my $i;
6024                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6025                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
6026                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_EL) {
6027                    !!!cp ('t241');                    !!!cp ('t241');
6028                    $i = $_;                    $i = $_;
6029                    last INSCOPE;                    last INSCOPE;
6030                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6031                    !!!cp ('t242');                    !!!cp ('t242');
6032                    last INSCOPE;                    last INSCOPE;
6033                  }                  }
6034                } # INSCOPE                } # INSCOPE
6035                unless (defined $i) {                unless (defined $i) {
6036                  !!!cp ('t243');                  !!!cp ('t243');
6037                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
6038                                    text => $token->{tag_name}, token => $token);
6039                  ## Ignore the token                  ## Ignore the token
6040                    !!!nack ('t243.1');
6041                  !!!next-token;                  !!!next-token;
6042                  redo B;                  next B;
6043                }                }
6044                                    
6045                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 4848  sub _tree_construction_main ($) { Line 6048  sub _tree_construction_main ($) {
6048                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
6049                                
6050                !!!next-token;                !!!next-token;
6051                redo B;                next B;
6052              } elsif ({              } elsif ({
6053                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
6054                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
# Line 4858  sub _tree_construction_main ($) { Line 6058  sub _tree_construction_main ($) {
6058                  my $i;                  my $i;
6059                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6060                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
6061                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6062                      !!!cp ('t247');                      !!!cp ('t247');
6063                      $i = $_;                      $i = $_;
6064                      last INSCOPE;                      last INSCOPE;
6065                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
6066                      !!!cp ('t248');                      !!!cp ('t248');
6067                      last INSCOPE;                      last INSCOPE;
6068                    }                    }
6069                  } # INSCOPE                  } # INSCOPE
6070                    unless (defined $i) {                    unless (defined $i) {
6071                      !!!cp ('t249');                      !!!cp ('t249');
6072                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                      !!!parse-error (type => 'unmatched end tag',
6073                                        text => $token->{tag_name}, token => $token);
6074                      ## Ignore the token                      ## Ignore the token
6075                        !!!nack ('t249.1');
6076                      !!!next-token;                      !!!next-token;
6077                      redo B;                      next B;
6078                    }                    }
6079                                    
6080                  ## As if </tr>                  ## As if </tr>
# Line 4882  sub _tree_construction_main ($) { Line 6082  sub _tree_construction_main ($) {
6082                  my $i;                  my $i;
6083                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6084                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
6085                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
6086                      !!!cp ('t250');                      !!!cp ('t250');
6087                      $i = $_;                      $i = $_;
6088                      last INSCOPE;                      last INSCOPE;
6089                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
6090                      !!!cp ('t251');                      !!!cp ('t251');
6091                      last INSCOPE;                      last INSCOPE;
6092                    }                    }
6093                  } # INSCOPE                  } # INSCOPE
6094                    unless (defined $i) {                    unless (defined $i) {
6095                      !!!cp ('t252');                      !!!cp ('t252');
6096                      !!!parse-error (type => 'unmatched end tag:tr', token => $token);                      !!!parse-error (type => 'unmatched end tag',
6097                                        text => 'tr', token => $token);
6098                      ## Ignore the token                      ## Ignore the token
6099                        !!!nack ('t252.1');
6100                      !!!next-token;                      !!!next-token;
6101                      redo B;                      next B;
6102                    }                    }
6103                                    
6104                  ## Clear back to table row context                  ## Clear back to table row context
6105                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
6106                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
6107                    !!!cp ('t253');                    !!!cp ('t253');
6108  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
6109                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4919  sub _tree_construction_main ($) { Line 6118  sub _tree_construction_main ($) {
6118                my $i;                my $i;
6119                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6120                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
6121                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6122                    !!!cp ('t254');                    !!!cp ('t254');
6123                    $i = $_;                    $i = $_;
6124                    last INSCOPE;                    last INSCOPE;
6125                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6126                    !!!cp ('t255');                    !!!cp ('t255');
6127                    last INSCOPE;                    last INSCOPE;
6128                  }                  }
6129                } # INSCOPE                } # INSCOPE
6130                unless (defined $i) {                unless (defined $i) {
6131                  !!!cp ('t256');                  !!!cp ('t256');
6132                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                  !!!parse-error (type => 'unmatched end tag',
6133                                    text => $token->{tag_name}, token => $token);
6134                  ## Ignore the token                  ## Ignore the token
6135                    !!!nack ('t256.1');
6136                  !!!next-token;                  !!!next-token;
6137                  redo B;                  next B;
6138                }                }
6139    
6140                ## Clear back to table body context                ## Clear back to table body context
6141                while (not {                while (not ($self->{open_elements}->[-1]->[1]
6142                  tbody => 1, tfoot => 1, thead => 1, html => 1,                                & TABLE_ROWS_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
6143                  !!!cp ('t257');                  !!!cp ('t257');
6144  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
6145                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4949  sub _tree_construction_main ($) { Line 6147  sub _tree_construction_main ($) {
6147    
6148                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
6149                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
6150                  !!!nack ('t257.1');
6151                !!!next-token;                !!!next-token;
6152                redo B;                next B;
6153              } elsif ({              } elsif ({
6154                        body => 1, caption => 1, col => 1, colgroup => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
6155                        html => 1, td => 1, th => 1,                        html => 1, td => 1, th => 1,
6156                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
6157                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
6158                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
6159                !!!cp ('t258');            !!!cp ('t258');
6160                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
6161                ## Ignore the token                            text => $token->{tag_name}, token => $token);
6162                !!!next-token;            ## Ignore the token
6163                redo B;            !!!nack ('t258.1');
6164               !!!next-token;
6165              next B;
6166          } else {          } else {
6167            !!!cp ('t259');            !!!cp ('t259');
6168            !!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'in table:/',
6169                              text => $token->{tag_name}, token => $token);
6170    
6171            $insert = $insert_to_foster;            $insert = $insert_to_foster;
6172            #            #
6173          }          }
6174        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6175          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6176                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
6177            !!!parse-error (type => 'in body:#eof', token => $token);            !!!parse-error (type => 'in body:#eof', token => $token);
6178            !!!cp ('t259.1');            !!!cp ('t259.1');
# Line 4992  sub _tree_construction_main ($) { Line 6194  sub _tree_construction_main ($) {
6194                unless (length $token->{data}) {                unless (length $token->{data}) {
6195                  !!!cp ('t260');                  !!!cp ('t260');
6196                  !!!next-token;                  !!!next-token;
6197                  redo B;                  next B;
6198                }                }
6199              }              }
6200                            
# Line 5003  sub _tree_construction_main ($) { Line 6205  sub _tree_construction_main ($) {
6205                !!!cp ('t262');                !!!cp ('t262');
6206                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6207                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
6208                  !!!ack ('t262.1');
6209                !!!next-token;                !!!next-token;
6210                redo B;                next B;
6211              } else {              } else {
6212                !!!cp ('t263');                !!!cp ('t263');
6213                #                #
6214              }              }
6215            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
6216              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
6217                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
6218                  !!!cp ('t264');                  !!!cp ('t264');
6219                  !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);                  !!!parse-error (type => 'unmatched end tag',
6220                                    text => 'colgroup', token => $token);
6221                  ## Ignore the token                  ## Ignore the token
6222                  !!!next-token;                  !!!next-token;
6223                  redo B;                  next B;
6224                } else {                } else {
6225                  !!!cp ('t265');                  !!!cp ('t265');
6226                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
6227                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
6228                  !!!next-token;                  !!!next-token;
6229                  redo B;                              next B;            
6230                }                }
6231              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
6232                !!!cp ('t266');                !!!cp ('t266');
6233                !!!parse-error (type => 'unmatched end tag:col', token => $token);                !!!parse-error (type => 'unmatched end tag',
6234                                  text => 'col', token => $token);
6235                ## Ignore the token                ## Ignore the token
6236                !!!next-token;                !!!next-token;
6237                redo B;                next B;
6238              } else {              } else {
6239                !!!cp ('t267');                !!!cp ('t267');
6240                #                #
6241              }              }
6242        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6243          if ($self->{open_elements}->[-1]->[1] eq 'html' or          if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6244              @{$self->{open_elements}} == 1) { # redundant, maybe              @{$self->{open_elements}} == 1) { # redundant, maybe
6245            !!!cp ('t270.2');            !!!cp ('t270.2');
6246            ## Stop parsing.            ## Stop parsing.
# Line 5046  sub _tree_construction_main ($) { Line 6251  sub _tree_construction_main ($) {
6251            pop @{$self->{open_elements}}; # colgroup            pop @{$self->{open_elements}}; # colgroup
6252            $self->{insertion_mode} = IN_TABLE_IM;            $self->{insertion_mode} = IN_TABLE_IM;
6253            ## Reprocess.            ## Reprocess.
6254            redo B;            next B;
6255          }          }
6256        } else {        } else {
6257          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6258        }        }
6259    
6260            ## As if </colgroup>            ## As if </colgroup>
6261            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
6262              !!!cp ('t269');              !!!cp ('t269');
6263  ## TODO: Wrong error type?  ## TODO: Wrong error type?
6264              !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);              !!!parse-error (type => 'unmatched end tag',
6265                                text => 'colgroup', token => $token);
6266              ## Ignore the token              ## Ignore the token
6267                !!!nack ('t269.1');
6268              !!!next-token;              !!!next-token;
6269              redo B;              next B;
6270            } else {            } else {
6271              !!!cp ('t270');              !!!cp ('t270');
6272              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
6273              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
6274                !!!ack-later;
6275              ## reprocess              ## reprocess
6276              redo B;              next B;
6277            }            }
6278      } elsif ($self->{insertion_mode} & SELECT_IMS) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
6279        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
6280          !!!cp ('t271');          !!!cp ('t271');
6281          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
6282          !!!next-token;          !!!next-token;
6283          redo B;          next B;
6284        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6285              if ($token->{tag_name} eq 'option') {          if ($token->{tag_name} eq 'option') {
6286                if ($self->{open_elements}->[-1]->[1] eq 'option') {            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6287                  !!!cp ('t272');              !!!cp ('t272');
6288                  ## As if </option>              ## As if </option>
6289                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6290                } else {            } else {
6291                  !!!cp ('t273');              !!!cp ('t273');
6292                }            }
6293    
6294                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6295                !!!next-token;            !!!nack ('t273.1');
6296                redo B;            !!!next-token;
6297              } elsif ($token->{tag_name} eq 'optgroup') {            next B;
6298                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'optgroup') {
6299                  !!!cp ('t274');            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6300                  ## As if </option>              !!!cp ('t274');
6301                  pop @{$self->{open_elements}};              ## As if </option>
6302                } else {              pop @{$self->{open_elements}};
6303                  !!!cp ('t275');            } else {
6304                }              !!!cp ('t275');
6305              }
6306    
6307                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            if ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
6308                  !!!cp ('t276');              !!!cp ('t276');
6309                  ## As if </optgroup>              ## As if </optgroup>
6310                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6311                } else {            } else {
6312                  !!!cp ('t277');              !!!cp ('t277');
6313                }            }
6314    
6315                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6316                !!!next-token;            !!!nack ('t277.1');
6317                redo B;            !!!next-token;
6318          } elsif ($token->{tag_name} eq 'select' or            next B;
6319                   $token->{tag_name} eq 'input' or          } elsif ({
6320                       select => 1, input => 1, textarea => 1,
6321                     }->{$token->{tag_name}} or
6322                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
6323                    {                    {
6324                     caption => 1, table => 1,                     caption => 1, table => 1,
# Line 5115  sub _tree_construction_main ($) { Line 6326  sub _tree_construction_main ($) {
6326                     tr => 1, td => 1, th => 1,                     tr => 1, td => 1, th => 1,
6327                    }->{$token->{tag_name}})) {                    }->{$token->{tag_name}})) {
6328            ## TODO: The type below is not good - <select> is replaced by </select>            ## TODO: The type below is not good - <select> is replaced by </select>
6329            !!!parse-error (type => 'not closed:select', token => $token);            !!!parse-error (type => 'not closed', text => 'select',
6330                              token => $token);
6331            ## NOTE: As if the token were </select> (<select> case) or            ## NOTE: As if the token were </select> (<select> case) or
6332            ## as if there were </select> (otherwise).            ## as if there were </select> (otherwise).
6333                ## have an element in table scope            ## have an element in table scope
6334                my $i;            my $i;
6335                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6336                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6337                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6338                    !!!cp ('t278');                !!!cp ('t278');
6339                    $i = $_;                $i = $_;
6340                    last INSCOPE;                last INSCOPE;
6341                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6342                            table => 1, html => 1,                !!!cp ('t279');
6343                           }->{$node->[1]}) {                last INSCOPE;
6344                    !!!cp ('t279');              }
6345                    last INSCOPE;            } # INSCOPE
6346                  }            unless (defined $i) {
6347                } # INSCOPE              !!!cp ('t280');
6348                unless (defined $i) {              !!!parse-error (type => 'unmatched end tag',
6349                  !!!cp ('t280');                              text => 'select', token => $token);
6350                  !!!parse-error (type => 'unmatched end tag:select', token => $token);              ## Ignore the token
6351                  ## Ignore the token              !!!nack ('t280.1');
6352                  !!!next-token;              !!!next-token;
6353                  redo B;              next B;
6354                }            }
6355                                
6356                !!!cp ('t281');            !!!cp ('t281');
6357                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6358    
6359                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6360    
6361            if ($token->{tag_name} eq 'select') {            if ($token->{tag_name} eq 'select') {
6362              !!!cp ('t281.2');              !!!nack ('t281.2');
6363              !!!next-token;              !!!next-token;
6364              redo B;              next B;
6365            } else {            } else {
6366              !!!cp ('t281.1');              !!!cp ('t281.1');
6367                !!!ack-later;
6368              ## Reprocess the token.              ## Reprocess the token.
6369              redo B;              next B;
6370            }            }
6371          } else {          } else {
6372            !!!cp ('t282');            !!!cp ('t282');
6373            !!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'in select',
6374                              text => $token->{tag_name}, token => $token);
6375            ## Ignore the token            ## Ignore the token
6376              !!!nack ('t282.1');
6377            !!!next-token;            !!!next-token;
6378            redo B;            next B;
6379          }          }
6380        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6381              if ($token->{tag_name} eq 'optgroup') {          if ($token->{tag_name} eq 'optgroup') {
6382                if ($self->{open_elements}->[-1]->[1] eq 'option' and            if ($self->{open_elements}->[-1]->[1] & OPTION_EL and
6383                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                $self->{open_elements}->[-2]->[1] & OPTGROUP_EL) {
6384                  !!!cp ('t283');              !!!cp ('t283');
6385                  ## As if </option>              ## As if </option>
6386                  splice @{$self->{open_elements}}, -2;              splice @{$self->{open_elements}}, -2;
6387                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            } elsif ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
6388                  !!!cp ('t284');              !!!cp ('t284');
6389                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6390                } else {            } else {
6391                  !!!cp ('t285');              !!!cp ('t285');
6392                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'unmatched end tag',
6393                  ## Ignore the token                              text => $token->{tag_name}, token => $token);
6394                }              ## Ignore the token
6395                !!!next-token;            }
6396                redo B;            !!!nack ('t285.1');
6397              } elsif ($token->{tag_name} eq 'option') {            !!!next-token;
6398                if ($self->{open_elements}->[-1]->[1] eq 'option') {            next B;
6399                  !!!cp ('t286');          } elsif ($token->{tag_name} eq 'option') {
6400                  pop @{$self->{open_elements}};            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6401                } else {              !!!cp ('t286');
6402                  !!!cp ('t287');              pop @{$self->{open_elements}};
6403                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            } else {
6404                  ## Ignore the token              !!!cp ('t287');
6405                }              !!!parse-error (type => 'unmatched end tag',
6406                !!!next-token;                              text => $token->{tag_name}, token => $token);
6407                redo B;              ## Ignore the token
6408              } elsif ($token->{tag_name} eq 'select') {            }
6409                ## have an element in table scope            !!!nack ('t287.1');
6410                my $i;            !!!next-token;
6411                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            next B;
6412                  my $node = $self->{open_elements}->[$_];          } elsif ($token->{tag_name} eq 'select') {
6413                  if ($node->[1] eq $token->{tag_name}) {            ## have an element in table scope
6414                    !!!cp ('t288');            my $i;
6415                    $i = $_;            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6416                    last INSCOPE;              my $node = $self->{open_elements}->[$_];
6417                  } elsif ({              if ($node->[1] & SELECT_EL) {
6418                            table => 1, html => 1,                !!!cp ('t288');
6419                           }->{$node->[1]}) {                $i = $_;
6420                    !!!cp ('t289');                last INSCOPE;
6421                    last INSCOPE;              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6422                  }                !!!cp ('t289');
6423                } # INSCOPE                last INSCOPE;
6424                unless (defined $i) {              }
6425                  !!!cp ('t290');            } # INSCOPE
6426                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            unless (defined $i) {
6427                  ## Ignore the token              !!!cp ('t290');
6428                  !!!next-token;              !!!parse-error (type => 'unmatched end tag',
6429                  redo B;                              text => $token->{tag_name}, token => $token);
6430                }              ## Ignore the token
6431                !!!nack ('t290.1');
6432                !!!next-token;
6433                next B;
6434              }
6435                                
6436                !!!cp ('t291');            !!!cp ('t291');
6437                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6438    
6439                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6440    
6441                !!!next-token;            !!!nack ('t291.1');
6442                redo B;            !!!next-token;
6443              next B;
6444          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
6445                   {                   {
6446                    caption => 1, table => 1, tbody => 1,                    caption => 1, table => 1, tbody => 1,
6447                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
6448                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
6449  ## TODO: The following is wrong?  ## TODO: The following is wrong?
6450                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
6451                              text => $token->{tag_name}, token => $token);
6452                                
6453                ## have an element in table scope            ## have an element in table scope
6454                my $i;            my $i;
6455                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6456                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6457                  if ($node->[1] eq $token->{tag_name}) {              if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6458                    !!!cp ('t292');                !!!cp ('t292');
6459                    $i = $_;                $i = $_;
6460                    last INSCOPE;                last INSCOPE;
6461                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6462                            table => 1, html => 1,                !!!cp ('t293');
6463                           }->{$node->[1]}) {                last INSCOPE;
6464                    !!!cp ('t293');              }
6465                    last INSCOPE;            } # INSCOPE
6466                  }            unless (defined $i) {
6467                } # INSCOPE              !!!cp ('t294');
6468                unless (defined $i) {              ## Ignore the token
6469                  !!!cp ('t294');              !!!nack ('t294.1');
6470                  ## Ignore the token              !!!next-token;
6471                  !!!next-token;              next B;
6472                  redo B;            }
               }  
6473                                
6474                ## As if </select>            ## As if </select>
6475                ## have an element in table scope            ## have an element in table scope
6476                undef $i;            undef $i;
6477                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6478                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6479                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6480                    !!!cp ('t295');                !!!cp ('t295');
6481                    $i = $_;                $i = $_;
6482                    last INSCOPE;                last INSCOPE;
6483                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6484  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
6485                    !!!cp ('t296');                !!!cp ('t296');
6486                    last INSCOPE;                last INSCOPE;
6487                  }              }
6488                } # INSCOPE            } # INSCOPE
6489                unless (defined $i) {            unless (defined $i) {
6490                  !!!cp ('t297');              !!!cp ('t297');
6491  ## TODO: The following error type is correct?  ## TODO: The following error type is correct?
6492                  !!!parse-error (type => 'unmatched end tag:select', token => $token);              !!!parse-error (type => 'unmatched end tag',
6493                  ## Ignore the </select> token                              text => 'select', token => $token);
6494                  !!!next-token; ## TODO: ok?              ## Ignore the </select> token
6495                  redo B;              !!!nack ('t297.1');
6496                }              !!!next-token; ## TODO: ok?
6497                next B;
6498              }
6499                                
6500                !!!cp ('t298');            !!!cp ('t298');
6501                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6502    
6503                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6504    
6505                ## reprocess            !!!ack-later;
6506                redo B;            ## reprocess
6507              next B;
6508          } else {          } else {
6509            !!!cp ('t299');            !!!cp ('t299');
6510            !!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'in select:/',
6511                              text => $token->{tag_name}, token => $token);
6512            ## Ignore the token            ## Ignore the token
6513              !!!nack ('t299.3');
6514            !!!next-token;            !!!next-token;
6515            redo B;            next B;
6516          }          }
6517        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6518          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6519                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
6520            !!!cp ('t299.1');            !!!cp ('t299.1');
6521            !!!parse-error (type => 'in body:#eof', token => $token);            !!!parse-error (type => 'in body:#eof', token => $token);
# Line 5317  sub _tree_construction_main ($) { Line 6540  sub _tree_construction_main ($) {
6540            unless (length $token->{data}) {            unless (length $token->{data}) {
6541              !!!cp ('t300');              !!!cp ('t300');
6542              !!!next-token;              !!!next-token;
6543              redo B;              next B;
6544            }            }
6545          }          }
6546                    
6547          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6548            !!!cp ('t301');            !!!cp ('t301');
6549            !!!parse-error (type => 'after html:#character', token => $token);            !!!parse-error (type => 'after html:#text', token => $token);
6550    
6551            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6552          } else {          } else {
# Line 5331  sub _tree_construction_main ($) { Line 6554  sub _tree_construction_main ($) {
6554          }          }
6555                    
6556          ## "after body" insertion mode          ## "after body" insertion mode
6557          !!!parse-error (type => 'after body:#character', token => $token);          !!!parse-error (type => 'after body:#text', token => $token);
6558    
6559          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6560          ## reprocess          ## reprocess
6561          redo B;          next B;
6562        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6563          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6564            !!!cp ('t303');            !!!cp ('t303');
6565            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'after html',
6566                              text => $token->{tag_name}, token => $token);
6567                        
6568            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6569          } else {          } else {
# Line 5347  sub _tree_construction_main ($) { Line 6571  sub _tree_construction_main ($) {
6571          }          }
6572    
6573          ## "after body" insertion mode          ## "after body" insertion mode
6574          !!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'after body',
6575                            text => $token->{tag_name}, token => $token);
6576    
6577          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6578            !!!ack-later;
6579          ## reprocess          ## reprocess
6580          redo B;          next B;
6581        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6582          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6583            !!!cp ('t305');            !!!cp ('t305');
6584            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'after html:/',
6585                              text => $token->{tag_name}, token => $token);
6586                        
6587            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6588            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
# Line 5367  sub _tree_construction_main ($) { Line 6594  sub _tree_construction_main ($) {
6594          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
6595            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
6596              !!!cp ('t307');              !!!cp ('t307');
6597              !!!parse-error (type => 'unmatched end tag:html', token => $token);              !!!parse-error (type => 'unmatched end tag',
6598                                text => 'html', token => $token);
6599              ## Ignore the token              ## Ignore the token
6600              !!!next-token;              !!!next-token;
6601              redo B;              next B;
6602            } else {            } else {
6603              !!!cp ('t308');              !!!cp ('t308');
6604              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
6605              !!!next-token;              !!!next-token;
6606              redo B;              next B;
6607            }            }
6608          } else {          } else {
6609            !!!cp ('t309');            !!!cp ('t309');
6610            !!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'after body:/',
6611                              text => $token->{tag_name}, token => $token);
6612    
6613            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
6614            ## reprocess            ## reprocess
6615            redo B;            next B;
6616          }          }
6617        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6618          !!!cp ('t309.2');          !!!cp ('t309.2');
# Line 5400  sub _tree_construction_main ($) { Line 6629  sub _tree_construction_main ($) {
6629            unless (length $token->{data}) {            unless (length $token->{data}) {
6630              !!!cp ('t310');              !!!cp ('t310');
6631              !!!next-token;              !!!next-token;
6632              redo B;              next B;
6633            }            }
6634          }          }
6635                    
6636          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
6637            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6638              !!!cp ('t311');              !!!cp ('t311');
6639              !!!parse-error (type => 'in frameset:#character', token => $token);              !!!parse-error (type => 'in frameset:#text', token => $token);
6640            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6641              !!!cp ('t312');              !!!cp ('t312');
6642              !!!parse-error (type => 'after frameset:#character', token => $token);              !!!parse-error (type => 'after frameset:#text', token => $token);
6643            } else { # "after html frameset"            } else { # "after after frameset"
6644              !!!cp ('t313');              !!!cp ('t313');
6645              !!!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);  
6646            }            }
6647                        
6648            ## Ignore the token.            ## Ignore the token.
# Line 5428  sub _tree_construction_main ($) { Line 6653  sub _tree_construction_main ($) {
6653              !!!cp ('t315');              !!!cp ('t315');
6654              !!!next-token;              !!!next-token;
6655            }            }
6656            redo B;            next B;
6657          }          }
6658                    
6659          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
6660        } 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');  
         }  
   
6661          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6662              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6663            !!!cp ('t318');            !!!cp ('t318');
6664            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6665              !!!nack ('t318.1');
6666            !!!next-token;            !!!next-token;
6667            redo B;            next B;
6668          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
6669                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
6670            !!!cp ('t319');            !!!cp ('t319');
6671            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6672            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6673              !!!ack ('t319.1');
6674            !!!next-token;            !!!next-token;
6675            redo B;            next B;
6676          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
6677            !!!cp ('t320');            !!!cp ('t320');
6678            ## NOTE: As if in body.            ## NOTE: As if in head.
6679            $parse_rcdata->(CDATA_CONTENT_MODEL);            $parse_rcdata->(CDATA_CONTENT_MODEL);
6680            redo B;            next B;
6681    
6682              ## NOTE: |<!DOCTYPE HTML><frameset></frameset></html><noframes></noframes>|
6683              ## has no parse error.
6684          } else {          } else {
6685            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6686              !!!cp ('t321');              !!!cp ('t321');
6687              !!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'in frameset',
6688            } else {                              text => $token->{tag_name}, token => $token);
6689              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6690              !!!cp ('t322');              !!!cp ('t322');
6691              !!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'after frameset',
6692                                text => $token->{tag_name}, token => $token);
6693              } else { # "after after frameset"
6694                !!!cp ('t322.2');
6695                !!!parse-error (type => 'after after frameset',
6696                                text => $token->{tag_name}, token => $token);
6697            }            }
6698            ## Ignore the token            ## Ignore the token
6699              !!!nack ('t322.1');
6700            !!!next-token;            !!!next-token;
6701            redo B;            next B;
6702          }          }
6703        } 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');  
         }  
   
6704          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6705              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6706            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6707                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
6708              !!!cp ('t325');              !!!cp ('t325');
6709              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'unmatched end tag',
6710                                text => $token->{tag_name}, token => $token);
6711              ## Ignore the token              ## Ignore the token
6712              !!!next-token;              !!!next-token;
6713            } else {            } else {
# Line 5499  sub _tree_construction_main ($) { Line 6717  sub _tree_construction_main ($) {
6717            }            }
6718    
6719            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
6720                $self->{open_elements}->[-1]->[1] ne 'frameset') {                not ($self->{open_elements}->[-1]->[1] & FRAMESET_EL)) {
6721              !!!cp ('t327');              !!!cp ('t327');
6722              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6723            } else {            } else {
6724              !!!cp ('t328');              !!!cp ('t328');
6725            }            }
6726            redo B;            next B;
6727          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
6728                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
6729            !!!cp ('t329');            !!!cp ('t329');
6730            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
6731            !!!next-token;            !!!next-token;
6732            redo B;            next B;
6733          } else {          } else {
6734            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6735              !!!cp ('t330');              !!!cp ('t330');
6736              !!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'in frameset:/',
6737            } else {                              text => $token->{tag_name}, token => $token);
6738              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6739                !!!cp ('t330.1');
6740                !!!parse-error (type => 'after frameset:/',
6741                                text => $token->{tag_name}, token => $token);
6742              } else { # "after after html"
6743              !!!cp ('t331');              !!!cp ('t331');
6744              !!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'after after frameset:/',
6745                                text => $token->{tag_name}, token => $token);
6746            }            }
6747            ## Ignore the token            ## Ignore the token
6748            !!!next-token;            !!!next-token;
6749            redo B;            next B;
6750          }          }
6751        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6752          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6753                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
6754            !!!cp ('t331.1');            !!!cp ('t331.1');
6755            !!!parse-error (type => 'in body:#eof', token => $token);            !!!parse-error (type => 'in body:#eof', token => $token);
# Line 5550  sub _tree_construction_main ($) { Line 6774  sub _tree_construction_main ($) {
6774          !!!cp ('t332');          !!!cp ('t332');
6775          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6776          $script_start_tag->();          $script_start_tag->();
6777          redo B;          next B;
6778        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
6779          !!!cp ('t333');          !!!cp ('t333');
6780          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6781          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
6782          redo B;          next B;
6783        } elsif ({        } elsif ({
6784                  base => 1, link => 1,                  base => 1, link => 1,
6785                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 5563  sub _tree_construction_main ($) { Line 6787  sub _tree_construction_main ($) {
6787          ## 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
6788          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6789          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
6790            !!!ack ('t334.1');
6791          !!!next-token;          !!!next-token;
6792          redo B;          next B;
6793        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
6794          ## 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
6795          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6796          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.
6797    
6798          unless ($self->{confident}) {          unless ($self->{confident}) {
6799            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) {
6800              !!!cp ('t335');              !!!cp ('t335');
6801                ## NOTE: Whether the encoding is supported or not is handled
6802                ## in the {change_encoding} callback.
6803              $self->{change_encoding}              $self->{change_encoding}
6804                  ->($self, $token->{attributes}->{charset}->{value}, $token);                  ->($self, $token->{attributes}->{charset}->{value}, $token);
6805                            
# Line 5581  sub _tree_construction_main ($) { Line 6808  sub _tree_construction_main ($) {
6808                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
6809                                           ->{has_reference});                                           ->{has_reference});
6810            } elsif ($token->{attributes}->{content}) {            } elsif ($token->{attributes}->{content}) {
             ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
6811              if ($token->{attributes}->{content}->{value}              if ($token->{attributes}->{content}->{value}
6812                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                  =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
6813                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
6814                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
6815                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20\x3B]*))/x) {
6816                !!!cp ('t336');                !!!cp ('t336');
6817                  ## NOTE: Whether the encoding is supported or not is handled
6818                  ## in the {change_encoding} callback.
6819                $self->{change_encoding}                $self->{change_encoding}
6820                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
6821                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
# Line 5613  sub _tree_construction_main ($) { Line 6841  sub _tree_construction_main ($) {
6841            }            }
6842          }          }
6843    
6844            !!!ack ('t338.1');
6845          !!!next-token;          !!!next-token;
6846          redo B;          next B;
6847        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
6848          !!!cp ('t341');          !!!cp ('t341');
6849          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6850          $parse_rcdata->(RCDATA_CONTENT_MODEL);          $parse_rcdata->(RCDATA_CONTENT_MODEL);
6851          redo B;          next B;
6852        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
6853          !!!parse-error (type => 'in body:body', token => $token);          !!!parse-error (type => 'in body', text => 'body', token => $token);
6854                                
6855          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
6856              $self->{open_elements}->[1]->[1] ne 'body') {              not ($self->{open_elements}->[1]->[1] & BODY_EL)) {
6857            !!!cp ('t342');            !!!cp ('t342');
6858            ## Ignore the token            ## Ignore the token
6859          } else {          } else {
# Line 5638  sub _tree_construction_main ($) { Line 6867  sub _tree_construction_main ($) {
6867              }              }
6868            }            }
6869          }          }
6870            !!!nack ('t343.1');
6871          !!!next-token;          !!!next-token;
6872          redo B;          next B;
6873        } elsif ({        } elsif ({
6874                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6875                  div => 1, dl => 1, fieldset => 1,                  div => 1, dl => 1, fieldset => 1,
# Line 5654  sub _tree_construction_main ($) { Line 6884  sub _tree_construction_main ($) {
6884            !!!cp ('t350');            !!!cp ('t350');
6885            !!!parse-error (type => 'in form:form', token => $token);            !!!parse-error (type => 'in form:form', token => $token);
6886            ## Ignore the token            ## Ignore the token
6887              !!!nack ('t350.1');
6888            !!!next-token;            !!!next-token;
6889            redo B;            next B;
6890          }          }
6891    
6892          ## has a p element in scope          ## has a p element in scope
6893          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6894            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6895              !!!cp ('t344');              !!!cp ('t344');
6896              !!!back-token;              !!!back-token; # <form>
6897              $token = {type => END_TAG_TOKEN, tag_name => 'p',              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6898                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
6899              redo B;              next B;
6900            } elsif ({            } elsif ($_->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6901              !!!cp ('t345');              !!!cp ('t345');
6902              last INSCOPE;              last INSCOPE;
6903            }            }
# Line 5677  sub _tree_construction_main ($) { Line 6905  sub _tree_construction_main ($) {
6905                        
6906          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6907          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
6908              !!!nack ('t346.1');
6909            !!!next-token;            !!!next-token;
6910            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
6911              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
# Line 5693  sub _tree_construction_main ($) { Line 6922  sub _tree_construction_main ($) {
6922            !!!cp ('t347.1');            !!!cp ('t347.1');
6923            $self->{form_element} = $self->{open_elements}->[-1]->[0];            $self->{form_element} = $self->{open_elements}->[-1]->[0];
6924    
6925              !!!nack ('t347.2');
6926            !!!next-token;            !!!next-token;
6927          } elsif ($token->{tag_name} eq 'table') {          } elsif ($token->{tag_name} eq 'table') {
6928            !!!cp ('t382');            !!!cp ('t382');
# Line 5700  sub _tree_construction_main ($) { Line 6930  sub _tree_construction_main ($) {
6930                        
6931            $self->{insertion_mode} = IN_TABLE_IM;            $self->{insertion_mode} = IN_TABLE_IM;
6932    
6933              !!!nack ('t382.1');
6934            !!!next-token;            !!!next-token;
6935          } elsif ($token->{tag_name} eq 'hr') {          } elsif ($token->{tag_name} eq 'hr') {
6936            !!!cp ('t386');            !!!cp ('t386');
6937            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6938                    
6939              !!!nack ('t386.1');
6940            !!!next-token;            !!!next-token;
6941          } else {          } else {
6942            !!!cp ('t347');            !!!nack ('t347.1');
6943            !!!next-token;            !!!next-token;
6944          }          }
6945          redo B;          next B;
6946        } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {        } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {
6947          ## has a p element in scope          ## has a p element in scope
6948          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6949            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6950              !!!cp ('t353');              !!!cp ('t353');
6951              !!!back-token;              !!!back-token; # <x>
6952              $token = {type => END_TAG_TOKEN, tag_name => 'p',              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6953                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
6954              redo B;              next B;
6955            } elsif ({            } elsif ($_->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6956              !!!cp ('t354');              !!!cp ('t354');
6957              last INSCOPE;              last INSCOPE;
6958            }            }
# Line 5737  sub _tree_construction_main ($) { Line 6966  sub _tree_construction_main ($) {
6966                            dd => {dt => 1, dd => 1}}->{$token->{tag_name}};                            dd => {dt => 1, dd => 1}}->{$token->{tag_name}};
6967          LI: {          LI: {
6968            ## Step 2            ## Step 2
6969            if ($li_or_dtdd->{$node->[1]}) {            if ($li_or_dtdd->{$node->[0]->manakai_local_name}) {
6970              if ($i != -1) {              if ($i != -1) {
6971                !!!cp ('t355');                !!!cp ('t355');
6972                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'not closed',
6973                                $self->{open_elements}->[-1]->[1], token => $token);                                text => $self->{open_elements}->[-1]->[0]
6974                                      ->manakai_local_name,
6975                                  token => $token);
6976              } else {              } else {
6977                !!!cp ('t356');                !!!cp ('t356');
6978              }              }
# Line 5752  sub _tree_construction_main ($) { Line 6983  sub _tree_construction_main ($) {
6983            }            }
6984                        
6985            ## Step 3            ## Step 3
6986            if (not $formatting_category->{$node->[1]} and            if (not ($node->[1] & FORMATTING_EL) and
6987                #not $phrasing_category->{$node->[1]} and                #not $phrasing_category->{$node->[1]} and
6988                ($special_category->{$node->[1]} or                ($node->[1] & SPECIAL_EL or
6989                 $scoping_category->{$node->[1]}) and                 $node->[1] & SCOPING_EL) and
6990                $node->[1] ne 'address' and $node->[1] ne 'div') {                not ($node->[1] & ADDRESS_EL) and
6991                  not ($node->[1] & DIV_EL)) {
6992              !!!cp ('t358');              !!!cp ('t358');
6993              last LI;              last LI;
6994            }            }
# Line 5769  sub _tree_construction_main ($) { Line 7001  sub _tree_construction_main ($) {
7001          } # LI          } # LI
7002                        
7003          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7004            !!!nack ('t359.1');
7005          !!!next-token;          !!!next-token;
7006          redo B;          next B;
7007        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
7008          ## has a p element in scope          ## has a p element in scope
7009          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
7010            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
7011              !!!cp ('t367');              !!!cp ('t367');
7012              !!!back-token;              !!!back-token; # <plaintext>
7013              $token = {type => END_TAG_TOKEN, tag_name => 'p',              $token = {type => END_TAG_TOKEN, tag_name => 'p',
7014                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7015              redo B;              next B;
7016            } elsif ({            } elsif ($_->[1] & SCOPING_EL) {
                     applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
7017              !!!cp ('t368');              !!!cp ('t368');
7018              last INSCOPE;              last INSCOPE;
7019            }            }
# Line 5793  sub _tree_construction_main ($) { Line 7023  sub _tree_construction_main ($) {
7023                        
7024          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
7025                        
7026            !!!nack ('t368.1');
7027          !!!next-token;          !!!next-token;
7028          redo B;          next B;
7029        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
7030          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
7031            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
7032            if ($node->[1] eq 'a') {            if ($node->[1] & A_EL) {
7033              !!!cp ('t371');              !!!cp ('t371');
7034              !!!parse-error (type => 'in a:a', token => $token);              !!!parse-error (type => 'in a:a', token => $token);
7035                            
7036              !!!back-token;              !!!back-token; # <a>
7037              $token = {type => END_TAG_TOKEN, tag_name => 'a',              $token = {type => END_TAG_TOKEN, tag_name => 'a',
7038                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7039              $formatting_end_tag->($token);              $formatting_end_tag->($token);
# Line 5833  sub _tree_construction_main ($) { Line 7064  sub _tree_construction_main ($) {
7064          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7065          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
7066    
7067            !!!nack ('t374.1');
7068          !!!next-token;          !!!next-token;
7069          redo B;          next B;
7070        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
7071          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7072    
7073          ## has a |nobr| element in scope          ## has a |nobr| element in scope
7074          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7075            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7076            if ($node->[1] eq 'nobr') {            if ($node->[1] & NOBR_EL) {
7077              !!!cp ('t376');              !!!cp ('t376');
7078              !!!parse-error (type => 'in nobr:nobr', token => $token);              !!!parse-error (type => 'in nobr:nobr', token => $token);
7079              !!!back-token;              !!!back-token; # <nobr>
7080              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
7081                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7082              redo B;              next B;
7083            } 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]}) {  
7084              !!!cp ('t377');              !!!cp ('t377');
7085              last INSCOPE;              last INSCOPE;
7086            }            }
# Line 5860  sub _tree_construction_main ($) { Line 7089  sub _tree_construction_main ($) {
7089          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7090          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
7091                    
7092            !!!nack ('t377.1');
7093          !!!next-token;          !!!next-token;
7094          redo B;          next B;
7095        } elsif ($token->{tag_name} eq 'button') {        } elsif ($token->{tag_name} eq 'button') {
7096          ## has a button element in scope          ## has a button element in scope
7097          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7098            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7099            if ($node->[1] eq 'button') {            if ($node->[1] & BUTTON_EL) {
7100              !!!cp ('t378');              !!!cp ('t378');
7101              !!!parse-error (type => 'in button:button', token => $token);              !!!parse-error (type => 'in button:button', token => $token);
7102              !!!back-token;              !!!back-token; # <button>
7103              $token = {type => END_TAG_TOKEN, tag_name => 'button',              $token = {type => END_TAG_TOKEN, tag_name => 'button',
7104                        line => $token->{line}, column => $token->{column}};                        line => $token->{line}, column => $token->{column}};
7105              redo B;              next B;
7106            } 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]}) {  
7107              !!!cp ('t379');              !!!cp ('t379');
7108              last INSCOPE;              last INSCOPE;
7109            }            }
# Line 5890  sub _tree_construction_main ($) { Line 7117  sub _tree_construction_main ($) {
7117    
7118          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
7119    
7120            !!!nack ('t379.1');
7121          !!!next-token;          !!!next-token;
7122          redo B;          next B;
7123        } elsif ({        } elsif ({
7124                  xmp => 1,                  xmp => 1,
7125                  iframe => 1,                  iframe => 1,
7126                  noembed => 1,                  noembed => 1,
7127                  noframes => 1,                  noframes => 1, ## NOTE: This is an "as if in head" code clone.
7128                  noscript => 0, ## TODO: 1 if scripting is enabled                  noscript => 0, ## TODO: 1 if scripting is enabled
7129                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7130          if ($token->{tag_name} eq 'xmp') {          if ($token->{tag_name} eq 'xmp') {
# Line 5907  sub _tree_construction_main ($) { Line 7135  sub _tree_construction_main ($) {
7135          }          }
7136          ## NOTE: There is an "as if in body" code clone.          ## NOTE: There is an "as if in body" code clone.
7137          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
7138          redo B;          next B;
7139        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
7140          !!!parse-error (type => 'isindex', token => $token);          !!!parse-error (type => 'isindex', token => $token);
7141                    
7142          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
7143            !!!cp ('t389');            !!!cp ('t389');
7144            ## Ignore the token            ## Ignore the token
7145              !!!nack ('t389'); ## NOTE: Not acknowledged.
7146            !!!next-token;            !!!next-token;
7147            redo B;            next B;
7148          } else {          } else {
7149              !!!ack ('t391.1');
7150    
7151            my $at = $token->{attributes};            my $at = $token->{attributes};
7152            my $form_attrs;            my $form_attrs;
7153            $form_attrs->{action} = $at->{action} if $at->{action};            $form_attrs->{action} = $at->{action} if $at->{action};
# Line 5938  sub _tree_construction_main ($) { Line 7169  sub _tree_construction_main ($) {
7169            if ($prompt_attr) {            if ($prompt_attr) {
7170              !!!cp ('t390');              !!!cp ('t390');
7171              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
7172                             line => $token->{line}, column => $token->{column}};                             #line => $token->{line}, column => $token->{column},
7173                              };
7174            } else {            } else {
7175              !!!cp ('t391');              !!!cp ('t391');
7176              push @tokens, {type => CHARACTER_TOKEN,              push @tokens, {type => CHARACTER_TOKEN,
7177                             data => 'This is a searchable index. Insert your search keywords here: ',                             data => 'This is a searchable index. Insert your search keywords here: ',
7178                             line => $token->{line}, column => $token->{column}}; # SHOULD                             #line => $token->{line}, column => $token->{column},
7179                              }; # SHOULD
7180              ## TODO: make this configurable              ## TODO: make this configurable
7181            }            }
7182            push @tokens,            push @tokens,
# Line 5958  sub _tree_construction_main ($) { Line 7191  sub _tree_construction_main ($) {
7191                           line => $token->{line}, column => $token->{column}},                           line => $token->{line}, column => $token->{column}},
7192                          {type => END_TAG_TOKEN, tag_name => 'form',                          {type => END_TAG_TOKEN, tag_name => 'form',
7193                           line => $token->{line}, column => $token->{column}};                           line => $token->{line}, column => $token->{column}};
           $token = shift @tokens;  
7194            !!!back-token (@tokens);            !!!back-token (@tokens);
7195            redo B;            !!!next-token;
7196              next B;
7197          }          }
7198        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
7199          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
7200          my $el;          my $el;
7201          !!!create-element ($el, $token->{tag_name}, $token->{attributes}, $token);          !!!create-element ($el, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
7202                    
7203          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
7204          $self->{content_model} = RCDATA_CONTENT_MODEL;          $self->{content_model} = RCDATA_CONTENT_MODEL;
# Line 5974  sub _tree_construction_main ($) { Line 7207  sub _tree_construction_main ($) {
7207          $insert->($el);          $insert->($el);
7208                    
7209          my $text = '';          my $text = '';
7210            !!!nack ('t392.1');
7211          !!!next-token;          !!!next-token;
7212          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
7213            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
# Line 6004  sub _tree_construction_main ($) { Line 7238  sub _tree_construction_main ($) {
7238            ## Ignore the token            ## Ignore the token
7239          } else {          } else {
7240            !!!cp ('t398');            !!!cp ('t398');
7241            !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);            !!!parse-error (type => 'in RCDATA:#eof', token => $token);
7242          }          }
7243          !!!next-token;          !!!next-token;
7244            next B;
7245          } elsif ($token->{tag_name} eq 'rt' or
7246                   $token->{tag_name} eq 'rp') {
7247            ## has a |ruby| element in scope
7248            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7249              my $node = $self->{open_elements}->[$_];
7250              if ($node->[1] & RUBY_EL) {
7251                !!!cp ('t398.1');
7252                ## generate implied end tags
7253                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
7254                  !!!cp ('t398.2');
7255                  pop @{$self->{open_elements}};
7256                }
7257                unless ($self->{open_elements}->[-1]->[1] & RUBY_EL) {
7258                  !!!cp ('t398.3');
7259                  !!!parse-error (type => 'not closed',
7260                                  text => $self->{open_elements}->[-1]->[0]
7261                                      ->manakai_local_name,
7262                                  token => $token);
7263                  pop @{$self->{open_elements}}
7264                      while not $self->{open_elements}->[-1]->[1] & RUBY_EL;
7265                }
7266                last INSCOPE;
7267              } elsif ($node->[1] & SCOPING_EL) {
7268                !!!cp ('t398.4');
7269                last INSCOPE;
7270              }
7271            } # INSCOPE
7272    
7273            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
7274    
7275            !!!nack ('t398.5');
7276            !!!next-token;
7277          redo B;          redo B;
7278          } elsif ($token->{tag_name} eq 'math' or
7279                   $token->{tag_name} eq 'svg') {
7280            $reconstruct_active_formatting_elements->($insert_to_current);
7281    
7282            ## "Adjust MathML attributes" ('math' only) - done in insert-element-f
7283    
7284            ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
7285    
7286            ## "adjust foreign attributes" - done in insert-element-f
7287            
7288            !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
7289            
7290            if ($self->{self_closing}) {
7291              pop @{$self->{open_elements}};
7292              !!!ack ('t398.1');
7293            } else {
7294              !!!cp ('t398.2');
7295              $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
7296              ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
7297              ## mode, "in body" (not "in foreign content") secondary insertion
7298              ## mode, maybe.
7299            }
7300    
7301            !!!next-token;
7302            next B;
7303        } elsif ({        } elsif ({
7304                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7305                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 6015  sub _tree_construction_main ($) { Line 7307  sub _tree_construction_main ($) {
7307                  thead => 1, tr => 1,                  thead => 1, tr => 1,
7308                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7309          !!!cp ('t401');          !!!cp ('t401');
7310          !!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'in body',
7311                            text => $token->{tag_name}, token => $token);
7312          ## Ignore the token          ## Ignore the token
7313            !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
7314          !!!next-token;          !!!next-token;
7315          redo B;          next B;
7316                    
7317          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
7318        } else {        } else {
# Line 6040  sub _tree_construction_main ($) { Line 7334  sub _tree_construction_main ($) {
7334              }->{$token->{tag_name}}) {              }->{$token->{tag_name}}) {
7335            !!!cp ('t380');            !!!cp ('t380');
7336            push @$active_formatting_elements, ['#marker', ''];            push @$active_formatting_elements, ['#marker', ''];
7337              !!!nack ('t380.1');
7338          } elsif ({          } elsif ({
7339                    b => 1, big => 1, em => 1, font => 1, i => 1,                    b => 1, big => 1, em => 1, font => 1, i => 1,
7340                    s => 1, small => 1, strile => 1,                    s => 1, small => 1, strile => 1,
# Line 6047  sub _tree_construction_main ($) { Line 7342  sub _tree_construction_main ($) {
7342                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
7343            !!!cp ('t375');            !!!cp ('t375');
7344            push @$active_formatting_elements, $self->{open_elements}->[-1];            push @$active_formatting_elements, $self->{open_elements}->[-1];
7345              !!!nack ('t375.1');
7346          } elsif ($token->{tag_name} eq 'input') {          } elsif ($token->{tag_name} eq 'input') {
7347            !!!cp ('t388');            !!!cp ('t388');
7348            ## TODO: associate with $self->{form_element} if defined            ## TODO: associate with $self->{form_element} if defined
7349            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
7350              !!!ack ('t388.2');
7351          } elsif ({          } elsif ({
7352                    area => 1, basefont => 1, bgsound => 1, br => 1,                    area => 1, basefont => 1, bgsound => 1, br => 1,
7353                    embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                    embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
# Line 6058  sub _tree_construction_main ($) { Line 7355  sub _tree_construction_main ($) {
7355                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
7356            !!!cp ('t388.1');            !!!cp ('t388.1');
7357            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
7358              !!!ack ('t388.3');
7359          } elsif ($token->{tag_name} eq 'select') {          } elsif ($token->{tag_name} eq 'select') {
7360            ## TODO: associate with $self->{form_element} if defined            ## TODO: associate with $self->{form_element} if defined
7361                    
# Line 6070  sub _tree_construction_main ($) { Line 7368  sub _tree_construction_main ($) {
7368              !!!cp ('t400.2');              !!!cp ('t400.2');
7369              $self->{insertion_mode} = IN_SELECT_IM;              $self->{insertion_mode} = IN_SELECT_IM;
7370            }            }
7371              !!!nack ('t400.3');
7372          } else {          } else {
7373            !!!cp ('t402');            !!!nack ('t402');
7374          }          }
7375                    
7376          !!!next-token;          !!!next-token;
7377          redo B;          next B;
7378        }        }
7379      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
7380        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
# Line 6083  sub _tree_construction_main ($) { Line 7382  sub _tree_construction_main ($) {
7382          my $i;          my $i;
7383          INSCOPE: {          INSCOPE: {
7384            for (reverse @{$self->{open_elements}}) {            for (reverse @{$self->{open_elements}}) {
7385              if ($_->[1] eq 'body') {              if ($_->[1] & BODY_EL) {
7386                !!!cp ('t405');                !!!cp ('t405');
7387                $i = $_;                $i = $_;
7388                last INSCOPE;                last INSCOPE;
7389              } elsif ({              } elsif ($_->[1] & SCOPING_EL) {
                       applet => 1, table => 1, caption => 1, td => 1, th => 1,  
                       button => 1, marquee => 1, object => 1, html => 1,  
                      }->{$_->[1]}) {  
7390                !!!cp ('t405.1');                !!!cp ('t405.1');
7391                last;                last;
7392              }              }
7393            }            }
7394    
7395            !!!parse-error (type => 'start tag not allowed',            !!!parse-error (type => 'start tag not allowed',
7396                            value => $token->{tag_name}, token => $token);                            text => $token->{tag_name}, token => $token);
7397            ## NOTE: Ignore the token.            ## NOTE: Ignore the token.
7398            !!!next-token;            !!!next-token;
7399            redo B;            next B;
7400          } # INSCOPE          } # INSCOPE
7401    
7402          for (@{$self->{open_elements}}) {          for (@{$self->{open_elements}}) {
7403            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]}) {  
7404              !!!cp ('t403');              !!!cp ('t403');
7405              !!!parse-error (type => 'not closed:'.$_->[1], token => $token);              !!!parse-error (type => 'not closed',
7406                                text => $_->[0]->manakai_local_name,
7407                                token => $token);
7408              last;              last;
7409            } else {            } else {
7410              !!!cp ('t404');              !!!cp ('t404');
# Line 6119  sub _tree_construction_main ($) { Line 7413  sub _tree_construction_main ($) {
7413    
7414          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
7415          !!!next-token;          !!!next-token;
7416          redo B;          next B;
7417        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
7418          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
7419            ## up-to-date, though it has same effect as speced.
7420            if (@{$self->{open_elements}} > 1 and
7421                $self->{open_elements}->[1]->[1] & BODY_EL) {
7422            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
7423            if ($self->{open_elements}->[-1]->[1] ne 'body') {            unless ($self->{open_elements}->[-1]->[1] & BODY_EL) {
7424              !!!cp ('t406');              !!!cp ('t406');
7425              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7426                                text => $self->{open_elements}->[1]->[0]
7427                                    ->manakai_local_name,
7428                                token => $token);
7429            } else {            } else {
7430              !!!cp ('t407');              !!!cp ('t407');
7431            }            }
7432            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
7433            ## reprocess            ## reprocess
7434            redo B;            next B;
7435          } else {          } else {
7436            !!!cp ('t408');            !!!cp ('t408');
7437            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7438                              text => $token->{tag_name}, token => $token);
7439            ## Ignore the token            ## Ignore the token
7440            !!!next-token;            !!!next-token;
7441            redo B;            next B;
7442          }          }
7443        } elsif ({        } elsif ({
7444                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
# Line 6150  sub _tree_construction_main ($) { Line 7451  sub _tree_construction_main ($) {
7451          my $i;          my $i;
7452          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7453            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7454            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7455              !!!cp ('t410');              !!!cp ('t410');
7456              $i = $_;              $i = $_;
7457              last INSCOPE;              last INSCOPE;
7458            } 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]}) {  
7459              !!!cp ('t411');              !!!cp ('t411');
7460              last INSCOPE;              last INSCOPE;
7461            }            }
# Line 6165  sub _tree_construction_main ($) { Line 7463  sub _tree_construction_main ($) {
7463    
7464          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7465            !!!cp ('t413');            !!!cp ('t413');
7466            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7467                              text => $token->{tag_name}, token => $token);
7468              ## NOTE: Ignore the token.
7469          } else {          } else {
7470            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7471            while ({            while ({
7472                      ## END_TAG_OPTIONAL_EL
7473                    dd => ($token->{tag_name} ne 'dd'),                    dd => ($token->{tag_name} ne 'dd'),
7474                    dt => ($token->{tag_name} ne 'dt'),                    dt => ($token->{tag_name} ne 'dt'),
7475                    li => ($token->{tag_name} ne 'li'),                    li => ($token->{tag_name} ne 'li'),
7476                    p => 1,                    p => 1,
7477                   }->{$self->{open_elements}->[-1]->[1]}) {                    rt => 1,
7478                      rp => 1,
7479                     }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
7480              !!!cp ('t409');              !!!cp ('t409');
7481              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7482            }            }
7483    
7484            ## Step 2.            ## Step 2.
7485            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7486                      ne $token->{tag_name}) {
7487              !!!cp ('t412');              !!!cp ('t412');
7488              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7489                                text => $self->{open_elements}->[-1]->[0]
7490                                    ->manakai_local_name,
7491                                token => $token);
7492            } else {            } else {
7493              !!!cp ('t414');              !!!cp ('t414');
7494            }            }
# Line 6196  sub _tree_construction_main ($) { Line 7503  sub _tree_construction_main ($) {
7503                }->{$token->{tag_name}};                }->{$token->{tag_name}};
7504          }          }
7505          !!!next-token;          !!!next-token;
7506          redo B;          next B;
7507        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
7508          undef $self->{form_element};          undef $self->{form_element};
7509    
# Line 6204  sub _tree_construction_main ($) { Line 7511  sub _tree_construction_main ($) {
7511          my $i;          my $i;
7512          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7513            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7514            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & FORM_EL) {
7515              !!!cp ('t418');              !!!cp ('t418');
7516              $i = $_;              $i = $_;
7517              last INSCOPE;              last INSCOPE;
7518            } 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]}) {  
7519              !!!cp ('t419');              !!!cp ('t419');
7520              last INSCOPE;              last INSCOPE;
7521            }            }
# Line 6219  sub _tree_construction_main ($) { Line 7523  sub _tree_construction_main ($) {
7523    
7524          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7525            !!!cp ('t421');            !!!cp ('t421');
7526            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7527                              text => $token->{tag_name}, token => $token);
7528              ## NOTE: Ignore the token.
7529          } else {          } else {
7530            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7531            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7532              !!!cp ('t417');              !!!cp ('t417');
7533              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7534            }            }
7535                        
7536            ## Step 2.            ## Step 2.
7537            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7538                      ne $token->{tag_name}) {
7539              !!!cp ('t417.1');              !!!cp ('t417.1');
7540              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7541                                text => $self->{open_elements}->[-1]->[0]
7542                                    ->manakai_local_name,
7543                                token => $token);
7544            } else {            } else {
7545              !!!cp ('t420');              !!!cp ('t420');
7546            }              }  
# Line 6242  sub _tree_construction_main ($) { Line 7550  sub _tree_construction_main ($) {
7550          }          }
7551    
7552          !!!next-token;          !!!next-token;
7553          redo B;          next B;
7554        } elsif ({        } elsif ({
7555                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
7556                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 6250  sub _tree_construction_main ($) { Line 7558  sub _tree_construction_main ($) {
7558          my $i;          my $i;
7559          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7560            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7561            if ({            if ($node->[1] & HEADING_EL) {
                h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
               }->{$node->[1]}) {  
7562              !!!cp ('t423');              !!!cp ('t423');
7563              $i = $_;              $i = $_;
7564              last INSCOPE;              last INSCOPE;
7565            } 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]}) {  
7566              !!!cp ('t424');              !!!cp ('t424');
7567              last INSCOPE;              last INSCOPE;
7568            }            }
# Line 6267  sub _tree_construction_main ($) { Line 7570  sub _tree_construction_main ($) {
7570    
7571          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7572            !!!cp ('t425.1');            !!!cp ('t425.1');
7573            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7574                              text => $token->{tag_name}, token => $token);
7575              ## NOTE: Ignore the token.
7576          } else {          } else {
7577            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7578            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7579              !!!cp ('t422');              !!!cp ('t422');
7580              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7581            }            }
7582                        
7583            ## Step 2.            ## Step 2.
7584            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7585                      ne $token->{tag_name}) {
7586              !!!cp ('t425');              !!!cp ('t425');
7587              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);              !!!parse-error (type => 'unmatched end tag',
7588                                text => $token->{tag_name}, token => $token);
7589            } else {            } else {
7590              !!!cp ('t426');              !!!cp ('t426');
7591            }            }
# Line 6290  sub _tree_construction_main ($) { Line 7595  sub _tree_construction_main ($) {
7595          }          }
7596                    
7597          !!!next-token;          !!!next-token;
7598          redo B;          next B;
7599        } elsif ($token->{tag_name} eq 'p') {        } elsif ($token->{tag_name} eq 'p') {
7600          ## has an element in scope          ## has an element in scope
7601          my $i;          my $i;
7602          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7603            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7604            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & P_EL) {
7605              !!!cp ('t410.1');              !!!cp ('t410.1');
7606              $i = $_;              $i = $_;
7607              last INSCOPE;              last INSCOPE;
7608            } 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]}) {  
7609              !!!cp ('t411.1');              !!!cp ('t411.1');
7610              last INSCOPE;              last INSCOPE;
7611            }            }
7612          } # INSCOPE          } # INSCOPE
7613    
7614          if (defined $i) {          if (defined $i) {
7615            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7616                      ne $token->{tag_name}) {
7617              !!!cp ('t412.1');              !!!cp ('t412.1');
7618              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);              !!!parse-error (type => 'not closed',
7619                                text => $self->{open_elements}->[-1]->[0]
7620                                    ->manakai_local_name,
7621                                token => $token);
7622            } else {            } else {
7623              !!!cp ('t414.1');              !!!cp ('t414.1');
7624            }            }
# Line 6320  sub _tree_construction_main ($) { Line 7626  sub _tree_construction_main ($) {
7626            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
7627          } else {          } else {
7628            !!!cp ('t413.1');            !!!cp ('t413.1');
7629            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);            !!!parse-error (type => 'unmatched end tag',
7630                              text => $token->{tag_name}, token => $token);
7631    
7632            !!!cp ('t415.1');            !!!cp ('t415.1');
7633            ## As if <p>, then reprocess the current token            ## As if <p>, then reprocess the current token
7634            my $el;            my $el;
7635            !!!create-element ($el, 'p',, $token);            !!!create-element ($el, $HTML_NS, 'p',, $token);
7636            $insert->($el);            $insert->($el);
7637            ## NOTE: Not inserted into |$self->{open_elements}|.            ## NOTE: Not inserted into |$self->{open_elements}|.
7638          }          }
7639    
7640          !!!next-token;          !!!next-token;
7641          redo B;          next B;
7642        } elsif ({        } elsif ({
7643                  a => 1,                  a => 1,
7644                  b => 1, big => 1, em => 1, font => 1, i => 1,                  b => 1, big => 1, em => 1, font => 1, i => 1,
# Line 6340  sub _tree_construction_main ($) { Line 7647  sub _tree_construction_main ($) {
7647                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7648          !!!cp ('t427');          !!!cp ('t427');
7649          $formatting_end_tag->($token);          $formatting_end_tag->($token);
7650          redo B;          next B;
7651        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
7652          !!!cp ('t428');          !!!cp ('t428');
7653          !!!parse-error (type => 'unmatched end tag:br', token => $token);          !!!parse-error (type => 'unmatched end tag',
7654                            text => 'br', token => $token);
7655    
7656          ## As if <br>          ## As if <br>
7657          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7658                    
7659          my $el;          my $el;
7660          !!!create-element ($el, 'br',, $token);          !!!create-element ($el, $HTML_NS, 'br',, $token);
7661          $insert->($el);          $insert->($el);
7662                    
7663          ## Ignore the token.          ## Ignore the token.
7664          !!!next-token;          !!!next-token;
7665          redo B;          next B;
7666        } elsif ({        } elsif ({
7667                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7668                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 6368  sub _tree_construction_main ($) { Line 7676  sub _tree_construction_main ($) {
7676                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
7677                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7678          !!!cp ('t429');          !!!cp ('t429');
7679          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);          !!!parse-error (type => 'unmatched end tag',
7680                            text => $token->{tag_name}, token => $token);
7681          ## Ignore the token          ## Ignore the token
7682          !!!next-token;          !!!next-token;
7683          redo B;          next B;
7684                    
7685          ## ISSUE: Issue on HTML5 new elements in spec          ## ISSUE: Issue on HTML5 new elements in spec
7686                    
# Line 6382  sub _tree_construction_main ($) { Line 7691  sub _tree_construction_main ($) {
7691    
7692          ## Step 2          ## Step 2
7693          S2: {          S2: {
7694            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7695              ## Step 1              ## Step 1
7696              ## generate implied end tags              ## generate implied end tags
7697              while ({              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                     dd => 1, dt => 1, li => 1, p => 1,  
                    }->{$self->{open_elements}->[-1]->[1]}) {  
7698                !!!cp ('t430');                !!!cp ('t430');
7699                ## ISSUE: Can this case be reached?                ## NOTE: |<ruby><rt></ruby>|.
7700                  ## ISSUE: <ruby><rt></rt> will also take this code path,
7701                  ## which seems wrong.
7702                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
7703                  $node_i++;
7704              }              }
7705                    
7706              ## Step 2              ## Step 2
7707              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7708                        ne $token->{tag_name}) {
7709                !!!cp ('t431');                !!!cp ('t431');
7710                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
7711                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);                !!!parse-error (type => 'not closed',
7712                                  text => $self->{open_elements}->[-1]->[0]
7713                                      ->manakai_local_name,
7714                                  token => $token);
7715              } else {              } else {
7716                !!!cp ('t432');                !!!cp ('t432');
7717              }              }
7718                            
7719              ## Step 3              ## Step 3
7720              splice @{$self->{open_elements}}, $node_i;              splice @{$self->{open_elements}}, $node_i if $node_i < 0;
7721    
7722              !!!next-token;              !!!next-token;
7723              last S2;              last S2;
7724            } else {            } else {
7725              ## Step 3              ## Step 3
7726              if (not $formatting_category->{$node->[1]} and              if (not ($node->[1] & FORMATTING_EL) and
7727                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
7728                  ($special_category->{$node->[1]} or                  ($node->[1] & SPECIAL_EL or
7729                   $scoping_category->{$node->[1]})) {                   $node->[1] & SCOPING_EL)) {
7730                !!!cp ('t433');                !!!cp ('t433');
7731                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);                !!!parse-error (type => 'unmatched end tag',
7732                                  text => $token->{tag_name}, token => $token);
7733                ## Ignore the token                ## Ignore the token
7734                !!!next-token;                !!!next-token;
7735                last S2;                last S2;
# Line 6430  sub _tree_construction_main ($) { Line 7745  sub _tree_construction_main ($) {
7745            ## Step 5;            ## Step 5;
7746            redo S2;            redo S2;
7747          } # S2          } # S2
7748          redo B;          next B;
7749        }        }
7750      }      }
7751      redo B;      next B;
7752      } continue { # B
7753        if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
7754          ## NOTE: The code below is executed in cases where it does not have
7755          ## to be, but it it is harmless even in those cases.
7756          ## has an element in scope
7757          INSCOPE: {
7758            for (reverse 0..$#{$self->{open_elements}}) {
7759              my $node = $self->{open_elements}->[$_];
7760              if ($node->[1] & FOREIGN_EL) {
7761                last INSCOPE;
7762              } elsif ($node->[1] & SCOPING_EL) {
7763                last;
7764              }
7765            }
7766            
7767            ## NOTE: No foreign element in scope.
7768            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
7769          } # INSCOPE
7770        }
7771    } # B    } # B
7772    
7773    ## Stop parsing # MUST    ## Stop parsing # MUST
# Line 6441  sub _tree_construction_main ($) { Line 7775  sub _tree_construction_main ($) {
7775    ## TODO: script stuffs    ## TODO: script stuffs
7776  } # _tree_construct_main  } # _tree_construct_main
7777    
7778  sub set_inner_html ($$$) {  sub set_inner_html ($$$$;$) {
7779    my $class = shift;    my $class = shift;
7780    my $node = shift;    my $node = shift;
7781    my $s = \$_[0];    #my $s = \$_[0];
7782    my $onerror = $_[1];    my $onerror = $_[1];
7783      my $get_wrapper = $_[2] || sub ($) { return $_[0] };
7784    
7785    ## ISSUE: Should {confident} be true?    ## ISSUE: Should {confident} be true?
7786    
# Line 6464  sub set_inner_html ($$$) { Line 7799  sub set_inner_html ($$$) {
7799      }      }
7800    
7801      ## Step 3, 4, 5 # MUST      ## Step 3, 4, 5 # MUST
7802      $class->parse_string ($$s => $node, $onerror);      $class->parse_char_string ($_[0] => $node, $onerror, $get_wrapper);
7803    } elsif ($nt == 1) {    } elsif ($nt == 1) {
7804      ## TODO: If non-html element      ## TODO: If non-html element
7805    
7806      ## NOTE: Most of this code is copied from |parse_string|      ## NOTE: Most of this code is copied from |parse_string|
7807    
7808    ## TODO: Support for $get_wrapper
7809    
7810      ## Step 1 # MUST      ## Step 1 # MUST
7811      my $this_doc = $node->owner_document;      my $this_doc = $node->owner_document;
7812      my $doc = $this_doc->implementation->create_document;      my $doc = $this_doc->implementation->create_document;
# Line 6479  sub set_inner_html ($$$) { Line 7816  sub set_inner_html ($$$) {
7816    
7817      ## Step 8 # MUST      ## Step 8 # MUST
7818      my $i = 0;      my $i = 0;
7819      my $line = 1;      $p->{line_prev} = $p->{line} = 1;
7820      my $column = 0;      $p->{column_prev} = $p->{column} = 0;
7821        require Whatpm::Charset::DecodeHandle;
7822        my $input = Whatpm::Charset::DecodeHandle::CharString->new (\($_[0]));
7823        $input = $get_wrapper->($input);
7824      $p->{set_next_char} = sub {      $p->{set_next_char} = sub {
7825        my $self = shift;        my $self = shift;
7826    
7827        pop @{$self->{prev_char}};        my $char = '';
7828        unshift @{$self->{prev_char}}, $self->{next_char};        if (defined $self->{next_next_char}) {
7829            $char = $self->{next_next_char};
7830            delete $self->{next_next_char};
7831            $self->{next_char} = ord $char;
7832          } else {
7833            $self->{char_buffer} = '';
7834            $self->{char_buffer_pos} = 0;
7835            
7836            my $count = $input->manakai_read_until
7837                ($self->{char_buffer},
7838                 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}]/,
7839                   $self->{char_buffer_pos});
7840            if ($count) {
7841              $self->{line_prev} = $self->{line};
7842              $self->{column_prev} = $self->{column};
7843              $self->{column}++;
7844              $self->{next_char}
7845                  = ord substr ($self->{char_buffer},
7846                                $self->{char_buffer_pos}++, 1);
7847              return;
7848            }
7849            
7850            if ($input->read ($char, 1)) {
7851              $self->{next_char} = ord $char;
7852            } else {
7853              $self->{next_char} = -1;
7854              return;
7855            }
7856          }
7857    
7858        $self->{next_char} = -1 and return if $i >= length $$s;        ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
7859        $self->{next_char} = ord substr $$s, $i++, 1;        $p->{column}++;
       $column++;  
7860    
7861        if ($self->{next_char} == 0x000A) { # LF        if ($self->{next_char} == 0x000A) { # LF
7862          $line++;          $p->{line}++;
7863          $column = 0;          $p->{column} = 0;
7864          !!!cp ('i1');          !!!cp ('i1');
7865        } elsif ($self->{next_char} == 0x000D) { # CR        } elsif ($self->{next_char} == 0x000D) { # CR
7866          $i++ if substr ($$s, $i, 1) eq "\x0A";  ## TODO: support for abort/streaming
7867            my $next = '';
7868            if ($input->read ($next, 1) and $next ne "\x0A") {
7869              $self->{next_next_char} = $next;
7870            }
7871          $self->{next_char} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
7872          $line++;          $p->{line}++;
7873          $column = 0;          $p->{column} = 0;
7874          !!!cp ('i2');          !!!cp ('i2');
7875        } elsif ($self->{next_char} > 0x10FFFF) {        } elsif ($self->{next_char} > 0x10FFFF) {
7876          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
# Line 6508  sub set_inner_html ($$$) { Line 7879  sub set_inner_html ($$$) {
7879          !!!cp ('i4');          !!!cp ('i4');
7880          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
7881          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
7882          } elsif ($self->{next_char} <= 0x0008 or
7883                   (0x000E <= $self->{next_char} and
7884                    $self->{next_char} <= 0x001F) or
7885                   (0x007F <= $self->{next_char} and
7886                    $self->{next_char} <= 0x009F) or
7887                   (0xD800 <= $self->{next_char} and
7888                    $self->{next_char} <= 0xDFFF) or
7889                   (0xFDD0 <= $self->{next_char} and
7890                    $self->{next_char} <= 0xFDDF) or
7891                   {
7892                    0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
7893                    0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
7894                    0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
7895                    0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
7896                    0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
7897                    0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
7898                    0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
7899                    0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
7900                    0x10FFFE => 1, 0x10FFFF => 1,
7901                   }->{$self->{next_char}}) {
7902            !!!cp ('i4.1');
7903            if ($self->{next_char} < 0x10000) {
7904              !!!parse-error (type => 'control char',
7905                              text => (sprintf 'U+%04X', $self->{next_char}));
7906            } else {
7907              !!!parse-error (type => 'control char',
7908                              text => (sprintf 'U-%08X', $self->{next_char}));
7909            }
7910        }        }
7911      };      };
7912      $p->{prev_char} = [-1, -1, -1];  
7913      $p->{next_char} = -1;      $p->{read_until} = sub {
7914              #my ($scalar, $specials_range, $offset) = @_;
7915          return 0 if defined $p->{next_next_char};
7916    
7917          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}]/;
7918          my $offset = $_[2] || 0;
7919          
7920          if ($p->{char_buffer_pos} < length $p->{char_buffer}) {
7921            pos ($p->{char_buffer}) = $p->{char_buffer_pos};
7922            if ($p->{char_buffer} =~ /\G(?>$pattern)+/) {
7923              substr ($_[0], $offset)
7924                  = substr ($p->{char_buffer}, $-[0], $+[0] - $-[0]);
7925              my $count = $+[0] - $-[0];
7926              if ($count) {
7927                $p->{column} += $count;
7928                $p->{char_buffer_pos} += $count;
7929                $p->{line_prev} = $p->{line};
7930                $p->{column_prev} = $p->{column} - 1;
7931                $p->{prev_char} = [-1, -1, -1];
7932                $p->{next_char} = -1;
7933              }
7934              return $count;
7935            } else {
7936              return 0;
7937            }
7938          } else {
7939            my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
7940            if ($count) {
7941              $p->{column} += $count;
7942              $p->{column_prev} += $count;
7943              $p->{prev_char} = [-1, -1, -1];
7944              $p->{next_char} = -1;
7945            }
7946            return $count;
7947          }
7948        }; # $p->{read_until}
7949    
7950      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
7951        my (%opt) = @_;        my (%opt) = @_;
7952        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";        my $line = $opt{line};
7953          my $column = $opt{column};
7954          if (defined $opt{token} and defined $opt{token}->{line}) {
7955            $line = $opt{token}->{line};
7956            $column = $opt{token}->{column};
7957          }
7958          warn "Parse error ($opt{type}) at line $line column $column\n";
7959      };      };
7960      $p->{parse_error} = sub {      $p->{parse_error} = sub {
7961        $ponerror->(@_, line => $line, column => $column);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
7962      };      };
7963            
7964        my $char_onerror = sub {
7965          my (undef, $type, %opt) = @_;
7966          $ponerror->(layer => 'encode',
7967                      line => $p->{line}, column => $p->{column} + 1,
7968                      %opt, type => $type);
7969        }; # $char_onerror
7970        $input->onerror ($char_onerror);
7971    
7972      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
7973      $p->_initialize_tree_constructor;      $p->_initialize_tree_constructor;
7974    
# Line 6542  sub set_inner_html ($$$) { Line 7990  sub set_inner_html ($$$) {
7990          unless defined $p->{content_model};          unless defined $p->{content_model};
7991          ## ISSUE: What is "the name of the element"? local name?          ## ISSUE: What is "the name of the element"? local name?
7992    
7993      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
7994          ## TODO: Foreign element OK?
7995    
7996      ## Step 3      ## Step 3
7997      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
# Line 6552  sub set_inner_html ($$$) { Line 8001  sub set_inner_html ($$$) {
8001      $doc->append_child ($root);      $doc->append_child ($root);
8002    
8003      ## Step 5 # MUST      ## Step 5 # MUST
8004      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, $el_category->{html}];
8005    
8006      undef $p->{head_element};      undef $p->{head_element};
8007    
# Line 6598  sub set_inner_html ($$$) { Line 8047  sub set_inner_html ($$$) {
8047      ## ISSUE: mutation events?      ## ISSUE: mutation events?
8048    
8049      $p->_terminate_tree_constructor;      $p->_terminate_tree_constructor;
8050    
8051        delete $p->{parse_error}; # delete loop
8052    } else {    } else {
8053      die "$0: |set_inner_html| is not defined for node of type $nt";      die "$0: |set_inner_html| is not defined for node of type $nt";
8054    }    }

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.180

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24