/[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.100 by wakaba, Sun Mar 9 04:08:41 2008 UTC revision 1.141 by wakaba, Sat May 24 10:18:26 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    
 ## TODO: Control charcters and noncharacters are not allowed (HTML5 revision 1263)  
11  ## TODO: 1252 parse error (revision 1264)  ## TODO: 1252 parse error (revision 1264)
12  ## TODO: 8859-11 = 874 (revision 1271)  ## TODO: 8859-11 = 874 (revision 1271)
13    
14  my $permitted_slash_tag_name = {  require IO::Handle;
15    base => 1,  
16    link => 1,  my $HTML_NS = q<http://www.w3.org/1999/xhtml>;
17    meta => 1,  my $MML_NS = q<http://www.w3.org/1998/Math/MathML>;
18    hr => 1,  my $SVG_NS = q<http://www.w3.org/2000/svg>;
19    br => 1,  my $XLINK_NS = q<http://www.w3.org/1999/xlink>;
20    img => 1,  my $XML_NS = q<http://www.w3.org/XML/1998/namespace>;
21    embed => 1,  my $XMLNS_NS = q<http://www.w3.org/2000/xmlns/>;
22    param => 1,  
23    area => 1,  sub A_EL () { 0b1 }
24    col => 1,  sub ADDRESS_EL () { 0b10 }
25    input => 1,  sub BODY_EL () { 0b100 }
26    sub BUTTON_EL () { 0b1000 }
27    sub CAPTION_EL () { 0b10000 }
28    sub DD_EL () { 0b100000 }
29    sub DIV_EL () { 0b1000000 }
30    sub DT_EL () { 0b10000000 }
31    sub FORM_EL () { 0b100000000 }
32    sub FORMATTING_EL () { 0b1000000000 }
33    sub FRAMESET_EL () { 0b10000000000 }
34    sub HEADING_EL () { 0b100000000000 }
35    sub HTML_EL () { 0b1000000000000 }
36    sub LI_EL () { 0b10000000000000 }
37    sub NOBR_EL () { 0b100000000000000 }
38    sub OPTION_EL () { 0b1000000000000000 }
39    sub OPTGROUP_EL () { 0b10000000000000000 }
40    sub P_EL () { 0b100000000000000000 }
41    sub SELECT_EL () { 0b1000000000000000000 }
42    sub TABLE_EL () { 0b10000000000000000000 }
43    sub TABLE_CELL_EL () { 0b100000000000000000000 }
44    sub TABLE_ROW_EL () { 0b1000000000000000000000 }
45    sub TABLE_ROW_GROUP_EL () { 0b10000000000000000000000 }
46    sub MISC_SCOPING_EL () { 0b100000000000000000000000 }
47    sub MISC_SPECIAL_EL () { 0b1000000000000000000000000 }
48    sub FOREIGN_EL () { 0b10000000000000000000000000 }
49    sub FOREIGN_FLOW_CONTENT_EL () { 0b100000000000000000000000000 }
50    sub MML_AXML_EL () { 0b1000000000000000000000000000 }
51    
52    sub TABLE_ROWS_EL () {
53      TABLE_EL |
54      TABLE_ROW_EL |
55      TABLE_ROW_GROUP_EL
56    }
57    
58    sub END_TAG_OPTIONAL_EL () {
59      DD_EL |
60      DT_EL |
61      LI_EL |
62      P_EL
63    }
64    
65    sub ALL_END_TAG_OPTIONAL_EL () {
66      END_TAG_OPTIONAL_EL |
67      BODY_EL |
68      HTML_EL |
69      TABLE_CELL_EL |
70      TABLE_ROW_EL |
71      TABLE_ROW_GROUP_EL
72    }
73    
74    sub SCOPING_EL () {
75      BUTTON_EL |
76      CAPTION_EL |
77      HTML_EL |
78      TABLE_EL |
79      TABLE_CELL_EL |
80      MISC_SCOPING_EL
81    }
82    
83    sub TABLE_SCOPING_EL () {
84      HTML_EL |
85      TABLE_EL
86    }
87    
88    sub TABLE_ROWS_SCOPING_EL () {
89      HTML_EL |
90      TABLE_ROW_GROUP_EL
91    }
92    
93    sub TABLE_ROW_SCOPING_EL () {
94      HTML_EL |
95      TABLE_ROW_EL
96    }
97    
98    sub SPECIAL_EL () {
99      ADDRESS_EL |
100      BODY_EL |
101      DIV_EL |
102      END_TAG_OPTIONAL_EL |
103      FORM_EL |
104      FRAMESET_EL |
105      HEADING_EL |
106      OPTION_EL |
107      OPTGROUP_EL |
108      SELECT_EL |
109      TABLE_ROW_EL |
110      TABLE_ROW_GROUP_EL |
111      MISC_SPECIAL_EL
112    }
113    
114    my $el_category = {
115      a => A_EL | FORMATTING_EL,
116      address => ADDRESS_EL,
117      applet => MISC_SCOPING_EL,
118      area => MISC_SPECIAL_EL,
119      b => FORMATTING_EL,
120      base => MISC_SPECIAL_EL,
121      basefont => MISC_SPECIAL_EL,
122      bgsound => MISC_SPECIAL_EL,
123      big => FORMATTING_EL,
124      blockquote => MISC_SPECIAL_EL,
125      body => BODY_EL,
126      br => MISC_SPECIAL_EL,
127      button => BUTTON_EL,
128      caption => CAPTION_EL,
129      center => MISC_SPECIAL_EL,
130      col => MISC_SPECIAL_EL,
131      colgroup => MISC_SPECIAL_EL,
132      dd => DD_EL,
133      dir => MISC_SPECIAL_EL,
134      div => DIV_EL,
135      dl => MISC_SPECIAL_EL,
136      dt => DT_EL,
137      em => FORMATTING_EL,
138      embed => MISC_SPECIAL_EL,
139      fieldset => MISC_SPECIAL_EL,
140      font => FORMATTING_EL,
141      form => FORM_EL,
142      frame => MISC_SPECIAL_EL,
143      frameset => FRAMESET_EL,
144      h1 => HEADING_EL,
145      h2 => HEADING_EL,
146      h3 => HEADING_EL,
147      h4 => HEADING_EL,
148      h5 => HEADING_EL,
149      h6 => HEADING_EL,
150      head => MISC_SPECIAL_EL,
151      hr => MISC_SPECIAL_EL,
152      html => HTML_EL,
153      i => FORMATTING_EL,
154      iframe => MISC_SPECIAL_EL,
155      img => MISC_SPECIAL_EL,
156      input => MISC_SPECIAL_EL,
157      isindex => MISC_SPECIAL_EL,
158      li => LI_EL,
159      link => MISC_SPECIAL_EL,
160      listing => MISC_SPECIAL_EL,
161      marquee => MISC_SCOPING_EL,
162      menu => MISC_SPECIAL_EL,
163      meta => MISC_SPECIAL_EL,
164      nobr => NOBR_EL | FORMATTING_EL,
165      noembed => MISC_SPECIAL_EL,
166      noframes => MISC_SPECIAL_EL,
167      noscript => MISC_SPECIAL_EL,
168      object => MISC_SCOPING_EL,
169      ol => MISC_SPECIAL_EL,
170      optgroup => OPTGROUP_EL,
171      option => OPTION_EL,
172      p => P_EL,
173      param => MISC_SPECIAL_EL,
174      plaintext => MISC_SPECIAL_EL,
175      pre => MISC_SPECIAL_EL,
176      s => FORMATTING_EL,
177      script => MISC_SPECIAL_EL,
178      select => SELECT_EL,
179      small => FORMATTING_EL,
180      spacer => MISC_SPECIAL_EL,
181      strike => FORMATTING_EL,
182      strong => FORMATTING_EL,
183      style => MISC_SPECIAL_EL,
184      table => TABLE_EL,
185      tbody => TABLE_ROW_GROUP_EL,
186      td => TABLE_CELL_EL,
187      textarea => MISC_SPECIAL_EL,
188      tfoot => TABLE_ROW_GROUP_EL,
189      th => TABLE_CELL_EL,
190      thead => TABLE_ROW_GROUP_EL,
191      title => MISC_SPECIAL_EL,
192      tr => TABLE_ROW_EL,
193      tt => FORMATTING_EL,
194      u => FORMATTING_EL,
195      ul => MISC_SPECIAL_EL,
196      wbr => MISC_SPECIAL_EL,
197    };
198    
199    my $el_category_f = {
200      $MML_NS => {
201        'annotation-xml' => MML_AXML_EL,
202        mi => FOREIGN_FLOW_CONTENT_EL,
203        mo => FOREIGN_FLOW_CONTENT_EL,
204        mn => FOREIGN_FLOW_CONTENT_EL,
205        ms => FOREIGN_FLOW_CONTENT_EL,
206        mtext => FOREIGN_FLOW_CONTENT_EL,
207      },
208      $SVG_NS => {
209        foreignObject => FOREIGN_FLOW_CONTENT_EL,
210        desc => FOREIGN_FLOW_CONTENT_EL,
211        title => FOREIGN_FLOW_CONTENT_EL,
212      },
213      ## NOTE: In addition, FOREIGN_EL is set to non-HTML elements.
214    };
215    
216    my $svg_attr_name = {
217      attributetype => 'attributeType',
218      basefrequency => 'baseFrequency',
219      baseprofile => 'baseProfile',
220      calcmode => 'calcMode',
221      clippathunits => 'clipPathUnits',
222      contentscripttype => 'contentScriptType',
223      contentstyletype => 'contentStyleType',
224      diffuseconstant => 'diffuseConstant',
225      edgemode => 'edgeMode',
226      externalresourcesrequired => 'externalResourcesRequired',
227      fecolormatrix => 'feColorMatrix',
228      fecomposite => 'feComposite',
229      fegaussianblur => 'feGaussianBlur',
230      femorphology => 'feMorphology',
231      fetile => 'feTile',
232      filterres => 'filterRes',
233      filterunits => 'filterUnits',
234      glyphref => 'glyphRef',
235      gradienttransform => 'gradientTransform',
236      gradientunits => 'gradientUnits',
237      kernelmatrix => 'kernelMatrix',
238      kernelunitlength => 'kernelUnitLength',
239      keypoints => 'keyPoints',
240      keysplines => 'keySplines',
241      keytimes => 'keyTimes',
242      lengthadjust => 'lengthAdjust',
243      limitingconeangle => 'limitingConeAngle',
244      markerheight => 'markerHeight',
245      markerunits => 'markerUnits',
246      markerwidth => 'markerWidth',
247      maskcontentunits => 'maskContentUnits',
248      maskunits => 'maskUnits',
249      numoctaves => 'numOctaves',
250      pathlength => 'pathLength',
251      patterncontentunits => 'patternContentUnits',
252      patterntransform => 'patternTransform',
253      patternunits => 'patternUnits',
254      pointsatx => 'pointsAtX',
255      pointsaty => 'pointsAtY',
256      pointsatz => 'pointsAtZ',
257      preservealpha => 'preserveAlpha',
258      preserveaspectratio => 'preserveAspectRatio',
259      primitiveunits => 'primitiveUnits',
260      refx => 'refX',
261      refy => 'refY',
262      repeatcount => 'repeatCount',
263      repeatdur => 'repeatDur',
264      requiredextensions => 'requiredExtensions',
265      specularconstant => 'specularConstant',
266      specularexponent => 'specularExponent',
267      spreadmethod => 'spreadMethod',
268      startoffset => 'startOffset',
269      stddeviation => 'stdDeviation',
270      stitchtiles => 'stitchTiles',
271      surfacescale => 'surfaceScale',
272      systemlanguage => 'systemLanguage',
273      tablevalues => 'tableValues',
274      targetx => 'targetX',
275      targety => 'targetY',
276      textlength => 'textLength',
277      viewbox => 'viewBox',
278      viewtarget => 'viewTarget',
279      xchannelselector => 'xChannelSelector',
280      ychannelselector => 'yChannelSelector',
281      zoomandpan => 'zoomAndPan',
282    };
283    
284    my $foreign_attr_xname = {
285      'xlink:actuate' => [$XLINK_NS, ['xlink', 'actuate']],
286      'xlink:arcrole' => [$XLINK_NS, ['xlink', 'arcrole']],
287      'xlink:href' => [$XLINK_NS, ['xlink', 'href']],
288      'xlink:role' => [$XLINK_NS, ['xlink', 'role']],
289      'xlink:show' => [$XLINK_NS, ['xlink', 'show']],
290      'xlink:title' => [$XLINK_NS, ['xlink', 'title']],
291      'xlink:type' => [$XLINK_NS, ['xlink', 'type']],
292      'xml:base' => [$XML_NS, ['xml', 'base']],
293      'xml:lang' => [$XML_NS, ['xml', 'lang']],
294      'xml:space' => [$XML_NS, ['xml', 'space']],
295      'xmlns' => [$XMLNS_NS, [undef, 'xmlns']],
296      'xmlns:xlink' => [$XMLNS_NS, ['xmlns', 'xlink']],
297  };  };
298    
299    ## ISSUE: xmlns:xlink="non-xlink-ns" is not an error.
300    
301  my $c1_entity_char = {  my $c1_entity_char = {
302    0x80 => 0x20AC,    0x80 => 0x20AC,
303    0x81 => 0xFFFD,    0x81 => 0xFFFD,
# Line 61  my $c1_entity_char = { Line 333  my $c1_entity_char = {
333    0x9F => 0x0178,    0x9F => 0x0178,
334  }; # $c1_entity_char  }; # $c1_entity_char
335    
 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 = {  
   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  
   
336  sub parse_byte_string ($$$$;$) {  sub parse_byte_string ($$$$;$) {
337      my $self = shift;
338      my $charset_name = shift;
339      open my $input, '<', ref $_[0] ? $_[0] : \($_[0]);
340      return $self->parse_byte_stream ($charset_name, $input, @_[1..$#_]);
341    } # parse_byte_string
342    
343    sub parse_byte_stream ($$$$;$) {
344    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
345    my $charset = shift;    my $charset_name = shift;
346    my $bytes_s = ref $_[0] ? $_[0] : \($_[0]);    my $byte_stream = $_[0];
   my $s;  
     
   if (defined $charset) {  
     require Encode; ## TODO: decode(utf8) don't delete BOM  
     $s = \ (Encode::decode ($charset, $$bytes_s));  
     $self->{input_encoding} = lc $charset; ## TODO: normalize name  
     $self->{confident} = 1;  
   } else {  
     ## TODO: Implement HTML5 detection algorithm  
     require Whatpm::Charset::UniversalCharDet;  
     $charset = Whatpm::Charset::UniversalCharDet->detect_byte_string  
         (substr ($$bytes_s, 0, 1024));  
     $charset ||= 'windows-1252';  
     $s = \ (Encode::decode ($charset, $$bytes_s));  
     $self->{input_encoding} = $charset;  
     $self->{confident} = 0;  
   }  
347    
348    $self->{change_encoding} = sub {    my $onerror = $_[2] || sub {
349      my $self = shift;      my (%opt) = @_;
350      my $charset = lc shift;      warn "Parse error ($opt{type})\n";
351      ## TODO: if $charset is supported    };
352      ## TODO: normalize charset name    $self->{parse_error} = $onerror; # updated later by parse_char_string
353    
354      ## "Change the encoding" algorithm:    ## HTML5 encoding sniffing algorithm
355      require Message::Charset::Info;
356      ## Step 1        my $charset;
357      if ($charset eq 'utf-16') { ## ISSUE: UTF-16BE -> UTF-8? UTF-16LE -> UTF-8?    my $buffer;
358        $charset = 'utf-8';    my ($char_stream, $e_status);
359    
360      SNIFFING: {
361    
362        ## Step 1
363        if (defined $charset_name) {
364          $charset = Message::Charset::Info->get_by_iana_name ($charset_name);
365    
366          ## ISSUE: Unsupported encoding is not ignored according to the spec.
367          ($char_stream, $e_status) = $charset->get_decode_handle
368              ($byte_stream, allow_error_reporting => 1,
369               allow_fallback => 1);
370          if ($char_stream) {
371            $self->{confident} = 1;
372            last SNIFFING;
373          } else {
374            ## TODO: unsupported error
375          }
376      }      }
377    
378      ## Step 2      ## Step 2
379      if (defined $self->{input_encoding} and      my $byte_buffer = '';
380          $self->{input_encoding} eq $charset) {      for (1..1024) {
381          my $char = $byte_stream->getc;
382          last unless defined $char;
383          $byte_buffer .= $char;
384        } ## TODO: timeout
385    
386        ## Step 3
387        if ($byte_buffer =~ /^\xFE\xFF/) {
388          $charset = Message::Charset::Info->get_by_iana_name ('utf-16be');
389          ($char_stream, $e_status) = $charset->get_decode_handle
390              ($byte_stream, allow_error_reporting => 1,
391               allow_fallback => 1, byte_buffer => \$byte_buffer);
392        $self->{confident} = 1;        $self->{confident} = 1;
393        return;        last SNIFFING;
394        } elsif ($byte_buffer =~ /^\xFF\xFE/) {
395          $charset = Message::Charset::Info->get_by_iana_name ('utf-16le');
396          ($char_stream, $e_status) = $charset->get_decode_handle
397              ($byte_stream, allow_error_reporting => 1,
398               allow_fallback => 1, byte_buffer => \$byte_buffer);
399          $self->{confident} = 1;
400          last SNIFFING;
401        } elsif ($byte_buffer =~ /^\xEF\xBB\xBF/) {
402          $charset = Message::Charset::Info->get_by_iana_name ('utf-8');
403          ($char_stream, $e_status) = $charset->get_decode_handle
404              ($byte_stream, allow_error_reporting => 1,
405               allow_fallback => 1, byte_buffer => \$byte_buffer);
406          $self->{confident} = 1;
407          last SNIFFING;
408      }      }
409    
410      !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.      ## Step 4
411          ':'.$charset, level => 'w');      ## TODO: <meta charset>
412    
413      ## Step 3      ## Step 5
414      # if (can) {      ## TODO: from history
       ## change the encoding on the fly.  
       #$self->{confident} = 1;  
       #return;  
     # }  
415    
416      ## Step 4      ## Step 6
417      throw Whatpm::HTML::RestartParser (charset => $charset);      require Whatpm::Charset::UniversalCharDet;
418        $charset_name = Whatpm::Charset::UniversalCharDet->detect_byte_string
419            ($byte_buffer);
420        if (defined $charset_name) {
421          $charset = Message::Charset::Info->get_by_iana_name ($charset_name);
422    
423          ## ISSUE: Unsupported encoding is not ignored according to the spec.
424          require Whatpm::Charset::DecodeHandle;
425          $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
426              ($byte_stream);
427          ($char_stream, $e_status) = $charset->get_decode_handle
428              ($buffer, allow_error_reporting => 1,
429               allow_fallback => 1, byte_buffer => \$byte_buffer);
430          if ($char_stream) {
431            $buffer->{buffer} = $byte_buffer;
432            !!!parse-error (type => 'sniffing:chardet', ## TODO: type name
433                            value => $charset_name,
434                            level => $self->{info_level},
435                            line => 1, column => 1);
436            $self->{confident} = 0;
437            last SNIFFING;
438          }
439        }
440    
441        ## Step 7: default
442        ## TODO: Make this configurable.
443        $charset = Message::Charset::Info->get_by_iana_name ('windows-1252');
444            ## NOTE: We choose |windows-1252| here, since |utf-8| should be
445            ## detectable in the step 6.
446        require Whatpm::Charset::DecodeHandle;
447        $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
448            ($byte_stream);
449        ($char_stream, $e_status)
450            = $charset->get_decode_handle ($buffer,
451                                           allow_error_reporting => 1,
452                                           allow_fallback => 1,
453                                           byte_buffer => \$byte_buffer);
454        $buffer->{buffer} = $byte_buffer;
455        !!!parse-error (type => 'sniffing:default', ## TODO: type name
456                        value => 'windows-1252',
457                        level => $self->{info_level},
458                        line => 1, column => 1);
459        $self->{confident} = 0;
460      } # SNIFFING
461    
462      $self->{input_encoding} = $charset->get_iana_name;
463      if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
464        !!!parse-error (type => 'chardecode:fallback', ## TODO: type name
465                        value => $self->{input_encoding},
466                        level => $self->{unsupported_level},
467                        line => 1, column => 1);
468      } elsif (not ($e_status &
469                    Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL())) {
470        !!!parse-error (type => 'chardecode:no error', ## TODO: type name
471                        value => $self->{input_encoding},
472                        level => $self->{unsupported_level},
473                        line => 1, column => 1);
474      }
475    
476      $self->{change_encoding} = sub {
477        my $self = shift;
478        $charset_name = shift;
479        my $token = shift;
480    
481        $charset = Message::Charset::Info->get_by_iana_name ($charset_name);
482        ($char_stream, $e_status) = $charset->get_decode_handle
483            ($byte_stream, allow_error_reporting => 1, allow_fallback => 1,
484             byte_buffer => \ $buffer->{buffer});
485        
486        if ($char_stream) { # if supported
487          ## "Change the encoding" algorithm:
488    
489          ## Step 1    
490          if ($charset->{iana_names}->{'utf-16'}) { ## ISSUE: UTF-16BE -> UTF-8? UTF-16LE -> UTF-8?
491            $charset = Message::Charset::Info->get_by_iana_name ('utf-8');
492            ($char_stream, $e_status) = $charset->get_decode_handle
493                ($byte_stream,
494                 byte_buffer => \ $buffer->{buffer});
495          }
496          $charset_name = $charset->get_iana_name;
497          
498          ## Step 2
499          if (defined $self->{input_encoding} and
500              $self->{input_encoding} eq $charset_name) {
501            !!!parse-error (type => 'charset label:matching', ## TODO: type
502                            value => $charset_name,
503                            level => $self->{info_level});
504            $self->{confident} = 1;
505            return;
506          }
507    
508          !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.
509              ':'.$charset_name, level => 'w', token => $token);
510          
511          ## Step 3
512          # if (can) {
513            ## change the encoding on the fly.
514            #$self->{confident} = 1;
515            #return;
516          # }
517          
518          ## Step 4
519          throw Whatpm::HTML::RestartParser ();
520        }
521    }; # $self->{change_encoding}    }; # $self->{change_encoding}
522    
523      my $char_onerror = sub {
524        my (undef, $type, %opt) = @_;
525        !!!parse-error (%opt, type => $type,
526                        line => $self->{line}, column => $self->{column} + 1);
527        if ($opt{octets}) {
528          ${$opt{octets}} = "\x{FFFD}"; # relacement character
529        }
530      };
531      $char_stream->onerror ($char_onerror);
532    
533    my @args = @_; shift @args; # $s    my @args = @_; shift @args; # $s
534    my $return;    my $return;
535    try {    try {
536      $return = $self->parse_char_string ($s, @args);        $return = $self->parse_char_stream ($char_stream, @args);  
537    } catch Whatpm::HTML::RestartParser with {    } catch Whatpm::HTML::RestartParser with {
538      my $charset = shift->{charset};      ## NOTE: Invoked after {change_encoding}.
539      $s = \ (Encode::decode ($charset, $$bytes_s));      
540      $self->{input_encoding} = $charset; ## TODO: normalize      $self->{input_encoding} = $charset->get_iana_name;
541        if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
542          !!!parse-error (type => 'chardecode:fallback', ## TODO: type name
543                          value => $self->{input_encoding},
544                          level => $self->{unsupported_level},
545                          line => 1, column => 1);
546        } elsif (not ($e_status &
547                      Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL())) {
548          !!!parse-error (type => 'chardecode:no error', ## TODO: type name
549                          value => $self->{input_encoding},
550                          level => $self->{unsupported_level},
551                          line => 1, column => 1);
552        }
553      $self->{confident} = 1;      $self->{confident} = 1;
554      $return = $self->parse_char_string ($s, @args);      $char_stream->onerror ($char_onerror);
555        $return = $self->parse_char_stream ($char_stream, @args);
556    };    };
557    return $return;    return $return;
558  } # parse_byte_string  } # parse_byte_stream
559    
560  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM
561  ## 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 162  sub parse_byte_string ($$$$;$) { Line 566  sub parse_byte_string ($$$$;$) {
566  ## 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
567  ## strip the BOM and never strip any ZWNBSP.  ## strip the BOM and never strip any ZWNBSP.
568    
569  *parse_char_string = \&parse_string;  sub parse_char_string ($$$;$) {
570      my $self = shift;
571      require utf8;
572      my $s = ref $_[0] ? $_[0] : \($_[0]);
573      open my $input, '<' . (utf8::is_utf8 ($$s) ? ':utf8' : ''), $s;
574      return $self->parse_char_stream ($input, @_[1..$#_]);
575    } # parse_char_string
576    *parse_string = \&parse_char_string;
577    
578  sub parse_string ($$$;$) {  sub parse_char_stream ($$$;$) {
579    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
580    my $s = ref $_[0] ? $_[0] : \($_[0]);    my $input = $_[0];
581    $self->{document} = $_[1];    $self->{document} = $_[1];
582    @{$self->{document}->child_nodes} = ();    @{$self->{document}->child_nodes} = ();
583    
# Line 177  sub parse_string ($$$;$) { Line 588  sub parse_string ($$$;$) {
588        if defined $self->{input_encoding};        if defined $self->{input_encoding};
589    
590    my $i = 0;    my $i = 0;
591    my $line = 1;    $self->{line_prev} = $self->{line} = 1;
592    my $column = 0;    $self->{column_prev} = $self->{column} = 0;
593    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
594      my $self = shift;      my $self = shift;
595    
596      pop @{$self->{prev_char}};      pop @{$self->{prev_char}};
597      unshift @{$self->{prev_char}}, $self->{next_char};      unshift @{$self->{prev_char}}, $self->{next_char};
598    
599      $self->{next_char} = -1 and return if $i >= length $$s;      my $char;
600      $self->{next_char} = ord substr $$s, $i++, 1;      if (defined $self->{next_next_char}) {
601      $column++;        $char = $self->{next_next_char};
602          delete $self->{next_next_char};
603        } else {
604          $char = $input->getc;
605        }
606        $self->{next_char} = -1 and return unless defined $char;
607        $self->{next_char} = ord $char;
608    
609        ($self->{line_prev}, $self->{column_prev})
610            = ($self->{line}, $self->{column});
611        $self->{column}++;
612            
613      if ($self->{next_char} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
614        $line++;        !!!cp ('j1');
615        $column = 0;        $self->{line}++;
616          $self->{column} = 0;
617      } elsif ($self->{next_char} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
618        $i++ if substr ($$s, $i, 1) eq "\x0A";        !!!cp ('j2');
619          my $next = $input->getc;
620          if (defined $next and $next ne "\x0A") {
621            $self->{next_next_char} = $next;
622          }
623        $self->{next_char} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
624        $line++;        $self->{line}++;
625        $column = 0;        $self->{column} = 0;
626      } elsif ($self->{next_char} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
627          !!!cp ('j3');
628        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
629      } elsif ($self->{next_char} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
630          !!!cp ('j4');
631        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
632        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
633        } elsif ($self->{next_char} <= 0x0008 or
634                 (0x000E <= $self->{next_char} and $self->{next_char} <= 0x001F) or
635                 (0x007F <= $self->{next_char} and $self->{next_char} <= 0x009F) or
636                 (0xD800 <= $self->{next_char} and $self->{next_char} <= 0xDFFF) or
637                 (0xFDD0 <= $self->{next_char} and $self->{next_char} <= 0xFDDF) or
638                 {
639                  0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
640                  0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
641                  0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
642                  0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
643                  0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
644                  0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
645                  0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
646                  0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
647                  0x10FFFE => 1, 0x10FFFF => 1,
648                 }->{$self->{next_char}}) {
649          !!!cp ('j5');
650          !!!parse-error (type => 'control char', level => $self->{must_level});
651    ## TODO: error type documentation
652      }      }
653    };    };
654    $self->{prev_char} = [-1, -1, -1];    $self->{prev_char} = [-1, -1, -1];
# Line 209  sub parse_string ($$$;$) { Line 656  sub parse_string ($$$;$) {
656    
657    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
658      my (%opt) = @_;      my (%opt) = @_;
659      warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";      my $line = $opt{token} ? $opt{token}->{line} : $opt{line};
660        my $column = $opt{token} ? $opt{token}->{column} : $opt{column};
661        warn "Parse error ($opt{type}) at line $line column $column\n";
662    };    };
663    $self->{parse_error} = sub {    $self->{parse_error} = sub {
664      $onerror->(@_, line => $line, column => $column);      $onerror->(line => $self->{line}, column => $self->{column}, @_);
665    };    };
666    
667    $self->_initialize_tokenizer;    $self->_initialize_tokenizer;
# Line 220  sub parse_string ($$$;$) { Line 669  sub parse_string ($$$;$) {
669    $self->_construct_tree;    $self->_construct_tree;
670    $self->_terminate_tree_constructor;    $self->_terminate_tree_constructor;
671    
672      delete $self->{parse_error}; # remove loop
673    
674    return $self->{document};    return $self->{document};
675  } # parse_string  } # parse_char_stream
676    
677  sub new ($) {  sub new ($) {
678    my $class = shift;    my $class = shift;
679    my $self = bless {}, $class;    my $self = bless {
680        must_level => 'm',
681        should_level => 's',
682        good_level => 'w',
683        warn_level => 'w',
684        info_level => 'i',
685        unsupported_level => 'u',
686      }, $class;
687    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
688      $self->{next_char} = -1;      $self->{next_char} = -1;
689    };    };
# Line 287  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO Line 745  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO
745  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }
746  sub BOGUS_DOCTYPE_STATE () { 32 }  sub BOGUS_DOCTYPE_STATE () { 32 }
747  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }
748    sub SELF_CLOSING_START_TAG_STATE () { 34 }
749    sub CDATA_BLOCK_STATE () { 35 }
750    
751  sub DOCTYPE_TOKEN () { 1 }  sub DOCTYPE_TOKEN () { 1 }
752  sub COMMENT_TOKEN () { 2 }  sub COMMENT_TOKEN () { 2 }
# Line 303  sub TABLE_IMS ()      { 0b1000000 } Line 763  sub TABLE_IMS ()      { 0b1000000 }
763  sub ROW_IMS ()        { 0b10000000 }  sub ROW_IMS ()        { 0b10000000 }
764  sub BODY_AFTER_IMS () { 0b100000000 }  sub BODY_AFTER_IMS () { 0b100000000 }
765  sub FRAME_IMS ()      { 0b1000000000 }  sub FRAME_IMS ()      { 0b1000000000 }
766    sub SELECT_IMS ()     { 0b10000000000 }
767    sub IN_FOREIGN_CONTENT_IM () { 0b100000000000 }
768        ## NOTE: "in foreign content" insertion mode is special; it is combined
769        ## with the secondary insertion mode.  In this parser, they are stored
770        ## together in the bit-or'ed form.
771    
772  ## NOTE: "initial" and "before html" insertion modes have no constants.  ## NOTE: "initial" and "before html" insertion modes have no constants.
773    
# Line 325  sub IN_TABLE_IM () { TABLE_IMS } Line 790  sub IN_TABLE_IM () { TABLE_IMS }
790  sub AFTER_BODY_IM () { BODY_AFTER_IMS }  sub AFTER_BODY_IM () { BODY_AFTER_IMS }
791  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
792  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
793  sub IN_SELECT_IM () { 0b01 }  sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
794    sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
795  sub IN_COLUMN_GROUP_IM () { 0b10 }  sub IN_COLUMN_GROUP_IM () { 0b10 }
796    
797  ## Implementations MUST act as if state machine in the spec  ## Implementations MUST act as if state machine in the spec
# Line 338  sub _initialize_tokenizer ($) { Line 804  sub _initialize_tokenizer ($) {
804    undef $self->{current_attribute};    undef $self->{current_attribute};
805    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
806    undef $self->{last_attribute_value_state};    undef $self->{last_attribute_value_state};
807      delete $self->{self_closing};
808    $self->{char} = [];    $self->{char} = [];
809    # $self->{next_char}    # $self->{next_char}
810    !!!next-input-character;    !!!next-input-character;
# Line 358  sub _initialize_tokenizer ($) { Line 825  sub _initialize_tokenizer ($) {
825  ##        ->{value}  ##        ->{value}
826  ##        ->{has_reference} == 1 or 0  ##        ->{has_reference} == 1 or 0
827  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)
828    ## NOTE: The "self-closing flag" is hold as |$self->{self_closing}|.
829    ##     |->{self_closing}| is used to save the value of |$self->{self_closing}|
830    ##     while the token is pushed back to the stack.
831    
832    ## ISSUE: "When a DOCTYPE token is created, its
833    ## <i>self-closing flag</i> must be unset (its other state is that it
834    ## be set), and its attributes list must be empty.": Wrong subject?
835    
836  ## Emitted token MUST immediately be handled by the tree construction state.  ## Emitted token MUST immediately be handled by the tree construction state.
837    
# Line 384  sub _initialize_tokenizer ($) { Line 858  sub _initialize_tokenizer ($) {
858    
859  sub _get_next_token ($) {  sub _get_next_token ($) {
860    my $self = shift;    my $self = shift;
861    
862      if ($self->{self_closing}) {
863        !!!parse-error (type => 'nestc', token => $self->{current_token});
864        ## NOTE: The |self_closing| flag is only set by start tag token.
865        ## In addition, when a start tag token is emitted, it is always set to
866        ## |current_token|.
867        delete $self->{self_closing};
868      }
869    
870    if (@{$self->{token}}) {    if (@{$self->{token}}) {
871        $self->{self_closing} = $self->{token}->[0]->{self_closing};
872      return shift @{$self->{token}};      return shift @{$self->{token}};
873    }    }
874    
# Line 447  sub _get_next_token ($) { Line 931  sub _get_next_token ($) {
931          #          #
932        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
933          !!!cp (11);          !!!cp (11);
934          !!!emit ({type => END_OF_FILE_TOKEN});          !!!emit ({type => END_OF_FILE_TOKEN,
935                      line => $self->{line}, column => $self->{column}});
936          last A; ## TODO: ok?          last A; ## TODO: ok?
937        } else {        } else {
938          !!!cp (12);          !!!cp (12);
939        }        }
940        # Anything else        # Anything else
941        my $token = {type => CHARACTER_TOKEN,        my $token = {type => CHARACTER_TOKEN,
942                     data => chr $self->{next_char}};                     data => chr $self->{next_char},
943                       line => $self->{line}, column => $self->{column},
944                      };
945        ## Stay in the data state        ## Stay in the data state
946        !!!next-input-character;        !!!next-input-character;
947    
# Line 463  sub _get_next_token ($) { Line 950  sub _get_next_token ($) {
950        redo A;        redo A;
951      } elsif ($self->{state} == ENTITY_DATA_STATE) {      } elsif ($self->{state} == ENTITY_DATA_STATE) {
952        ## (cannot happen in CDATA state)        ## (cannot happen in CDATA state)
953    
954          my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
955                
956        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);
957    
# Line 471  sub _get_next_token ($) { Line 960  sub _get_next_token ($) {
960    
961        unless (defined $token) {        unless (defined $token) {
962          !!!cp (13);          !!!cp (13);
963          !!!emit ({type => CHARACTER_TOKEN, data => '&'});          !!!emit ({type => CHARACTER_TOKEN, data => '&',
964                      line => $l, column => $c,
965                     });
966        } else {        } else {
967          !!!cp (14);          !!!cp (14);
968          !!!emit ($token);          !!!emit ($token);
# Line 490  sub _get_next_token ($) { Line 981  sub _get_next_token ($) {
981            ## reconsume            ## reconsume
982            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
983    
984            !!!emit ({type => CHARACTER_TOKEN, data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<',
985                        line => $self->{line_prev},
986                        column => $self->{column_prev},
987                       });
988    
989            redo A;            redo A;
990          }          }
# Line 510  sub _get_next_token ($) { Line 1004  sub _get_next_token ($) {
1004            !!!cp (19);            !!!cp (19);
1005            $self->{current_token}            $self->{current_token}
1006              = {type => START_TAG_TOKEN,              = {type => START_TAG_TOKEN,
1007                 tag_name => chr ($self->{next_char} + 0x0020)};                 tag_name => chr ($self->{next_char} + 0x0020),
1008                   line => $self->{line_prev},
1009                   column => $self->{column_prev}};
1010            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
1011            !!!next-input-character;            !!!next-input-character;
1012            redo A;            redo A;
# Line 518  sub _get_next_token ($) { Line 1014  sub _get_next_token ($) {
1014                   $self->{next_char} <= 0x007A) { # a..z                   $self->{next_char} <= 0x007A) { # a..z
1015            !!!cp (20);            !!!cp (20);
1016            $self->{current_token} = {type => START_TAG_TOKEN,            $self->{current_token} = {type => START_TAG_TOKEN,
1017                              tag_name => chr ($self->{next_char})};                                      tag_name => chr ($self->{next_char}),
1018                                        line => $self->{line_prev},
1019                                        column => $self->{column_prev}};
1020            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
1021            !!!next-input-character;            !!!next-input-character;
1022            redo A;            redo A;
1023          } elsif ($self->{next_char} == 0x003E) { # >          } elsif ($self->{next_char} == 0x003E) { # >
1024            !!!cp (21);            !!!cp (21);
1025            !!!parse-error (type => 'empty start tag');            !!!parse-error (type => 'empty start tag',
1026                              line => $self->{line_prev},
1027                              column => $self->{column_prev});
1028            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1029            !!!next-input-character;            !!!next-input-character;
1030    
1031            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});            !!!emit ({type => CHARACTER_TOKEN, data => '<>',
1032                        line => $self->{line_prev},
1033                        column => $self->{column_prev},
1034                       });
1035    
1036            redo A;            redo A;
1037          } elsif ($self->{next_char} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
1038            !!!cp (22);            !!!cp (22);
1039            !!!parse-error (type => 'pio');            !!!parse-error (type => 'pio',
1040                              line => $self->{line_prev},
1041                              column => $self->{column_prev});
1042            $self->{state} = BOGUS_COMMENT_STATE;            $self->{state} = BOGUS_COMMENT_STATE;
1043              $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1044                                        line => $self->{line_prev},
1045                                        column => $self->{column_prev},
1046                                       };
1047            ## $self->{next_char} is intentionally left as is            ## $self->{next_char} is intentionally left as is
1048            redo A;            redo A;
1049          } else {          } else {
1050            !!!cp (23);            !!!cp (23);
1051            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago',
1052                              line => $self->{line_prev},
1053                              column => $self->{column_prev});
1054            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1055            ## reconsume            ## reconsume
1056    
1057            !!!emit ({type => CHARACTER_TOKEN, data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<',
1058                        line => $self->{line_prev},
1059                        column => $self->{column_prev},
1060                       });
1061    
1062            redo A;            redo A;
1063          }          }
# Line 551  sub _get_next_token ($) { Line 1065  sub _get_next_token ($) {
1065          die "$0: $self->{content_model} in tag open";          die "$0: $self->{content_model} in tag open";
1066        }        }
1067      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
1068          my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"
1069        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
1070          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
1071    
1072            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
1073            my @next_char;            my @next_char;
1074            TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {            TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {
# Line 569  sub _get_next_token ($) { Line 1085  sub _get_next_token ($) {
1085                !!!back-next-input-character (@next_char);                !!!back-next-input-character (@next_char);
1086                $self->{state} = DATA_STATE;                $self->{state} = DATA_STATE;
1087    
1088                !!!emit ({type => CHARACTER_TOKEN, data => '</'});                !!!emit ({type => CHARACTER_TOKEN, data => '</',
1089                            line => $l, column => $c,
1090                           });
1091        
1092                redo A;                redo A;
1093              }              }
# Line 588  sub _get_next_token ($) { Line 1106  sub _get_next_token ($) {
1106              $self->{next_char} = shift @next_char; # reconsume              $self->{next_char} = shift @next_char; # reconsume
1107              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
1108              $self->{state} = DATA_STATE;              $self->{state} = DATA_STATE;
1109              !!!emit ({type => CHARACTER_TOKEN, data => '</'});              !!!emit ({type => CHARACTER_TOKEN, data => '</',
1110                          line => $l, column => $c,
1111                         });
1112              redo A;              redo A;
1113            } else {            } else {
1114              !!!cp (27);              !!!cp (27);
# Line 601  sub _get_next_token ($) { Line 1121  sub _get_next_token ($) {
1121            !!!cp (28);            !!!cp (28);
1122            # next-input-character is already done            # next-input-character is already done
1123            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1124            !!!emit ({type => CHARACTER_TOKEN, data => '</'});            !!!emit ({type => CHARACTER_TOKEN, data => '</',
1125                        line => $l, column => $c,
1126                       });
1127            redo A;            redo A;
1128          }          }
1129        }        }
# Line 609  sub _get_next_token ($) { Line 1131  sub _get_next_token ($) {
1131        if (0x0041 <= $self->{next_char} and        if (0x0041 <= $self->{next_char} and
1132            $self->{next_char} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
1133          !!!cp (29);          !!!cp (29);
1134          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token}
1135                            tag_name => chr ($self->{next_char} + 0x0020)};              = {type => END_TAG_TOKEN,
1136                   tag_name => chr ($self->{next_char} + 0x0020),
1137                   line => $l, column => $c};
1138          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
1139          !!!next-input-character;          !!!next-input-character;
1140          redo A;          redo A;
# Line 618  sub _get_next_token ($) { Line 1142  sub _get_next_token ($) {
1142                 $self->{next_char} <= 0x007A) { # a..z                 $self->{next_char} <= 0x007A) { # a..z
1143          !!!cp (30);          !!!cp (30);
1144          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token} = {type => END_TAG_TOKEN,
1145                            tag_name => chr ($self->{next_char})};                                    tag_name => chr ($self->{next_char}),
1146                                      line => $l, column => $c};
1147          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
1148          !!!next-input-character;          !!!next-input-character;
1149          redo A;          redo A;
1150        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1151          !!!cp (31);          !!!cp (31);
1152          !!!parse-error (type => 'empty end tag');          !!!parse-error (type => 'empty end tag',
1153                            line => $self->{line_prev}, ## "<" in "</>"
1154                            column => $self->{column_prev} - 1);
1155          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1156          !!!next-input-character;          !!!next-input-character;
1157          redo A;          redo A;
# Line 634  sub _get_next_token ($) { Line 1161  sub _get_next_token ($) {
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 => $l, column => $c,
1166                     });
1167    
1168          redo A;          redo A;
1169        } else {        } else {
1170          !!!cp (33);          !!!cp (33);
1171          !!!parse-error (type => 'bogus end tag');          !!!parse-error (type => 'bogus end tag');
1172          $self->{state} = BOGUS_COMMENT_STATE;          $self->{state} = BOGUS_COMMENT_STATE;
1173            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1174                                      line => $self->{line_prev}, # "<" of "</"
1175                                      column => $self->{column_prev} - 1,
1176                                     };
1177          ## $self->{next_char} is intentionally left as is          ## $self->{next_char} is intentionally left as is
1178          redo A;          redo A;
1179        }        }
# Line 657  sub _get_next_token ($) { Line 1190  sub _get_next_token ($) {
1190        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1191          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1192            !!!cp (35);            !!!cp (35);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1193            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1194          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1195            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 690  sub _get_next_token ($) { Line 1221  sub _get_next_token ($) {
1221          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1222          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1223            !!!cp (39);            !!!cp (39);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1224            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1225          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1226            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 712  sub _get_next_token ($) { Line 1241  sub _get_next_token ($) {
1241    
1242          redo A;          redo A;
1243        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1244            !!!cp (42);
1245            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1246          !!!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  
1247          redo A;          redo A;
1248        } else {        } else {
1249          !!!cp (44);          !!!cp (44);
# Line 747  sub _get_next_token ($) { Line 1266  sub _get_next_token ($) {
1266        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1267          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1268            !!!cp (46);            !!!cp (46);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1269            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1270          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1271            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 770  sub _get_next_token ($) { Line 1287  sub _get_next_token ($) {
1287        } elsif (0x0041 <= $self->{next_char} and        } elsif (0x0041 <= $self->{next_char} and
1288                 $self->{next_char} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1289          !!!cp (49);          !!!cp (49);
1290          $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),          $self->{current_attribute}
1291                                value => ''};              = {name => chr ($self->{next_char} + 0x0020),
1292                   value => '',
1293                   line => $self->{line}, column => $self->{column}};
1294          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1295          !!!next-input-character;          !!!next-input-character;
1296          redo A;          redo A;
1297        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1298            !!!cp (50);
1299            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1300          !!!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  
1301          redo A;          redo A;
1302        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1303          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1304          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1305            !!!cp (52);            !!!cp (52);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1306            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1307          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1308            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 825  sub _get_next_token ($) { Line 1332  sub _get_next_token ($) {
1332          } else {          } else {
1333            !!!cp (56);            !!!cp (56);
1334          }          }
1335          $self->{current_attribute} = {name => chr ($self->{next_char}),          $self->{current_attribute}
1336                                value => ''};              = {name => chr ($self->{next_char}),
1337                   value => '',
1338                   line => $self->{line}, column => $self->{column}};
1339          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1340          !!!next-input-character;          !!!next-input-character;
1341          redo A;          redo A;
# Line 836  sub _get_next_token ($) { Line 1345  sub _get_next_token ($) {
1345          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
1346              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
1347            !!!cp (57);            !!!cp (57);
1348            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name}, line => $self->{current_attribute}->{line}, column => $self->{current_attribute}->{column});
1349            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
1350          } else {          } else {
1351            !!!cp (58);            !!!cp (58);
# Line 865  sub _get_next_token ($) { Line 1374  sub _get_next_token ($) {
1374          $before_leave->();          $before_leave->();
1375          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1376            !!!cp (61);            !!!cp (61);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1377            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1378          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1379            !!!cp (62);            !!!cp (62);
# Line 891  sub _get_next_token ($) { Line 1398  sub _get_next_token ($) {
1398          !!!next-input-character;          !!!next-input-character;
1399          redo A;          redo A;
1400        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1401            !!!cp (64);
1402          $before_leave->();          $before_leave->();
1403            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1404          !!!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  
1405          redo A;          redo A;
1406        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1407          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1408          $before_leave->();          $before_leave->();
1409          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1410            !!!cp (66);            !!!cp (66);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1411            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1412          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1413            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 963  sub _get_next_token ($) { Line 1458  sub _get_next_token ($) {
1458        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1459          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1460            !!!cp (73);            !!!cp (73);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1461            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1462          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1463            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 987  sub _get_next_token ($) { Line 1480  sub _get_next_token ($) {
1480        } elsif (0x0041 <= $self->{next_char} and        } elsif (0x0041 <= $self->{next_char} and
1481                 $self->{next_char} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1482          !!!cp (76);          !!!cp (76);
1483          $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),          $self->{current_attribute}
1484                                value => ''};              = {name => chr ($self->{next_char} + 0x0020),
1485                   value => '',
1486                   line => $self->{line}, column => $self->{column}};
1487          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1488          !!!next-input-character;          !!!next-input-character;
1489          redo A;          redo A;
1490        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1491            !!!cp (77);
1492            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1493          !!!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  
1494          redo A;          redo A;
1495        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1496          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1497          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1498            !!!cp (79);            !!!cp (79);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1499            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1500          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1501            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1035  sub _get_next_token ($) { Line 1517  sub _get_next_token ($) {
1517          redo A;          redo A;
1518        } else {        } else {
1519          !!!cp (82);          !!!cp (82);
1520          $self->{current_attribute} = {name => chr ($self->{next_char}),          $self->{current_attribute}
1521                                value => ''};              = {name => chr ($self->{next_char}),
1522                   value => '',
1523                   line => $self->{line}, column => $self->{column}};
1524          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1525          !!!next-input-character;          !!!next-input-character;
1526          redo A;                  redo A;        
# Line 1069  sub _get_next_token ($) { Line 1553  sub _get_next_token ($) {
1553        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1554          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1555            !!!cp (87);            !!!cp (87);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1556            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1557          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1558            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1094  sub _get_next_token ($) { Line 1576  sub _get_next_token ($) {
1576          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1577          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1578            !!!cp (90);            !!!cp (90);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1579            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1580          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1581            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1143  sub _get_next_token ($) { Line 1623  sub _get_next_token ($) {
1623          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1624          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1625            !!!cp (97);            !!!cp (97);
           $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 1187  sub _get_next_token ($) { Line 1665  sub _get_next_token ($) {
1665          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1666          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1667            !!!cp (103);            !!!cp (103);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1668            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1669          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1670            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1234  sub _get_next_token ($) { Line 1710  sub _get_next_token ($) {
1710        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1711          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1712            !!!cp (109);            !!!cp (109);
           $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 1259  sub _get_next_token ($) { Line 1733  sub _get_next_token ($) {
1733          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1734          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1735            !!!cp (112);            !!!cp (112);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1736            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1737          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1738            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1331  sub _get_next_token ($) { Line 1803  sub _get_next_token ($) {
1803        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1804          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1805            !!!cp (119);            !!!cp (119);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1806            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1807          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1808            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1353  sub _get_next_token ($) { Line 1823  sub _get_next_token ($) {
1823    
1824          redo A;          redo A;
1825        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1826            !!!cp (122);
1827            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1828          !!!next-input-character;          !!!next-input-character;
1829          if ($self->{next_char} == 0x003E and # >          redo A;
1830              $self->{current_token}->{type} == START_TAG_TOKEN and        } elsif ($self->{next_char} == -1) {
1831              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {          !!!parse-error (type => 'unclosed tag');
1832            # permitted slash          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1833            !!!cp (122);            !!!cp (122.3);
1834            #            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1835            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1836              if ($self->{current_token}->{attributes}) {
1837                !!!cp (122.1);
1838                !!!parse-error (type => 'end tag attribute');
1839              } else {
1840                ## NOTE: This state should never be reached.
1841                !!!cp (122.2);
1842              }
1843          } else {          } else {
1844            !!!cp (123);            die "$0: $self->{current_token}->{type}: Unknown token type";
           !!!parse-error (type => 'nestc');  
1845          }          }
1846          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = DATA_STATE;
1847          # next-input-character is already done          ## Reconsume.
1848            !!!emit ($self->{current_token}); # start tag or end tag
1849          redo A;          redo A;
1850        } else {        } else {
1851          !!!cp (124);          !!!cp ('124.1');
1852          !!!parse-error (type => 'no space between attributes');          !!!parse-error (type => 'no space between attributes');
1853          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1854          ## reconsume          ## reconsume
1855          redo A;          redo A;
1856        }        }
1857        } elsif ($self->{state} == SELF_CLOSING_START_TAG_STATE) {
1858          if ($self->{next_char} == 0x003E) { # >
1859            if ($self->{current_token}->{type} == END_TAG_TOKEN) {
1860              !!!cp ('124.2');
1861              !!!parse-error (type => 'nestc', token => $self->{current_token});
1862              ## TODO: Different type than slash in start tag
1863              $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1864              if ($self->{current_token}->{attributes}) {
1865                !!!cp ('124.4');
1866                !!!parse-error (type => 'end tag attribute');
1867              } else {
1868                !!!cp ('124.5');
1869              }
1870              ## TODO: Test |<title></title/>|
1871            } else {
1872              !!!cp ('124.3');
1873              $self->{self_closing} = 1;
1874            }
1875    
1876            $self->{state} = DATA_STATE;
1877            !!!next-input-character;
1878    
1879            !!!emit ($self->{current_token}); # start tag or end tag
1880    
1881            redo A;
1882          } elsif ($self->{next_char} == -1) {
1883            !!!parse-error (type => 'unclosed tag');
1884            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1885              !!!cp (124.7);
1886              $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1887            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1888              if ($self->{current_token}->{attributes}) {
1889                !!!cp (124.5);
1890                !!!parse-error (type => 'end tag attribute');
1891              } else {
1892                ## NOTE: This state should never be reached.
1893                !!!cp (124.6);
1894              }
1895            } else {
1896              die "$0: $self->{current_token}->{type}: Unknown token type";
1897            }
1898            $self->{state} = DATA_STATE;
1899            ## Reconsume.
1900            !!!emit ($self->{current_token}); # start tag or end tag
1901            redo A;
1902          } else {
1903            !!!cp ('124.4');
1904            !!!parse-error (type => 'nestc');
1905            ## TODO: This error type is wrong.
1906            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1907            ## Reconsume.
1908            redo A;
1909          }
1910      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
1911        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1912                
1913        my $token = {type => COMMENT_TOKEN, data => ''};        ## NOTE: Set by the previous state
1914          #my $token = {type => COMMENT_TOKEN, data => ''};
1915    
1916        BC: {        BC: {
1917          if ($self->{next_char} == 0x003E) { # >          if ($self->{next_char} == 0x003E) { # >
# Line 1385  sub _get_next_token ($) { Line 1919  sub _get_next_token ($) {
1919            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1920            !!!next-input-character;            !!!next-input-character;
1921    
1922            !!!emit ($token);            !!!emit ($self->{current_token}); # comment
1923    
1924            redo A;            redo A;
1925          } elsif ($self->{next_char} == -1) {          } elsif ($self->{next_char} == -1) {
# Line 1393  sub _get_next_token ($) { Line 1927  sub _get_next_token ($) {
1927            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1928            ## reconsume            ## reconsume
1929    
1930            !!!emit ($token);            !!!emit ($self->{current_token}); # comment
1931    
1932            redo A;            redo A;
1933          } else {          } else {
1934            !!!cp (126);            !!!cp (126);
1935            $token->{data} .= chr ($self->{next_char});            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1936            !!!next-input-character;            !!!next-input-character;
1937            redo BC;            redo BC;
1938          }          }
# Line 1408  sub _get_next_token ($) { Line 1942  sub _get_next_token ($) {
1942      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
1943        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1944    
1945          my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1);
1946    
1947        my @next_char;        my @next_char;
1948        push @next_char, $self->{next_char};        push @next_char, $self->{next_char};
1949                
# Line 1416  sub _get_next_token ($) { Line 1952  sub _get_next_token ($) {
1952          push @next_char, $self->{next_char};          push @next_char, $self->{next_char};
1953          if ($self->{next_char} == 0x002D) { # -          if ($self->{next_char} == 0x002D) { # -
1954            !!!cp (127);            !!!cp (127);
1955            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1956                                        line => $l, column => $c,
1957                                       };
1958            $self->{state} = COMMENT_START_STATE;            $self->{state} = COMMENT_START_STATE;
1959            !!!next-input-character;            !!!next-input-character;
1960            redo A;            redo A;
# Line 1452  sub _get_next_token ($) { Line 1990  sub _get_next_token ($) {
1990                      !!!cp (129);                      !!!cp (129);
1991                      ## TODO: What a stupid code this is!                      ## TODO: What a stupid code this is!
1992                      $self->{state} = DOCTYPE_STATE;                      $self->{state} = DOCTYPE_STATE;
1993                        $self->{current_token} = {type => DOCTYPE_TOKEN,
1994                                                  quirks => 1,
1995                                                  line => $l, column => $c,
1996                                                 };
1997                      !!!next-input-character;                      !!!next-input-character;
1998                      redo A;                      redo A;
1999                    } else {                    } else {
# Line 1472  sub _get_next_token ($) { Line 2014  sub _get_next_token ($) {
2014          } else {          } else {
2015            !!!cp (135);            !!!cp (135);
2016          }          }
2017          } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM and
2018                   $self->{open_elements}->[-1]->[1] & FOREIGN_EL and
2019                   $self->{next_char} == 0x005B) { # [
2020            !!!next-input-character;
2021            push @next_char, $self->{next_char};
2022            if ($self->{next_char} == 0x0043) { # C
2023              !!!next-input-character;
2024              push @next_char, $self->{next_char};
2025              if ($self->{next_char} == 0x0044) { # D
2026                !!!next-input-character;
2027                push @next_char, $self->{next_char};
2028                if ($self->{next_char} == 0x0041) { # A
2029                  !!!next-input-character;
2030                  push @next_char, $self->{next_char};
2031                  if ($self->{next_char} == 0x0054) { # T
2032                    !!!next-input-character;
2033                    push @next_char, $self->{next_char};
2034                    if ($self->{next_char} == 0x0041) { # A
2035                      !!!next-input-character;
2036                      push @next_char, $self->{next_char};
2037                      if ($self->{next_char} == 0x005B) { # [
2038                        !!!cp (135.1);
2039                        $self->{state} = CDATA_BLOCK_STATE;
2040                        !!!next-input-character;
2041                        redo A;
2042                      } else {
2043                        !!!cp (135.2);
2044                      }
2045                    } else {
2046                      !!!cp (135.3);
2047                    }
2048                  } else {
2049                    !!!cp (135.4);                
2050                  }
2051                } else {
2052                  !!!cp (135.5);
2053                }
2054              } else {
2055                !!!cp (135.6);
2056              }
2057            } else {
2058              !!!cp (135.7);
2059            }
2060        } else {        } else {
2061          !!!cp (136);          !!!cp (136);
2062        }        }
# Line 1480  sub _get_next_token ($) { Line 2065  sub _get_next_token ($) {
2065        $self->{next_char} = shift @next_char;        $self->{next_char} = shift @next_char;
2066        !!!back-next-input-character (@next_char);        !!!back-next-input-character (@next_char);
2067        $self->{state} = BOGUS_COMMENT_STATE;        $self->{state} = BOGUS_COMMENT_STATE;
2068          $self->{current_token} = {type => COMMENT_TOKEN, data => '',
2069                                    line => $l, column => $c,
2070                                   };
2071        redo A;        redo A;
2072                
2073        ## ISSUE: typos in spec: chacacters, is is a parse error        ## ISSUE: typos in spec: chacacters, is is a parse error
# Line 1603  sub _get_next_token ($) { Line 2191  sub _get_next_token ($) {
2191          redo A;          redo A;
2192        } elsif ($self->{next_char} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
2193          !!!cp (152);          !!!cp (152);
2194          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment',
2195                            line => $self->{line_prev},
2196                            column => $self->{column_prev});
2197          $self->{current_token}->{data} .= '-'; # comment          $self->{current_token}->{data} .= '-'; # comment
2198          ## Stay in the state          ## Stay in the state
2199          !!!next-input-character;          !!!next-input-character;
# Line 1619  sub _get_next_token ($) { Line 2209  sub _get_next_token ($) {
2209          redo A;          redo A;
2210        } else {        } else {
2211          !!!cp (154);          !!!cp (154);
2212          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment',
2213                            line => $self->{line_prev},
2214                            column => $self->{column_prev});
2215          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment
2216          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
2217          !!!next-input-character;          !!!next-input-character;
# Line 1658  sub _get_next_token ($) { Line 2250  sub _get_next_token ($) {
2250          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2251          !!!next-input-character;          !!!next-input-character;
2252    
2253          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});          !!!emit ($self->{current_token}); # DOCTYPE (quirks)
2254    
2255          redo A;          redo A;
2256        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
# Line 1667  sub _get_next_token ($) { Line 2259  sub _get_next_token ($) {
2259          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2260          ## reconsume          ## reconsume
2261    
2262          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});          !!!emit ($self->{current_token}); # DOCTYPE (quirks)
2263    
2264          redo A;          redo A;
2265        } else {        } else {
2266          !!!cp (160);          !!!cp (160);
2267          $self->{current_token}          $self->{current_token}->{name} = chr $self->{next_char};
2268              = {type => DOCTYPE_TOKEN,          delete $self->{current_token}->{quirks};
                name => chr ($self->{next_char}),  
                #quirks => 0,  
               };  
2269  ## ISSUE: "Set the token's name name to the" in the spec  ## ISSUE: "Set the token's name name to the" in the spec
2270          $self->{state} = DOCTYPE_NAME_STATE;          $self->{state} = DOCTYPE_NAME_STATE;
2271          !!!next-input-character;          !!!next-input-character;
# Line 2192  sub _get_next_token ($) { Line 2781  sub _get_next_token ($) {
2781          !!!next-input-character;          !!!next-input-character;
2782          redo A;          redo A;
2783        }        }
2784        } elsif ($self->{state} == CDATA_BLOCK_STATE) {
2785          my $s = '';
2786          
2787          my ($l, $c) = ($self->{line}, $self->{column});
2788    
2789          CS: while ($self->{next_char} != -1) {
2790            if ($self->{next_char} == 0x005D) { # ]
2791              !!!next-input-character;
2792              if ($self->{next_char} == 0x005D) { # ]
2793                !!!next-input-character;
2794                MDC: {
2795                  if ($self->{next_char} == 0x003E) { # >
2796                    !!!cp (221.1);
2797                    !!!next-input-character;
2798                    last CS;
2799                  } elsif ($self->{next_char} == 0x005D) { # ]
2800                    !!!cp (221.2);
2801                    $s .= ']';
2802                    !!!next-input-character;
2803                    redo MDC;
2804                  } else {
2805                    !!!cp (221.3);
2806                    $s .= ']]';
2807                    #
2808                  }
2809                } # MDC
2810              } else {
2811                !!!cp (221.4);
2812                $s .= ']';
2813                #
2814              }
2815            } else {
2816              !!!cp (221.5);
2817              #
2818            }
2819            $s .= chr $self->{next_char};
2820            !!!next-input-character;
2821          } # CS
2822    
2823          $self->{state} = DATA_STATE;
2824          ## next-input-character done or EOF, which is reconsumed.
2825    
2826          if (length $s) {
2827            !!!cp (221.6);
2828            !!!emit ({type => CHARACTER_TOKEN, data => $s,
2829                      line => $l, column => $c});
2830          } else {
2831            !!!cp (221.7);
2832          }
2833    
2834          redo A;
2835    
2836          ## ISSUE: "text tokens" in spec.
2837          ## TODO: Streaming support
2838      } else {      } else {
2839        die "$0: $self->{state}: Unknown state";        die "$0: $self->{state}: Unknown state";
2840      }      }
# Line 2203  sub _get_next_token ($) { Line 2846  sub _get_next_token ($) {
2846  sub _tokenize_attempt_to_consume_an_entity ($$$) {  sub _tokenize_attempt_to_consume_an_entity ($$$) {
2847    my ($self, $in_attr, $additional) = @_;    my ($self, $in_attr, $additional) = @_;
2848    
2849      my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
2850    
2851    if ({    if ({
2852         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2853         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
# Line 2243  sub _tokenize_attempt_to_consume_an_enti Line 2888  sub _tokenize_attempt_to_consume_an_enti
2888            redo X;            redo X;
2889          } elsif (not defined $code) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2890            !!!cp (1005);            !!!cp (1005);
2891            !!!parse-error (type => 'bare hcro');            !!!parse-error (type => 'bare hcro', line => $l, column => $c);
2892            !!!back-next-input-character ($x_char, $self->{next_char});            !!!back-next-input-character ($x_char, $self->{next_char});
2893            $self->{next_char} = 0x0023; # #            $self->{next_char} = 0x0023; # #
2894            return undef;            return undef;
# Line 2252  sub _tokenize_attempt_to_consume_an_enti Line 2897  sub _tokenize_attempt_to_consume_an_enti
2897            !!!next-input-character;            !!!next-input-character;
2898          } else {          } else {
2899            !!!cp (1007);            !!!cp (1007);
2900            !!!parse-error (type => 'no refc');            !!!parse-error (type => 'no refc', line => $l, column => $c);
2901          }          }
2902    
2903          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2904            !!!cp (1008);            !!!cp (1008);
2905            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);            !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);
2906            $code = 0xFFFD;            $code = 0xFFFD;
2907          } elsif ($code > 0x10FFFF) {          } elsif ($code > 0x10FFFF) {
2908            !!!cp (1009);            !!!cp (1009);
2909            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);            !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);
2910            $code = 0xFFFD;            $code = 0xFFFD;
2911          } elsif ($code == 0x000D) {          } elsif ($code == 0x000D) {
2912            !!!cp (1010);            !!!cp (1010);
2913            !!!parse-error (type => 'CR character reference');            !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2914            $code = 0x000A;            $code = 0x000A;
2915          } elsif (0x80 <= $code and $code <= 0x9F) {          } elsif (0x80 <= $code and $code <= 0x9F) {
2916            !!!cp (1011);            !!!cp (1011);
2917            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);            !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);
2918            $code = $c1_entity_char->{$code};            $code = $c1_entity_char->{$code};
2919          }          }
2920    
2921          return {type => CHARACTER_TOKEN, data => chr $code,          return {type => CHARACTER_TOKEN, data => chr $code,
2922                  has_reference => 1};                  has_reference => 1,
2923                    line => $l, column => $c,
2924                   };
2925        } # X        } # X
2926      } elsif (0x0030 <= $self->{next_char} and      } elsif (0x0030 <= $self->{next_char} and
2927               $self->{next_char} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
# Line 2295  sub _tokenize_attempt_to_consume_an_enti Line 2942  sub _tokenize_attempt_to_consume_an_enti
2942          !!!next-input-character;          !!!next-input-character;
2943        } else {        } else {
2944          !!!cp (1014);          !!!cp (1014);
2945          !!!parse-error (type => 'no refc');          !!!parse-error (type => 'no refc', line => $l, column => $c);
2946        }        }
2947    
2948        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2949          !!!cp (1015);          !!!cp (1015);
2950          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);          !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);
2951          $code = 0xFFFD;          $code = 0xFFFD;
2952        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
2953          !!!cp (1016);          !!!cp (1016);
2954          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);          !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);
2955          $code = 0xFFFD;          $code = 0xFFFD;
2956        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
2957          !!!cp (1017);          !!!cp (1017);
2958          !!!parse-error (type => 'CR character reference');          !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2959          $code = 0x000A;          $code = 0x000A;
2960        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
2961          !!!cp (1018);          !!!cp (1018);
2962          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);          !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);
2963          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
2964        }        }
2965                
2966        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1,
2967                  line => $l, column => $c,
2968                 };
2969      } else {      } else {
2970        !!!cp (1019);        !!!cp (1019);
2971        !!!parse-error (type => 'bare nero');        !!!parse-error (type => 'bare nero', line => $l, column => $c);
2972        !!!back-next-input-character ($self->{next_char});        !!!back-next-input-character ($self->{next_char});
2973        $self->{next_char} = 0x0023; # #        $self->{next_char} = 0x0023; # #
2974        return undef;        return undef;
# Line 2336  sub _tokenize_attempt_to_consume_an_enti Line 2985  sub _tokenize_attempt_to_consume_an_enti
2985      require Whatpm::_NamedEntityList;      require Whatpm::_NamedEntityList;
2986      our $EntityChar;      our $EntityChar;
2987    
2988      while (length $entity_name < 10 and      while (length $entity_name < 30 and
2989             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
2990             ((0x0041 <= $self->{next_char} and # a             ((0x0041 <= $self->{next_char} and # a
2991               $self->{next_char} <= 0x005A) or # x               $self->{next_char} <= 0x005A) or # x
# Line 2369  sub _tokenize_attempt_to_consume_an_enti Line 3018  sub _tokenize_attempt_to_consume_an_enti
3018            
3019      if ($match > 0) {      if ($match > 0) {
3020        !!!cp (1023);        !!!cp (1023);
3021        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
3022                  line => $l, column => $c,
3023                 };
3024      } elsif ($match < 0) {      } elsif ($match < 0) {
3025        !!!parse-error (type => 'no refc');        !!!parse-error (type => 'no refc', line => $l, column => $c);
3026        if ($in_attr and $match < -1) {        if ($in_attr and $match < -1) {
3027          !!!cp (1024);          !!!cp (1024);
3028          return {type => CHARACTER_TOKEN, data => '&'.$entity_name};          return {type => CHARACTER_TOKEN, data => '&'.$entity_name,
3029                    line => $l, column => $c,
3030                   };
3031        } else {        } else {
3032          !!!cp (1025);          !!!cp (1025);
3033          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
3034                    line => $l, column => $c,
3035                   };
3036        }        }
3037      } else {      } else {
3038        !!!cp (1026);        !!!cp (1026);
3039        !!!parse-error (type => 'bare ero');        !!!parse-error (type => 'bare ero', line => $l, column => $c);
3040        ## NOTE: "No characters are consumed" in the spec.        ## NOTE: "No characters are consumed" in the spec.
3041        return {type => CHARACTER_TOKEN, data => '&'.$value};        return {type => CHARACTER_TOKEN, data => '&'.$value,
3042                  line => $l, column => $c,
3043                 };
3044      }      }
3045    } else {    } else {
3046      !!!cp (1027);      !!!cp (1027);
3047      ## no characters are consumed      ## no characters are consumed
3048      !!!parse-error (type => 'bare ero');      !!!parse-error (type => 'bare ero', line => $l, column => $c);
3049      return undef;      return undef;
3050    }    }
3051  } # _tokenize_attempt_to_consume_an_entity  } # _tokenize_attempt_to_consume_an_entity
# Line 2459  sub _tree_construction_initial ($) { Line 3116  sub _tree_construction_initial ($) {
3116            defined $token->{public_identifier} or            defined $token->{public_identifier} or
3117            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
3118          !!!cp ('t1');          !!!cp ('t1');
3119          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
3120        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
3121          !!!cp ('t2');          !!!cp ('t2');
3122          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
3123          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
3124        } else {        } else {
3125          !!!cp ('t3');          !!!cp ('t3');
3126        }        }
3127                
3128        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
3129          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
3130          ## NOTE: Default value for both |public_id| and |system_id| attributes
3131          ## are empty strings, so that we don't set any value in missing cases.
3132        $doctype->public_id ($token->{public_identifier})        $doctype->public_id ($token->{public_identifier})
3133            if defined $token->{public_identifier};            if defined $token->{public_identifier};
3134        $doctype->system_id ($token->{system_identifier})        $doctype->system_id ($token->{system_identifier})
# Line 2602  sub _tree_construction_initial ($) { Line 3261  sub _tree_construction_initial ($) {
3261                END_OF_FILE_TOKEN, 1,                END_OF_FILE_TOKEN, 1,
3262               }->{$token->{type}}) {               }->{$token->{type}}) {
3263        !!!cp ('t14');        !!!cp ('t14');
3264        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
3265        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3266        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
3267        ## reprocess        ## reprocess
3268          !!!ack-later;
3269        return;        return;
3270      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
3271        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
# Line 2623  sub _tree_construction_initial ($) { Line 3283  sub _tree_construction_initial ($) {
3283          !!!cp ('t17');          !!!cp ('t17');
3284        }        }
3285    
3286        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
3287        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3288        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
3289        ## reprocess        ## reprocess
# Line 2652  sub _tree_construction_root_element ($) Line 3312  sub _tree_construction_root_element ($)
3312    B: {    B: {
3313        if ($token->{type} == DOCTYPE_TOKEN) {        if ($token->{type} == DOCTYPE_TOKEN) {
3314          !!!cp ('t19');          !!!cp ('t19');
3315          !!!parse-error (type => 'in html:#DOCTYPE');          !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
3316          ## Ignore the token          ## Ignore the token
3317          ## Stay in the insertion mode.          ## Stay in the insertion mode.
3318          !!!next-token;          !!!next-token;
# Line 2686  sub _tree_construction_root_element ($) Line 3346  sub _tree_construction_root_element ($)
3346        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
3347          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
3348            my $root_element;            my $root_element;
3349            !!!create-element ($root_element, $token->{tag_name}, $token->{attributes});            !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
3350            $self->{document}->append_child ($root_element);            $self->{document}->append_child ($root_element);
3351            push @{$self->{open_elements}}, [$root_element, 'html'];            push @{$self->{open_elements}},
3352                  [$root_element, $el_category->{html}];
3353    
3354            if ($token->{attributes}->{manifest}) {            if ($token->{attributes}->{manifest}) {
3355              !!!cp ('t24');              !!!cp ('t24');
3356              $self->{application_cache_selection}              $self->{application_cache_selection}
3357                  ->($token->{attributes}->{manifest}->{value});                  ->($token->{attributes}->{manifest}->{value});
3358              ## ISSUE: No relative reference resolution?              ## ISSUE: Spec is unclear on relative references.
3359                ## According to Hixie (#whatwg 2008-03-19), it should be
3360                ## resolved against the base URI of the document in HTML
3361                ## or xml:base of the element in XHTML.
3362            } else {            } else {
3363              !!!cp ('t25');              !!!cp ('t25');
3364              $self->{application_cache_selection}->(undef);              $self->{application_cache_selection}->(undef);
3365            }            }
3366    
3367              !!!nack ('t25c');
3368    
3369            !!!next-token;            !!!next-token;
3370            return; ## Go to the "before head" insertion mode.            return; ## Go to the "before head" insertion mode.
3371          } else {          } else {
# Line 2716  sub _tree_construction_root_element ($) Line 3382  sub _tree_construction_root_element ($)
3382          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
3383        }        }
3384    
3385      my $root_element; !!!create-element ($root_element, 'html');      my $root_element;
3386        !!!create-element ($root_element, $HTML_NS, 'html',, $token);
3387      $self->{document}->append_child ($root_element);      $self->{document}->append_child ($root_element);
3388      push @{$self->{open_elements}}, [$root_element, 'html'];      push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
3389    
3390      $self->{application_cache_selection}->(undef);      $self->{application_cache_selection}->(undef);
3391    
3392      ## NOTE: Reprocess the token.      ## NOTE: Reprocess the token.
3393        !!!ack-later;
3394      return; ## Go to the "before head" insertion mode.      return; ## Go to the "before head" insertion mode.
3395    
3396      ## ISSUE: There is an issue in the spec      ## ISSUE: There is an issue in the spec
# Line 2746  sub _reset_insertion_mode ($) { Line 3414  sub _reset_insertion_mode ($) {
3414        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
3415          $last = 1;          $last = 1;
3416          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
3417            if ($self->{inner_html_node}->[1] eq 'td' or            !!!cp ('t28');
3418                $self->{inner_html_node}->[1] eq 'th') {            $node = $self->{inner_html_node};
3419              !!!cp ('t27');          } else {
3420              #            die "_reset_insertion_mode: t27";
           } else {  
             !!!cp ('t28');  
             $node = $self->{inner_html_node};  
           }  
3421          }          }
3422        }        }
3423              
3424        ## Step 4..13        ## Step 4..14
3425        my $new_mode = {        my $new_mode;
3426          if ($node->[1] & FOREIGN_EL) {
3427            !!!cp ('t28.1');
3428            ## NOTE: Strictly spaking, the line below only applies to MathML and
3429            ## SVG elements.  Currently the HTML syntax supports only MathML and
3430            ## SVG elements as foreigners.
3431            $new_mode = $self->{insertion_mode} | IN_FOREIGN_CONTENT_IM;
3432            ## ISSUE: What is set as the secondary insertion mode?
3433          } elsif ($node->[1] & TABLE_CELL_EL) {
3434            if ($last) {
3435              !!!cp ('t28.2');
3436              #
3437            } else {
3438              !!!cp ('t28.3');
3439              $new_mode = IN_CELL_IM;
3440            }
3441          } else {
3442            !!!cp ('t28.4');
3443            $new_mode = {
3444                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
3445                        ## NOTE: |option| and |optgroup| do not set                        ## NOTE: |option| and |optgroup| do not set
3446                        ## insertion mode to "in select" by themselves.                        ## insertion mode to "in select" by themselves.
                       td => IN_CELL_IM,  
                       th => IN_CELL_IM,  
3447                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
3448                        tbody => IN_TABLE_BODY_IM,                        tbody => IN_TABLE_BODY_IM,
3449                        thead => IN_TABLE_BODY_IM,                        thead => IN_TABLE_BODY_IM,
# Line 2774  sub _reset_insertion_mode ($) { Line 3454  sub _reset_insertion_mode ($) {
3454                        head => IN_BODY_IM, # not in head!                        head => IN_BODY_IM, # not in head!
3455                        body => IN_BODY_IM,                        body => IN_BODY_IM,
3456                        frameset => IN_FRAMESET_IM,                        frameset => IN_FRAMESET_IM,
3457                       }->{$node->[1]};                       }->{$node->[0]->manakai_local_name};
3458          }
3459        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
3460                
3461        ## Step 14        ## Step 15
3462        if ($node->[1] eq 'html') {        if ($node->[1] & HTML_EL) {
3463          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
3464            !!!cp ('t29');            !!!cp ('t29');
3465            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
# Line 2792  sub _reset_insertion_mode ($) { Line 3473  sub _reset_insertion_mode ($) {
3473          !!!cp ('t31');          !!!cp ('t31');
3474        }        }
3475                
3476        ## Step 15        ## Step 16
3477        $self->{insertion_mode} = IN_BODY_IM and return if $last;        $self->{insertion_mode} = IN_BODY_IM and return if $last;
3478                
3479        ## Step 16        ## Step 17
3480        $i--;        $i--;
3481        $node = $self->{open_elements}->[$i];        $node = $self->{open_elements}->[$i];
3482                
3483        ## Step 17        ## Step 18
3484        redo S3;        redo S3;
3485      } # S3      } # S3
3486    
# Line 2911  sub _tree_construction_main ($) { Line 3592  sub _tree_construction_main ($) {
3592      ## Step 1      ## Step 1
3593      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
3594      my $el;      my $el;
3595      !!!create-element ($el, $start_tag_name, $token->{attributes});      !!!create-element ($el, $HTML_NS, $start_tag_name, $token->{attributes}, $token);
3596    
3597      ## Step 2      ## Step 2
3598      $insert->($el);      $insert->($el);
# Line 2922  sub _tree_construction_main ($) { Line 3603  sub _tree_construction_main ($) {
3603    
3604      ## Step 4      ## Step 4
3605      my $text = '';      my $text = '';
3606        !!!nack ('t40.1');
3607      !!!next-token;      !!!next-token;
3608      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
3609        !!!cp ('t40');        !!!cp ('t40');
# Line 2948  sub _tree_construction_main ($) { Line 3630  sub _tree_construction_main ($) {
3630        ## NOTE: An end-of-file token.        ## NOTE: An end-of-file token.
3631        if ($content_model_flag == CDATA_CONTENT_MODEL) {        if ($content_model_flag == CDATA_CONTENT_MODEL) {
3632          !!!cp ('t43');          !!!cp ('t43');
3633          !!!parse-error (type => 'in CDATA:#'.$token->{type});          !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3634        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
3635          !!!cp ('t44');          !!!cp ('t44');
3636          !!!parse-error (type => 'in RCDATA:#'.$token->{type});          !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
3637        } else {        } else {
3638          die "$0: $content_model_flag in parse_rcdata";          die "$0: $content_model_flag in parse_rcdata";
3639        }        }
# Line 2961  sub _tree_construction_main ($) { Line 3643  sub _tree_construction_main ($) {
3643    
3644    my $script_start_tag = sub () {    my $script_start_tag = sub () {
3645      my $script_el;      my $script_el;
3646      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
3647      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
3648    
3649      $self->{content_model} = CDATA_CONTENT_MODEL;      $self->{content_model} = CDATA_CONTENT_MODEL;
3650      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
3651            
3652      my $text = '';      my $text = '';
3653        !!!nack ('t45.1');
3654      !!!next-token;      !!!next-token;
3655      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
3656        !!!cp ('t45');        !!!cp ('t45');
# Line 2987  sub _tree_construction_main ($) { Line 3670  sub _tree_construction_main ($) {
3670        ## Ignore the token        ## Ignore the token
3671      } else {      } else {
3672        !!!cp ('t48');        !!!cp ('t48');
3673        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3674        ## ISSUE: And ignore?        ## ISSUE: And ignore?
3675        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3676      }      }
# Line 3010  sub _tree_construction_main ($) { Line 3693  sub _tree_construction_main ($) {
3693      !!!next-token;      !!!next-token;
3694    }; # $script_start_tag    }; # $script_start_tag
3695    
3696      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
3697      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
3698      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3699    
3700    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3701      my $tag_name = shift;      my $end_tag_token = shift;
3702        my $tag_name = $end_tag_token->{tag_name};
3703    
3704        ## NOTE: The adoption agency algorithm (AAA).
3705    
3706      FET: {      FET: {
3707        ## Step 1        ## Step 1
3708        my $formatting_element;        my $formatting_element;
3709        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
3710        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3711          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[0] eq '#marker') {
3712              !!!cp ('t52');
3713              last AFE;
3714            } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
3715                         eq $tag_name) {
3716            !!!cp ('t51');            !!!cp ('t51');
3717            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
3718            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
3719            last AFE;            last AFE;
         } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {  
           !!!cp ('t52');  
           last AFE;  
3720          }          }
3721        } # AFE        } # AFE
3722        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3723          !!!cp ('t53');          !!!cp ('t53');
3724          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!parse-error (type => 'unmatched end tag:'.$tag_name, token => $end_tag_token);
3725          ## Ignore the token          ## Ignore the token
3726          !!!next-token;          !!!next-token;
3727          return;          return;
# Line 3047  sub _tree_construction_main ($) { Line 3738  sub _tree_construction_main ($) {
3738              last INSCOPE;              last INSCOPE;
3739            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3740              !!!cp ('t55');              !!!cp ('t55');
3741              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3742                                token => $end_tag_token);
3743              ## Ignore the token              ## Ignore the token
3744              !!!next-token;              !!!next-token;
3745              return;              return;
3746            }            }
3747          } elsif ({          } elsif ($node->[1] & SCOPING_EL) {
                   table => 1, caption => 1, td => 1, th => 1,  
                   button => 1, marquee => 1, object => 1, html => 1,  
                  }->{$node->[1]}) {  
3748            !!!cp ('t56');            !!!cp ('t56');
3749            $in_scope = 0;            $in_scope = 0;
3750          }          }
3751        } # INSCOPE        } # INSCOPE
3752        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3753          !!!cp ('t57');          !!!cp ('t57');
3754          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3755                            token => $end_tag_token);
3756          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3757          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3758          return;          return;
3759        }        }
3760        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3761          !!!cp ('t58');          !!!cp ('t58');
3762          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!parse-error (type => 'not closed',
3763                            value => $self->{open_elements}->[-1]->[0]
3764                                ->manakai_local_name,
3765                            token => $end_tag_token);
3766        }        }
3767                
3768        ## Step 2        ## Step 2
# Line 3077  sub _tree_construction_main ($) { Line 3770  sub _tree_construction_main ($) {
3770        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
3771        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3772          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3773          if (not $formatting_category->{$node->[1]} and          if (not ($node->[1] & FORMATTING_EL) and
3774              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3775              ($special_category->{$node->[1]} or              ($node->[1] & SPECIAL_EL or
3776               $scoping_category->{$node->[1]})) {               $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
3777            !!!cp ('t59');            !!!cp ('t59');
3778            $furthest_block = $node;            $furthest_block = $node;
3779            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
# Line 3166  sub _tree_construction_main ($) { Line 3859  sub _tree_construction_main ($) {
3859        } # S7          } # S7  
3860                
3861        ## Step 8        ## Step 8
3862        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
3863            my $foster_parent_element;
3864            my $next_sibling;
3865            OE: for (reverse 0..$#{$self->{open_elements}}) {
3866              if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
3867                                 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3868                                 if (defined $parent and $parent->node_type == 1) {
3869                                   !!!cp ('t65.1');
3870                                   $foster_parent_element = $parent;
3871                                   $next_sibling = $self->{open_elements}->[$_]->[0];
3872                                 } else {
3873                                   !!!cp ('t65.2');
3874                                   $foster_parent_element
3875                                     = $self->{open_elements}->[$_ - 1]->[0];
3876                                 }
3877                                 last OE;
3878                               }
3879                             } # OE
3880                             $foster_parent_element = $self->{open_elements}->[0]->[0]
3881                               unless defined $foster_parent_element;
3882            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
3883            $open_tables->[-1]->[1] = 1; # tainted
3884          } else {
3885            !!!cp ('t65.3');
3886            $common_ancestor_node->[0]->append_child ($last_node->[0]);
3887          }
3888                
3889        ## Step 9        ## Step 9
3890        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 3212  sub _tree_construction_main ($) { Line 3930  sub _tree_construction_main ($) {
3930      } # FET      } # FET
3931    }; # $formatting_end_tag    }; # $formatting_end_tag
3932    
   ## NOTE: $open_tables->[-1]->[0] is the "current table".  
   ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.  
   my $open_tables = [[$self->{open_elements}->[0]->[0]]];  
   
3933    $insert = my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
3934      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
3935    }; # $insert_to_current    }; # $insert_to_current
3936    
3937    my $insert_to_foster = sub {    my $insert_to_foster = sub {
3938      my $child = shift;      my $child = shift;
3939      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]}) {  
3940        # MUST        # MUST
3941        my $foster_parent_element;        my $foster_parent_element;
3942        my $next_sibling;        my $next_sibling;
3943                           OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3944                             if ($self->{open_elements}->[$_]->[1] eq 'table') {          if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
3945                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3946                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3947                                 !!!cp ('t70');                                 !!!cp ('t70');
# Line 3254  sub _tree_construction_main ($) { Line 3966  sub _tree_construction_main ($) {
3966      }      }
3967    }; # $insert_to_foster    }; # $insert_to_foster
3968    
3969    B: {    B: while (1) {
3970      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
3971        !!!cp ('t73');        !!!cp ('t73');
3972        !!!parse-error (type => 'DOCTYPE in the middle');        !!!parse-error (type => 'DOCTYPE in the middle', token => $token);
3973        ## Ignore the token        ## Ignore the token
3974        ## Stay in the phase        ## Stay in the phase
3975        !!!next-token;        !!!next-token;
3976        redo B;        next B;
     } elsif ($token->{type} == END_OF_FILE_TOKEN) {  
       if ($self->{insertion_mode} & AFTER_HTML_IMS) {  
         !!!cp ('t74');  
         #  
       } else {  
         ## Generate implied end tags  
         while ({  
                 dd => 1, dt => 1, li => 1, p => 1,  
                }->{$self->{open_elements}->[-1]->[1]}) {  
           !!!cp ('t75');  
           pop @{$self->{open_elements}};  
         }  
           
         if (@{$self->{open_elements}} > 2 or  
             (@{$self->{open_elements}} == 2 and $self->{open_elements}->[1]->[1] ne 'body')) {  
           !!!cp ('t76');  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         } elsif (defined $self->{inner_html_node} and  
                  @{$self->{open_elements}} > 1 and  
                  $self->{open_elements}->[1]->[1] ne 'body') {  
 ## ISSUE: This case is never reached.  
           !!!cp ('t77');  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         } else {  
           !!!cp ('t78');  
         }  
   
         ## ISSUE: There is an issue in the spec.  
       }  
   
       ## Stop parsing  
       last B;  
3977      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
3978               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
3979        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3980          !!!cp ('t79');          !!!cp ('t79');
3981          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3982          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
3983        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3984          !!!cp ('t80');          !!!cp ('t80');
3985          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3986          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
3987        } else {        } else {
3988          !!!cp ('t81');          !!!cp ('t81');
3989        }        }
3990    
3991        !!!cp ('t82');        !!!cp ('t82');
3992        !!!parse-error (type => 'not first start tag');        !!!parse-error (type => 'not first start tag', token => $token);
3993        my $top_el = $self->{open_elements}->[0]->[0];        my $top_el = $self->{open_elements}->[0]->[0];
3994        for my $attr_name (keys %{$token->{attributes}}) {        for my $attr_name (keys %{$token->{attributes}}) {
3995          unless ($top_el->has_attribute_ns (undef, $attr_name)) {          unless ($top_el->has_attribute_ns (undef, $attr_name)) {
# Line 3319  sub _tree_construction_main ($) { Line 3999  sub _tree_construction_main ($) {
3999               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
4000          }          }
4001        }        }
4002          !!!nack ('t84.1');
4003        !!!next-token;        !!!next-token;
4004        redo B;        next B;
4005      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
4006        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
4007        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
# Line 3334  sub _tree_construction_main ($) { Line 4015  sub _tree_construction_main ($) {
4015          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
4016        }        }
4017        !!!next-token;        !!!next-token;
4018        redo B;        next B;
4019      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
4020          if ($token->{type} == CHARACTER_TOKEN) {
4021            !!!cp ('t87.1');
4022            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4023            !!!next-token;
4024            next B;
4025          } elsif ($token->{type} == START_TAG_TOKEN) {
4026            if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
4027                 $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
4028                not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
4029                ($token->{tag_name} eq 'svg' and
4030                 $self->{open_elements}->[-1]->[1] & MML_AXML_EL)) {
4031              ## NOTE: "using the rules for secondary insertion mode"then"continue"
4032              !!!cp ('t87.2');
4033              #
4034            } elsif ({
4035                      b => 1, big => 1, blockquote => 1, body => 1, br => 1,
4036                      center => 1, code => 1, dd => 1, div => 1, dl => 1, em => 1,
4037                      embed => 1, font => 1, h1 => 1, h2 => 1, h3 => 1, ## No h4!
4038                      h5 => 1, h6 => 1, head => 1, hr => 1, i => 1, img => 1,
4039                      li => 1, menu => 1, meta => 1, nobr => 1, p => 1, pre => 1,
4040                      ruby => 1, s => 1, small => 1, span => 1, strong => 1,
4041                      sub => 1, sup => 1, table => 1, tt => 1, u => 1, ul => 1,
4042                      var => 1,
4043                     }->{$token->{tag_name}}) {
4044              !!!cp ('t87.2');
4045              !!!parse-error (type => 'not closed',
4046                              value => $self->{open_elements}->[-1]->[0]
4047                                  ->manakai_local_name,
4048                              token => $token);
4049    
4050              pop @{$self->{open_elements}}
4051                  while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4052    
4053              $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4054              ## Reprocess.
4055              next B;
4056            } else {
4057              my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
4058              my $tag_name = $token->{tag_name};
4059              if ($nsuri eq $SVG_NS) {
4060                $tag_name = {
4061                   altglyph => 'altGlyph',
4062                   altglyphdef => 'altGlyphDef',
4063                   altglyphitem => 'altGlyphItem',
4064                   animatecolor => 'animateColor',
4065                   animatemotion => 'animateMotion',
4066                   animatetransform => 'animateTransform',
4067                   clippath => 'clipPath',
4068                   feblend => 'feBlend',
4069                   fecolormatrix => 'feColorMatrix',
4070                   fecomponenttransfer => 'feComponentTransfer',
4071                   fecomposite => 'feComposite',
4072                   feconvolvematrix => 'feConvolveMatrix',
4073                   fediffuselighting => 'feDiffuseLighting',
4074                   fedisplacementmap => 'feDisplacementMap',
4075                   fedistantlight => 'feDistantLight',
4076                   feflood => 'feFlood',
4077                   fefunca => 'feFuncA',
4078                   fefuncb => 'feFuncB',
4079                   fefuncg => 'feFuncG',
4080                   fefuncr => 'feFuncR',
4081                   fegaussianblur => 'feGaussianBlur',
4082                   feimage => 'feImage',
4083                   femerge => 'feMerge',
4084                   femergenode => 'feMergeNode',
4085                   femorphology => 'feMorphology',
4086                   feoffset => 'feOffset',
4087                   fepointlight => 'fePointLight',
4088                   fespecularlighting => 'feSpecularLighting',
4089                   fespotlight => 'feSpotLight',
4090                   fetile => 'feTile',
4091                   feturbulence => 'feTurbulence',
4092                   foreignobject => 'foreignObject',
4093                   glyphref => 'glyphRef',
4094                   lineargradient => 'linearGradient',
4095                   radialgradient => 'radialGradient',
4096                   #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
4097                   textpath => 'textPath',  
4098                }->{$tag_name} || $tag_name;
4099              }
4100    
4101              ## "adjust SVG attributes" (SVG only) - done in insert-element-f
4102    
4103              ## "adjust foreign attributes" - done in insert-element-f
4104    
4105              !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
4106    
4107              if ($self->{self_closing}) {
4108                pop @{$self->{open_elements}};
4109                !!!ack ('t87.3');
4110              } else {
4111                !!!cp ('t87.4');
4112              }
4113    
4114              !!!next-token;
4115              next B;
4116            }
4117          } elsif ($token->{type} == END_TAG_TOKEN) {
4118            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4119            !!!cp ('t87.5');
4120            #
4121          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4122            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4123            !!!cp ('t87.6');
4124            #
4125            ## TODO: ...
4126          } else {
4127            die "$0: $token->{type}: Unknown token type";        
4128          }
4129        }
4130    
4131        if ($self->{insertion_mode} & HEAD_IMS) {
4132        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4133          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4134            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
# Line 3345  sub _tree_construction_main ($) { Line 4138  sub _tree_construction_main ($) {
4138              !!!cp ('t88.1');              !!!cp ('t88.1');
4139              ## Ignore the token.              ## Ignore the token.
4140              !!!next-token;              !!!next-token;
4141              redo B;              next B;
4142            }            }
4143            unless (length $token->{data}) {            unless (length $token->{data}) {
4144              !!!cp ('t88');              !!!cp ('t88');
4145              !!!next-token;              !!!next-token;
4146              redo B;              next B;
4147            }            }
4148          }          }
4149    
4150          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4151            !!!cp ('t89');            !!!cp ('t89');
4152            ## As if <head>            ## As if <head>
4153            !!!create-element ($self->{head_element}, 'head');            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4154            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4155            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            push @{$self->{open_elements}},
4156                  [$self->{head_element}, $el_category->{head}];
4157    
4158            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4159            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
# Line 3369  sub _tree_construction_main ($) { Line 4163  sub _tree_construction_main ($) {
4163            !!!cp ('t90');            !!!cp ('t90');
4164            ## As if </noscript>            ## As if </noscript>
4165            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4166            !!!parse-error (type => 'in noscript:#character');            !!!parse-error (type => 'in noscript:#character', token => $token);
4167                        
4168            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4169            ## As if </head>            ## As if </head>
# Line 3385  sub _tree_construction_main ($) { Line 4179  sub _tree_construction_main ($) {
4179            !!!cp ('t92');            !!!cp ('t92');
4180          }          }
4181    
4182              ## "after head" insertion mode          ## "after head" insertion mode
4183              ## As if <body>          ## As if <body>
4184              !!!insert-element ('body');          !!!insert-element ('body',, $token);
4185              $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
4186              ## reprocess          ## reprocess
4187              redo B;          next B;
4188            } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4189              if ($token->{tag_name} eq 'head') {          if ($token->{tag_name} eq 'head') {
4190                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4191                  !!!cp ('t93');              !!!cp ('t93');
4192                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});              !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
4193                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              $self->{open_elements}->[-1]->[0]->append_child
4194                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];                  ($self->{head_element});
4195                  $self->{insertion_mode} = IN_HEAD_IM;              push @{$self->{open_elements}},
4196                  !!!next-token;                  [$self->{head_element}, $el_category->{head}];
4197                  redo B;              $self->{insertion_mode} = IN_HEAD_IM;
4198                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {              !!!nack ('t93.1');
4199                  !!!cp ('t94');              !!!next-token;
4200                  #              next B;
4201                } else {            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4202                  !!!cp ('t95');              !!!cp ('t93.2');
4203                  !!!parse-error (type => 'in head:head'); # or in head noscript              !!!parse-error (type => 'after head:head', token => $token); ## TODO: error type
4204                  ## Ignore the token              ## Ignore the token
4205                  !!!next-token;              !!!nack ('t93.3');
4206                  redo B;              !!!next-token;
4207                }              next B;
4208              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {            } else {
4209                !!!cp ('t96');              !!!cp ('t95');
4210                ## As if <head>              !!!parse-error (type => 'in head:head', token => $token); # or in head noscript
4211                !!!create-element ($self->{head_element}, 'head');              ## Ignore the token
4212                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              !!!nack ('t95.1');
4213                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];              !!!next-token;
4214                next B;
4215              }
4216            } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4217              !!!cp ('t96');
4218              ## As if <head>
4219              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4220              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4221              push @{$self->{open_elements}},
4222                  [$self->{head_element}, $el_category->{head}];
4223    
4224                $self->{insertion_mode} = IN_HEAD_IM;            $self->{insertion_mode} = IN_HEAD_IM;
4225                ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4226              } else {          } else {
4227                !!!cp ('t97');            !!!cp ('t97');
4228              }          }
4229    
4230              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
4231                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4232                  !!!cp ('t98');                  !!!cp ('t98');
4233                  ## As if </noscript>                  ## As if </noscript>
4234                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4235                  !!!parse-error (type => 'in noscript:base');                  !!!parse-error (type => 'in noscript:base', token => $token);
4236                                
4237                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4238                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
# Line 3440  sub _tree_construction_main ($) { Line 4243  sub _tree_construction_main ($) {
4243                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4244                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4245                  !!!cp ('t100');                  !!!cp ('t100');
4246                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4247                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4248                        [$self->{head_element}, $el_category->{head}];
4249                } else {                } else {
4250                  !!!cp ('t101');                  !!!cp ('t101');
4251                }                }
4252                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4253                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4254                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4255                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4256                  !!!nack ('t101.1');
4257                !!!next-token;                !!!next-token;
4258                redo B;                next B;
4259              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
4260                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4261                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4262                  !!!cp ('t102');                  !!!cp ('t102');
4263                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4264                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4265                        [$self->{head_element}, $el_category->{head}];
4266                } else {                } else {
4267                  !!!cp ('t103');                  !!!cp ('t103');
4268                }                }
4269                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4270                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4271                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4272                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4273                  !!!ack ('t103.1');
4274                !!!next-token;                !!!next-token;
4275                redo B;                next B;
4276              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
4277                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4278                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4279                  !!!cp ('t104');                  !!!cp ('t104');
4280                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4281                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4282                        [$self->{head_element}, $el_category->{head}];
4283                } else {                } else {
4284                  !!!cp ('t105');                  !!!cp ('t105');
4285                }                }
4286                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4287                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.
4288    
4289                unless ($self->{confident}) {                unless ($self->{confident}) {
4290                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) {
4291                    !!!cp ('t106');                    !!!cp ('t106');
4292                      ## NOTE: Whether the encoding is supported or not is handled
4293                      ## in the {change_encoding} callback.
4294                    $self->{change_encoding}                    $self->{change_encoding}
4295                        ->($self, $token->{attributes}->{charset}->{value});                        ->($self, $token->{attributes}->{charset}->{value},
4296                             $token);
4297                                        
4298                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4299                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
4300                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
4301                                                 ->{has_reference});                                                 ->{has_reference});
4302                  } elsif ($token->{attributes}->{content}) {                  } elsif ($token->{attributes}->{content}) {
                   ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
4303                    if ($token->{attributes}->{content}->{value}                    if ($token->{attributes}->{content}->{value}
4304                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4305                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
4306                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4307                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
4308                      !!!cp ('t107');                      !!!cp ('t107');
4309                        ## NOTE: Whether the encoding is supported or not is handled
4310                        ## in the {change_encoding} callback.
4311                      $self->{change_encoding}                      $self->{change_encoding}
4312                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
4313                               $token);
4314                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4315                          ->set_user_data (manakai_has_reference =>                          ->set_user_data (manakai_has_reference =>
4316                                               $token->{attributes}->{content}                                               $token->{attributes}->{content}
# Line 3525  sub _tree_construction_main ($) { Line 4338  sub _tree_construction_main ($) {
4338    
4339                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4340                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4341                  !!!ack ('t110.1');
4342                !!!next-token;                !!!next-token;
4343                redo B;                next B;
4344              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
4345                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4346                  !!!cp ('t111');                  !!!cp ('t111');
4347                  ## As if </noscript>                  ## As if </noscript>
4348                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4349                  !!!parse-error (type => 'in noscript:title');                  !!!parse-error (type => 'in noscript:title', token => $token);
4350                                
4351                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4352                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4353                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4354                  !!!cp ('t112');                  !!!cp ('t112');
4355                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4356                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4357                        [$self->{head_element}, $el_category->{head}];
4358                } else {                } else {
4359                  !!!cp ('t113');                  !!!cp ('t113');
4360                }                }
# Line 3550  sub _tree_construction_main ($) { Line 4365  sub _tree_construction_main ($) {
4365                $parse_rcdata->(RCDATA_CONTENT_MODEL);                $parse_rcdata->(RCDATA_CONTENT_MODEL);
4366                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4367                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4368                redo B;                next B;
4369              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style') {
4370                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
4371                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
4372                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4373                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4374                  !!!cp ('t114');                  !!!cp ('t114');
4375                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4376                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4377                        [$self->{head_element}, $el_category->{head}];
4378                } else {                } else {
4379                  !!!cp ('t115');                  !!!cp ('t115');
4380                }                }
4381                $parse_rcdata->(CDATA_CONTENT_MODEL);                $parse_rcdata->(CDATA_CONTENT_MODEL);
4382                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4383                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4384                redo B;                next B;
4385              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4386                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
4387                  !!!cp ('t116');                  !!!cp ('t116');
4388                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
4389                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4390                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
4391                    !!!nack ('t116.1');
4392                  !!!next-token;                  !!!next-token;
4393                  redo B;                  next B;
4394                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4395                  !!!cp ('t117');                  !!!cp ('t117');
4396                  !!!parse-error (type => 'in noscript:noscript');                  !!!parse-error (type => 'in noscript:noscript', token => $token);
4397                  ## Ignore the token                  ## Ignore the token
4398                    !!!nack ('t117.1');
4399                  !!!next-token;                  !!!next-token;
4400                  redo B;                  next B;
4401                } else {                } else {
4402                  !!!cp ('t118');                  !!!cp ('t118');
4403                  #                  #
# Line 3589  sub _tree_construction_main ($) { Line 4407  sub _tree_construction_main ($) {
4407                  !!!cp ('t119');                  !!!cp ('t119');
4408                  ## As if </noscript>                  ## As if </noscript>
4409                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4410                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:script', token => $token);
4411                                
4412                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4413                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4414                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4415                  !!!cp ('t120');                  !!!cp ('t120');
4416                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4417                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4418                        [$self->{head_element}, $el_category->{head}];
4419                } else {                } else {
4420                  !!!cp ('t121');                  !!!cp ('t121');
4421                }                }
# Line 3605  sub _tree_construction_main ($) { Line 4424  sub _tree_construction_main ($) {
4424                $script_start_tag->();                $script_start_tag->();
4425                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4426                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4427                redo B;                next B;
4428              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
4429                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
4430                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4431                  !!!cp ('t122');                  !!!cp ('t122');
4432                  ## As if </noscript>                  ## As if </noscript>
4433                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4434                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});                  !!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token);
4435                                    
4436                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4437                  ## As if </head>                  ## As if </head>
# Line 3629  sub _tree_construction_main ($) { Line 4448  sub _tree_construction_main ($) {
4448                }                }
4449    
4450                ## "after head" insertion mode                ## "after head" insertion mode
4451                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4452                if ($token->{tag_name} eq 'body') {                if ($token->{tag_name} eq 'body') {
4453                  !!!cp ('t126');                  !!!cp ('t126');
4454                  $self->{insertion_mode} = IN_BODY_IM;                  $self->{insertion_mode} = IN_BODY_IM;
# Line 3639  sub _tree_construction_main ($) { Line 4458  sub _tree_construction_main ($) {
4458                } else {                } else {
4459                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
4460                }                }
4461                  !!!nack ('t127.1');
4462                !!!next-token;                !!!next-token;
4463                redo B;                next B;
4464              } else {              } else {
4465                !!!cp ('t128');                !!!cp ('t128');
4466                #                #
# Line 3650  sub _tree_construction_main ($) { Line 4470  sub _tree_construction_main ($) {
4470                !!!cp ('t129');                !!!cp ('t129');
4471                ## As if </noscript>                ## As if </noscript>
4472                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4473                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
4474                                
4475                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4476                ## As if </head>                ## As if </head>
# Line 3669  sub _tree_construction_main ($) { Line 4489  sub _tree_construction_main ($) {
4489    
4490              ## "after head" insertion mode              ## "after head" insertion mode
4491              ## As if <body>              ## As if <body>
4492              !!!insert-element ('body');              !!!insert-element ('body',, $token);
4493              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4494              ## reprocess              ## reprocess
4495              redo B;              !!!ack-later;
4496                next B;
4497            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
4498              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
4499                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4500                  !!!cp ('t132');                  !!!cp ('t132');
4501                  ## As if <head>                  ## As if <head>
4502                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4503                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4504                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4505                        [$self->{head_element}, $el_category->{head}];
4506    
4507                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4508                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4509                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4510                  !!!next-token;                  !!!next-token;
4511                  redo B;                  next B;
4512                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4513                  !!!cp ('t133');                  !!!cp ('t133');
4514                  ## As if </noscript>                  ## As if </noscript>
4515                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4516                  !!!parse-error (type => 'in noscript:/head');                  !!!parse-error (type => 'in noscript:/head', token => $token);
4517                                    
4518                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4519                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4520                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4521                  !!!next-token;                  !!!next-token;
4522                  redo B;                  next B;
4523                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4524                  !!!cp ('t134');                  !!!cp ('t134');
4525                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4526                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4527                  !!!next-token;                  !!!next-token;
4528                  redo B;                  next B;
4529                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4530                    !!!cp ('t134.1');
4531                    !!!parse-error (type => 'unmatched end tag:head', token => $token);
4532                    ## Ignore the token
4533                    !!!next-token;
4534                    next B;
4535                } else {                } else {
4536                  !!!cp ('t135');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 #  
4537                }                }
4538              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4539                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
# Line 3714  sub _tree_construction_main ($) { Line 4541  sub _tree_construction_main ($) {
4541                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4542                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4543                  !!!next-token;                  !!!next-token;
4544                  redo B;                  next B;
4545                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM or
4546                           $self->{insertion_mode} == AFTER_HEAD_IM) {
4547                  !!!cp ('t137');                  !!!cp ('t137');
4548                  !!!parse-error (type => 'unmatched end tag:noscript');                  !!!parse-error (type => 'unmatched end tag:noscript', token => $token);
4549                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
4550                  !!!next-token;                  !!!next-token;
4551                  redo B;                  next B;
4552                } else {                } else {
4553                  !!!cp ('t138');                  !!!cp ('t138');
4554                  #                  #
# Line 3728  sub _tree_construction_main ($) { Line 4556  sub _tree_construction_main ($) {
4556              } elsif ({              } elsif ({
4557                        body => 1, html => 1,                        body => 1, html => 1,
4558                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4559                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM or
4560                  !!!cp ('t139');                    $self->{insertion_mode} == IN_HEAD_IM or
4561                  ## As if <head>                    $self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
                 !!!create-element ($self->{head_element}, 'head');  
                 $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) {  
4562                  !!!cp ('t140');                  !!!cp ('t140');
4563                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4564                  ## Ignore the token                  ## Ignore the token
4565                  !!!next-token;                  !!!next-token;
4566                  redo B;                  next B;
4567                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4568                    !!!cp ('t140.1');
4569                    !!!parse-error (type => 'unmatched end tag:' . $token->{tag_name}, token => $token);
4570                    ## Ignore the token
4571                    !!!next-token;
4572                    next B;
4573                } else {                } else {
4574                  !!!cp ('t141');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
4575                }                }
4576                              } elsif ($token->{tag_name} eq 'p') {
4577                #                !!!cp ('t142');
4578              } elsif ({                !!!parse-error (type => 'unmatched end tag:p', token => $token);
4579                        p => 1, br => 1,                ## Ignore the token
4580                       }->{$token->{tag_name}}) {                !!!next-token;
4581                  next B;
4582                } elsif ($token->{tag_name} eq 'br') {
4583                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4584                  !!!cp ('t142');                  !!!cp ('t142.2');
4585                  ## As if <head>                  ## (before head) as if <head>, (in head) as if </head>
4586                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4587                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4588                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  $self->{insertion_mode} = AFTER_HEAD_IM;
4589      
4590                    ## Reprocess in the "after head" insertion mode...
4591                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4592                    !!!cp ('t143.2');
4593                    ## As if </head>
4594                    pop @{$self->{open_elements}};
4595                    $self->{insertion_mode} = AFTER_HEAD_IM;
4596      
4597                    ## Reprocess in the "after head" insertion mode...
4598                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4599                    !!!cp ('t143.3');
4600                    ## ISSUE: Two parse errors for <head><noscript></br>
4601                    !!!parse-error (type => 'unmatched end tag:br', token => $token);
4602                    ## As if </noscript>
4603                    pop @{$self->{open_elements}};
4604                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4605    
4606                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4607                } else {                  ## As if </head>
4608                  !!!cp ('t143');                  pop @{$self->{open_elements}};
4609                }                  $self->{insertion_mode} = AFTER_HEAD_IM;
4610    
4611                #                  ## Reprocess in the "after head" insertion mode...
4612              } else {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4613                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                  !!!cp ('t143.4');
                 !!!cp ('t144');  
4614                  #                  #
4615                } else {                } else {
4616                  !!!cp ('t145');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
4617                }                }
4618    
4619                  ## ISSUE: does not agree with IE7 - it doesn't ignore </br>.
4620                  !!!parse-error (type => 'unmatched end tag:br', token => $token);
4621                  ## Ignore the token
4622                  !!!next-token;
4623                  next B;
4624                } else {
4625                  !!!cp ('t145');
4626                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4627                  ## Ignore the token
4628                  !!!next-token;
4629                  next B;
4630              }              }
4631    
4632              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4633                !!!cp ('t146');                !!!cp ('t146');
4634                ## As if </noscript>                ## As if </noscript>
4635                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4636                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
4637                                
4638                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4639                ## As if </head>                ## As if </head>
# Line 3798  sub _tree_construction_main ($) { Line 4649  sub _tree_construction_main ($) {
4649              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4650  ## ISSUE: This case cannot be reached?  ## ISSUE: This case cannot be reached?
4651                !!!cp ('t148');                !!!cp ('t148');
4652                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4653                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
4654                !!!next-token;                !!!next-token;
4655                redo B;                next B;
4656              } else {              } else {
4657                !!!cp ('t149');                !!!cp ('t149');
4658              }              }
4659    
4660              ## "after head" insertion mode              ## "after head" insertion mode
4661              ## As if <body>              ## As if <body>
4662              !!!insert-element ('body');              !!!insert-element ('body',, $token);
4663              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4664              ## reprocess              ## reprocess
4665              redo B;              next B;
4666            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4667              die "$0: $token->{type}: Unknown token type";          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4668            }            !!!cp ('t149.1');
4669    
4670              ## NOTE: As if <head>
4671              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4672              $self->{open_elements}->[-1]->[0]->append_child
4673                  ($self->{head_element});
4674              #push @{$self->{open_elements}},
4675              #    [$self->{head_element}, $el_category->{head}];
4676              #$self->{insertion_mode} = IN_HEAD_IM;
4677              ## NOTE: Reprocess.
4678    
4679              ## NOTE: As if </head>
4680              #pop @{$self->{open_elements}};
4681              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4682              ## NOTE: Reprocess.
4683              
4684              #
4685            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4686              !!!cp ('t149.2');
4687    
4688              ## NOTE: As if </head>
4689              pop @{$self->{open_elements}};
4690              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4691              ## NOTE: Reprocess.
4692    
4693              #
4694            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4695              !!!cp ('t149.3');
4696    
4697              !!!parse-error (type => 'in noscript:#eof', token => $token);
4698    
4699              ## As if </noscript>
4700              pop @{$self->{open_elements}};
4701              #$self->{insertion_mode} = IN_HEAD_IM;
4702              ## NOTE: Reprocess.
4703    
4704              ## NOTE: As if </head>
4705              pop @{$self->{open_elements}};
4706              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4707              ## NOTE: Reprocess.
4708    
4709              #
4710            } else {
4711              !!!cp ('t149.4');
4712              #
4713            }
4714    
4715            ## NOTE: As if <body>
4716            !!!insert-element ('body',, $token);
4717            $self->{insertion_mode} = IN_BODY_IM;
4718            ## NOTE: Reprocess.
4719            next B;
4720          } else {
4721            die "$0: $token->{type}: Unknown token type";
4722          }
4723    
4724            ## ISSUE: An issue in the spec.            ## ISSUE: An issue in the spec.
4725      } elsif ($self->{insertion_mode} & BODY_IMS) {      } elsif ($self->{insertion_mode} & BODY_IMS) {
# Line 3826  sub _tree_construction_main ($) { Line 4731  sub _tree_construction_main ($) {
4731              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4732    
4733              !!!next-token;              !!!next-token;
4734              redo B;              next B;
4735            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
4736              if ({              if ({
4737                   caption => 1, col => 1, colgroup => 1, tbody => 1,                   caption => 1, col => 1, colgroup => 1, tbody => 1,
# Line 3834  sub _tree_construction_main ($) { Line 4739  sub _tree_construction_main ($) {
4739                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
4740                if ($self->{insertion_mode} == IN_CELL_IM) {                if ($self->{insertion_mode} == IN_CELL_IM) {
4741                  ## have an element in table scope                  ## have an element in table scope
4742                  my $tn;                  for (reverse 0..$#{$self->{open_elements}}) {
                 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
4743                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4744                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] & TABLE_CELL_EL) {
4745                      !!!cp ('t151');                      !!!cp ('t151');
4746                      $tn = $node->[1];  
4747                      last INSCOPE;                      ## Close the cell
4748                    } elsif ({                      !!!back-token; # <x>
4749                              table => 1, html => 1,                      $token = {type => END_TAG_TOKEN,
4750                             }->{$node->[1]}) {                                tag_name => $node->[0]->manakai_local_name,
4751                                  line => $token->{line},
4752                                  column => $token->{column}};
4753                        next B;
4754                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4755                      !!!cp ('t152');                      !!!cp ('t152');
4756                      last INSCOPE;                      ## ISSUE: This case can never be reached, maybe.
4757                        last;
4758                    }                    }
4759                  } # INSCOPE                  }
4760                    unless (defined $tn) {  
4761                      !!!cp ('t153');                  !!!cp ('t153');
4762  ## TODO: This error type is wrong.                  !!!parse-error (type => 'start tag not allowed',
4763                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      value => $token->{tag_name}, token => $token);
4764                      ## Ignore the token                  ## Ignore the token
4765                      !!!next-token;                  !!!nack ('t153.1');
4766                      redo B;                  !!!next-token;
4767                    }                  next B;
                   
                 !!!cp ('t154');  
                 ## Close the cell  
                 !!!back-token; # <?>  
                 $token = {type => END_TAG_TOKEN, tag_name => $tn};  
                 redo B;  
4768                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4769                  !!!parse-error (type => 'not closed:caption');                  !!!parse-error (type => 'not closed:caption', token => $token);
4770                                    
4771                  ## As if </caption>                  ## NOTE: As if </caption>.
4772                  ## have a table element in table scope                  ## have a table element in table scope
4773                  my $i;                  my $i;
4774                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4775                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4776                    if ($node->[1] eq 'caption') {                      my $node = $self->{open_elements}->[$_];
4777                      !!!cp ('t155');                      if ($node->[1] & CAPTION_EL) {
4778                      $i = $_;                        !!!cp ('t155');
4779                      last INSCOPE;                        $i = $_;
4780                    } elsif ({                        last INSCOPE;
4781                              table => 1, html => 1,                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4782                             }->{$node->[1]}) {                        !!!cp ('t156');
4783                      !!!cp ('t156');                        last;
4784                      last INSCOPE;                      }
4785                    }                    }
4786    
4787                      !!!cp ('t157');
4788                      !!!parse-error (type => 'start tag not allowed',
4789                                      value => $token->{tag_name}, token => $token);
4790                      ## Ignore the token
4791                      !!!nack ('t157.1');
4792                      !!!next-token;
4793                      next B;
4794                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!cp ('t157');  
 ## TODO: this type is wrong.  
                     !!!parse-error (type => 'unmatched end tag:caption');  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4795                                    
4796                  ## generate implied end tags                  ## generate implied end tags
4797                  while ({                  while ($self->{open_elements}->[-1]->[1]
4798                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
4799                    !!!cp ('t158');                    !!!cp ('t158');
4800                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4801                  }                  }
4802    
4803                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
4804                    !!!cp ('t159');                    !!!cp ('t159');
4805                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
4806                                      value => $self->{open_elements}->[-1]->[0]
4807                                          ->manakai_local_name,
4808                                      token => $token);
4809                  } else {                  } else {
4810                    !!!cp ('t160');                    !!!cp ('t160');
4811                  }                  }
# Line 3912  sub _tree_construction_main ($) { Line 4817  sub _tree_construction_main ($) {
4817                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4818                                    
4819                  ## reprocess                  ## reprocess
4820                  redo B;                  !!!ack-later;
4821                    next B;
4822                } else {                } else {
4823                  !!!cp ('t161');                  !!!cp ('t161');
4824                  #                  #
# Line 3928  sub _tree_construction_main ($) { Line 4834  sub _tree_construction_main ($) {
4834                  my $i;                  my $i;
4835                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4836                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4837                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
4838                      !!!cp ('t163');                      !!!cp ('t163');
4839                      $i = $_;                      $i = $_;
4840                      last INSCOPE;                      last INSCOPE;
4841                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
4842                      !!!cp ('t164');                      !!!cp ('t164');
4843                      last INSCOPE;                      last INSCOPE;
4844                    }                    }
4845                  } # INSCOPE                  } # INSCOPE
4846                    unless (defined $i) {                    unless (defined $i) {
4847                      !!!cp ('t165');                      !!!cp ('t165');
4848                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4849                      ## Ignore the token                      ## Ignore the token
4850                      !!!next-token;                      !!!next-token;
4851                      redo B;                      next B;
4852                    }                    }
4853                                    
4854                  ## generate implied end tags                  ## generate implied end tags
4855                  while ({                  while ($self->{open_elements}->[-1]->[1]
4856                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
4857                    !!!cp ('t166');                    !!!cp ('t166');
4858                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4859                  }                  }
4860    
4861                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[0]->manakai_local_name
4862                            ne $token->{tag_name}) {
4863                    !!!cp ('t167');                    !!!cp ('t167');
4864                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
4865                                      value => $self->{open_elements}->[-1]->[0]
4866                                          ->manakai_local_name,
4867                                      token => $token);
4868                  } else {                  } else {
4869                    !!!cp ('t168');                    !!!cp ('t168');
4870                  }                  }
# Line 3969  sub _tree_construction_main ($) { Line 4876  sub _tree_construction_main ($) {
4876                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
4877                                    
4878                  !!!next-token;                  !!!next-token;
4879                  redo B;                  next B;
4880                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4881                  !!!cp ('t169');                  !!!cp ('t169');
4882                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4883                  ## Ignore the token                  ## Ignore the token
4884                  !!!next-token;                  !!!next-token;
4885                  redo B;                  next B;
4886                } else {                } else {
4887                  !!!cp ('t170');                  !!!cp ('t170');
4888                  #                  #
# Line 3984  sub _tree_construction_main ($) { Line 4891  sub _tree_construction_main ($) {
4891                if ($self->{insertion_mode} == IN_CAPTION_IM) {                if ($self->{insertion_mode} == IN_CAPTION_IM) {
4892                  ## have a table element in table scope                  ## have a table element in table scope
4893                  my $i;                  my $i;
4894                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4895                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4896                    if ($node->[1] eq $token->{tag_name}) {                      my $node = $self->{open_elements}->[$_];
4897                      !!!cp ('t171');                      if ($node->[1] & CAPTION_EL) {
4898                      $i = $_;                        !!!cp ('t171');
4899                      last INSCOPE;                        $i = $_;
4900                    } elsif ({                        last INSCOPE;
4901                              table => 1, html => 1,                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4902                             }->{$node->[1]}) {                        !!!cp ('t172');
4903                      !!!cp ('t172');                        last;
4904                      last INSCOPE;                      }
4905                    }                    }
4906    
4907                      !!!cp ('t173');
4908                      !!!parse-error (type => 'unmatched end tag',
4909                                      value => $token->{tag_name}, token => $token);
4910                      ## Ignore the token
4911                      !!!next-token;
4912                      next B;
4913                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!cp ('t173');  
                     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4914                                    
4915                  ## generate implied end tags                  ## generate implied end tags
4916                  while ({                  while ($self->{open_elements}->[-1]->[1]
4917                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
4918                    !!!cp ('t174');                    !!!cp ('t174');
4919                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4920                  }                  }
4921                                    
4922                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
4923                    !!!cp ('t175');                    !!!cp ('t175');
4924                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
4925                                      value => $self->{open_elements}->[-1]->[0]
4926                                          ->manakai_local_name,
4927                                      token => $token);
4928                  } else {                  } else {
4929                    !!!cp ('t176');                    !!!cp ('t176');
4930                  }                  }
# Line 4027  sub _tree_construction_main ($) { Line 4936  sub _tree_construction_main ($) {
4936                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4937                                    
4938                  !!!next-token;                  !!!next-token;
4939                  redo B;                  next B;
4940                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4941                  !!!cp ('t177');                  !!!cp ('t177');
4942                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4943                  ## Ignore the token                  ## Ignore the token
4944                  !!!next-token;                  !!!next-token;
4945                  redo B;                  next B;
4946                } else {                } else {
4947                  !!!cp ('t178');                  !!!cp ('t178');
4948                  #                  #
# Line 4046  sub _tree_construction_main ($) { Line 4955  sub _tree_construction_main ($) {
4955                ## have an element in table scope                ## have an element in table scope
4956                my $i;                my $i;
4957                my $tn;                my $tn;
4958                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: {
4959                  my $node = $self->{open_elements}->[$_];                  for (reverse 0..$#{$self->{open_elements}}) {
4960                  if ($node->[1] eq $token->{tag_name}) {                    my $node = $self->{open_elements}->[$_];
4961                    !!!cp ('t179');                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
4962                    $i = $_;                      !!!cp ('t179');
4963                    last INSCOPE;                      $i = $_;
4964                  } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {  
4965                    !!!cp ('t180');                      ## Close the cell
4966                    $tn = $node->[1];                      !!!back-token; # </x>
4967                    ## NOTE: There is exactly one |td| or |th| element                      $token = {type => END_TAG_TOKEN, tag_name => $tn,
4968                    ## in scope in the stack of open elements by definition.                                line => $token->{line},
4969                  } elsif ({                                column => $token->{column}};
4970                            table => 1, html => 1,                      next B;
4971                           }->{$node->[1]}) {                    } elsif ($node->[1] & TABLE_CELL_EL) {
4972                    !!!cp ('t181');                      !!!cp ('t180');
4973                    last INSCOPE;                      $tn = $node->[0]->manakai_local_name;
4974                        ## NOTE: There is exactly one |td| or |th| element
4975                        ## in scope in the stack of open elements by definition.
4976                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4977                        ## ISSUE: Can this be reached?
4978                        !!!cp ('t181');
4979                        last;
4980                      }
4981                  }                  }
4982                } # INSCOPE  
               unless (defined $i) {  
4983                  !!!cp ('t182');                  !!!cp ('t182');
4984                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag',
4985                        value => $token->{tag_name}, token => $token);
4986                  ## Ignore the token                  ## Ignore the token
4987                  !!!next-token;                  !!!next-token;
4988                  redo B;                  next B;
4989                } else {                } # INSCOPE
                 !!!cp ('t183');  
               }  
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => END_TAG_TOKEN, tag_name => $tn};  
               redo B;  
4990              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
4991                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4992                !!!parse-error (type => 'not closed:caption');                !!!parse-error (type => 'not closed:caption', token => $token);
4993    
4994                ## As if </caption>                ## As if </caption>
4995                ## have a table element in table scope                ## have a table element in table scope
4996                my $i;                my $i;
4997                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4998                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4999                  if ($node->[1] eq 'caption') {                  if ($node->[1] & CAPTION_EL) {
5000                    !!!cp ('t184');                    !!!cp ('t184');
5001                    $i = $_;                    $i = $_;
5002                    last INSCOPE;                    last INSCOPE;
5003                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5004                    !!!cp ('t185');                    !!!cp ('t185');
5005                    last INSCOPE;                    last INSCOPE;
5006                  }                  }
5007                } # INSCOPE                } # INSCOPE
5008                unless (defined $i) {                unless (defined $i) {
5009                  !!!cp ('t186');                  !!!cp ('t186');
5010                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!parse-error (type => 'unmatched end tag:caption', token => $token);
5011                  ## Ignore the token                  ## Ignore the token
5012                  !!!next-token;                  !!!next-token;
5013                  redo B;                  next B;
5014                }                }
5015                                
5016                ## generate implied end tags                ## generate implied end tags
5017                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5018                  !!!cp ('t187');                  !!!cp ('t187');
5019                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5020                }                }
5021    
5022                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5023                  !!!cp ('t188');                  !!!cp ('t188');
5024                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed',
5025                                    value => $self->{open_elements}->[-1]->[0]
5026                                        ->manakai_local_name,
5027                                    token => $token);
5028                } else {                } else {
5029                  !!!cp ('t189');                  !!!cp ('t189');
5030                }                }
# Line 4128  sub _tree_construction_main ($) { Line 5036  sub _tree_construction_main ($) {
5036                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5037    
5038                ## reprocess                ## reprocess
5039                redo B;                next B;
5040              } elsif ({              } elsif ({
5041                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
5042                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5043                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
5044                  !!!cp ('t190');                  !!!cp ('t190');
5045                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5046                  ## Ignore the token                  ## Ignore the token
5047                  !!!next-token;                  !!!next-token;
5048                  redo B;                  next B;
5049                } else {                } else {
5050                  !!!cp ('t191');                  !!!cp ('t191');
5051                  #                  #
# Line 4148  sub _tree_construction_main ($) { Line 5056  sub _tree_construction_main ($) {
5056                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
5057                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5058                !!!cp ('t192');                !!!cp ('t192');
5059                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5060                ## Ignore the token                ## Ignore the token
5061                !!!next-token;                !!!next-token;
5062                redo B;                next B;
5063              } else {              } else {
5064                !!!cp ('t193');                !!!cp ('t193');
5065                #                #
5066              }              }
5067          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5068            for my $entry (@{$self->{open_elements}}) {
5069              unless ($entry->[1] & ALL_END_TAG_OPTIONAL_EL) {
5070                !!!cp ('t75');
5071                !!!parse-error (type => 'in body:#eof', token => $token);
5072                last;
5073              }
5074            }
5075    
5076            ## Stop parsing.
5077            last B;
5078        } else {        } else {
5079          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5080        }        }
# Line 4171  sub _tree_construction_main ($) { Line 5090  sub _tree_construction_main ($) {
5090            unless (length $token->{data}) {            unless (length $token->{data}) {
5091              !!!cp ('t194');              !!!cp ('t194');
5092              !!!next-token;              !!!next-token;
5093              redo B;              next B;
5094            } else {            } else {
5095              !!!cp ('t195');              !!!cp ('t195');
5096            }            }
5097          }          }
5098    
5099              !!!parse-error (type => 'in table:#character');              !!!parse-error (type => 'in table:#character', token => $token);
5100    
5101              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
5102              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
# Line 4185  sub _tree_construction_main ($) { Line 5104  sub _tree_construction_main ($) {
5104              ## result in a new Text node.              ## result in a new Text node.
5105              $reconstruct_active_formatting_elements->($insert_to_foster);              $reconstruct_active_formatting_elements->($insert_to_foster);
5106                            
5107              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]}) {  
5108                # MUST                # MUST
5109                my $foster_parent_element;                my $foster_parent_element;
5110                my $next_sibling;                my $next_sibling;
5111                my $prev_sibling;                my $prev_sibling;
5112                OE: for (reverse 0..$#{$self->{open_elements}}) {                OE: for (reverse 0..$#{$self->{open_elements}}) {
5113                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
5114                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
5115                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
5116                      !!!cp ('t196');                      !!!cp ('t196');
# Line 4229  sub _tree_construction_main ($) { Line 5145  sub _tree_construction_main ($) {
5145          }          }
5146                            
5147          !!!next-token;          !!!next-token;
5148          redo B;          next B;
5149        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5150              if ({              if ({
5151                   tr => ($self->{insertion_mode} != IN_ROW_IM),                   tr => ($self->{insertion_mode} != IN_ROW_IM),
# Line 4237  sub _tree_construction_main ($) { Line 5153  sub _tree_construction_main ($) {
5153                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
5154                if ($self->{insertion_mode} == IN_TABLE_IM) {                if ($self->{insertion_mode} == IN_TABLE_IM) {
5155                  ## Clear back to table context                  ## Clear back to table context
5156                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5157                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5158                    !!!cp ('t201');                    !!!cp ('t201');
5159                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5160                  }                  }
5161                                    
5162                  !!!insert-element ('tbody');                  !!!insert-element ('tbody',, $token);
5163                  $self->{insertion_mode} = IN_TABLE_BODY_IM;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
5164                  ## reprocess in the "in table body" insertion mode...                  ## reprocess in the "in table body" insertion mode...
5165                }                }
# Line 4251  sub _tree_construction_main ($) { Line 5167  sub _tree_construction_main ($) {
5167                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
5168                  unless ($token->{tag_name} eq 'tr') {                  unless ($token->{tag_name} eq 'tr') {
5169                    !!!cp ('t202');                    !!!cp ('t202');
5170                    !!!parse-error (type => 'missing start tag:tr');                    !!!parse-error (type => 'missing start tag:tr', token => $token);
5171                  }                  }
5172                                    
5173                  ## Clear back to table body context                  ## Clear back to table body context
5174                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5175                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5176                    !!!cp ('t203');                    !!!cp ('t203');
5177                    ## ISSUE: Can this case be reached?                    ## ISSUE: Can this case be reached?
5178                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4266  sub _tree_construction_main ($) { Line 5181  sub _tree_construction_main ($) {
5181                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5182                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5183                    !!!cp ('t204');                    !!!cp ('t204');
5184                    !!!insert-element ($token->{tag_name}, $token->{attributes});                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5185                      !!!nack ('t204');
5186                    !!!next-token;                    !!!next-token;
5187                    redo B;                    next B;
5188                  } else {                  } else {
5189                    !!!cp ('t205');                    !!!cp ('t205');
5190                    !!!insert-element ('tr');                    !!!insert-element ('tr',, $token);
5191                    ## reprocess in the "in row" insertion mode                    ## reprocess in the "in row" insertion mode
5192                  }                  }
5193                } else {                } else {
# Line 4279  sub _tree_construction_main ($) { Line 5195  sub _tree_construction_main ($) {
5195                }                }
5196    
5197                ## Clear back to table row context                ## Clear back to table row context
5198                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5199                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5200                  !!!cp ('t207');                  !!!cp ('t207');
5201                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5202                }                }
5203                                
5204                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5205                $self->{insertion_mode} = IN_CELL_IM;                $self->{insertion_mode} = IN_CELL_IM;
5206    
5207                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
5208                                
5209                  !!!nack ('t207.1');
5210                !!!next-token;                !!!next-token;
5211                redo B;                next B;
5212              } elsif ({              } elsif ({
5213                        caption => 1, col => 1, colgroup => 1,                        caption => 1, col => 1, colgroup => 1,
5214                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
# Line 4304  sub _tree_construction_main ($) { Line 5220  sub _tree_construction_main ($) {
5220                  my $i;                  my $i;
5221                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5222                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5223                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5224                      !!!cp ('t208');                      !!!cp ('t208');
5225                      $i = $_;                      $i = $_;
5226                      last INSCOPE;                      last INSCOPE;
5227                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             html => 1,  
   
                             ## NOTE: This element does not appear here, maybe.  
                             table => 1,  
                            }->{$node->[1]}) {  
5228                      !!!cp ('t209');                      !!!cp ('t209');
5229                      last INSCOPE;                      last INSCOPE;
5230                    }                    }
5231                  } # INSCOPE                  } # INSCOPE
5232                  unless (defined $i) {                  unless (defined $i) {
5233                   !!!cp ('t210');                    !!!cp ('t210');
5234  ## TODO: This type is wrong.  ## TODO: This type is wrong.
5235                   !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token);
5236                    ## Ignore the token                    ## Ignore the token
5237                      !!!nack ('t210.1');
5238                    !!!next-token;                    !!!next-token;
5239                    redo B;                    next B;
5240                  }                  }
5241                                    
5242                  ## Clear back to table row context                  ## Clear back to table row context
5243                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5244                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5245                    !!!cp ('t211');                    !!!cp ('t211');
5246                    ## ISSUE: Can this case be reached?                    ## ISSUE: Can this case be reached?
5247                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4341  sub _tree_construction_main ($) { Line 5252  sub _tree_construction_main ($) {
5252                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5253                    !!!cp ('t212');                    !!!cp ('t212');
5254                    ## reprocess                    ## reprocess
5255                    redo B;                    !!!ack-later;
5256                      next B;
5257                  } else {                  } else {
5258                    !!!cp ('t213');                    !!!cp ('t213');
5259                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
# Line 4353  sub _tree_construction_main ($) { Line 5265  sub _tree_construction_main ($) {
5265                  my $i;                  my $i;
5266                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5267                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5268                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5269                      !!!cp ('t214');                      !!!cp ('t214');
5270                      $i = $_;                      $i = $_;
5271                      last INSCOPE;                      last INSCOPE;
5272                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5273                      !!!cp ('t215');                      !!!cp ('t215');
5274                      last INSCOPE;                      last INSCOPE;
5275                    }                    }
# Line 4369  sub _tree_construction_main ($) { Line 5277  sub _tree_construction_main ($) {
5277                  unless (defined $i) {                  unless (defined $i) {
5278                    !!!cp ('t216');                    !!!cp ('t216');
5279  ## TODO: This erorr type ios wrong.  ## TODO: This erorr type ios wrong.
5280                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5281                    ## Ignore the token                    ## Ignore the token
5282                      !!!nack ('t216.1');
5283                    !!!next-token;                    !!!next-token;
5284                    redo B;                    next B;
5285                  }                  }
5286    
5287                  ## Clear back to table body context                  ## Clear back to table body context
5288                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5289                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5290                    !!!cp ('t217');                    !!!cp ('t217');
5291                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5292                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4400  sub _tree_construction_main ($) { Line 5308  sub _tree_construction_main ($) {
5308    
5309                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
5310                  ## Clear back to table context                  ## Clear back to table context
5311                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5312                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5313                    !!!cp ('t219');                    !!!cp ('t219');
5314                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5315                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5316                  }                  }
5317                                    
5318                  !!!insert-element ('colgroup');                  !!!insert-element ('colgroup',, $token);
5319                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
5320                  ## reprocess                  ## reprocess
5321                  redo B;                  !!!ack-later;
5322                    next B;
5323                } elsif ({                } elsif ({
5324                          caption => 1,                          caption => 1,
5325                          colgroup => 1,                          colgroup => 1,
5326                          tbody => 1, tfoot => 1, thead => 1,                          tbody => 1, tfoot => 1, thead => 1,
5327                         }->{$token->{tag_name}}) {                         }->{$token->{tag_name}}) {
5328                  ## Clear back to table context                  ## Clear back to table context
5329                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5330                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5331                    !!!cp ('t220');                    !!!cp ('t220');
5332                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5333                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4427  sub _tree_construction_main ($) { Line 5336  sub _tree_construction_main ($) {
5336                  push @$active_formatting_elements, ['#marker', '']                  push @$active_formatting_elements, ['#marker', '']
5337                      if $token->{tag_name} eq 'caption';                      if $token->{tag_name} eq 'caption';
5338                                    
5339                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5340                  $self->{insertion_mode} = {                  $self->{insertion_mode} = {
5341                                             caption => IN_CAPTION_IM,                                             caption => IN_CAPTION_IM,
5342                                             colgroup => IN_COLUMN_GROUP_IM,                                             colgroup => IN_COLUMN_GROUP_IM,
# Line 4436  sub _tree_construction_main ($) { Line 5345  sub _tree_construction_main ($) {
5345                                             thead => IN_TABLE_BODY_IM,                                             thead => IN_TABLE_BODY_IM,
5346                                            }->{$token->{tag_name}};                                            }->{$token->{tag_name}};
5347                  !!!next-token;                  !!!next-token;
5348                  redo B;                  !!!nack ('t220.1');
5349                    next B;
5350                } else {                } else {
5351                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
5352                }                }
5353              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5354                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
5355                                  value => $self->{open_elements}->[-1]->[0]
5356                                      ->manakai_local_name,
5357                                  token => $token);
5358    
5359                ## As if </table>                ## As if </table>
5360                ## have a table element in table scope                ## have a table element in table scope
5361                my $i;                my $i;
5362                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5363                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5364                  if ($node->[1] eq 'table') {                  if ($node->[1] & TABLE_EL) {
5365                    !!!cp ('t221');                    !!!cp ('t221');
5366                    $i = $_;                    $i = $_;
5367                    last INSCOPE;                    last INSCOPE;
5368                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           #table => 1,  
                           html => 1,  
                          }->{$node->[1]}) {  
5369                    !!!cp ('t222');                    !!!cp ('t222');
5370                    last INSCOPE;                    last INSCOPE;
5371                  }                  }
# Line 4463  sub _tree_construction_main ($) { Line 5373  sub _tree_construction_main ($) {
5373                unless (defined $i) {                unless (defined $i) {
5374                  !!!cp ('t223');                  !!!cp ('t223');
5375  ## TODO: The following is wrong, maybe.  ## TODO: The following is wrong, maybe.
5376                  !!!parse-error (type => 'unmatched end tag:table');                  !!!parse-error (type => 'unmatched end tag:table', token => $token);
5377                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
5378                    !!!nack ('t223.1');
5379                  !!!next-token;                  !!!next-token;
5380                  redo B;                  next B;
5381                }                }
5382                                
5383    ## TODO: Followings are removed from the latest spec.
5384                ## generate implied end tags                ## generate implied end tags
5385                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5386                  !!!cp ('t224');                  !!!cp ('t224');
5387                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5388                }                }
5389    
5390                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] & TABLE_EL) {
5391                  !!!cp ('t225');                  !!!cp ('t225');
5392  ## ISSUE: Can this case be reached?                  ## NOTE: |<table><tr><table>|
5393                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed',
5394                                    value => $self->{open_elements}->[-1]->[0]
5395                                        ->manakai_local_name,
5396                                    token => $token);
5397                } else {                } else {
5398                  !!!cp ('t226');                  !!!cp ('t226');
5399                }                }
# Line 4490  sub _tree_construction_main ($) { Line 5403  sub _tree_construction_main ($) {
5403    
5404                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5405    
5406                ## reprocess            ## reprocess
5407                redo B;            !!!ack-later;
5408              next B;
5409          } elsif ($token->{tag_name} eq 'style') {          } elsif ($token->{tag_name} eq 'style') {
5410            if (not $open_tables->[-1]->[1]) { # tainted            if (not $open_tables->[-1]->[1]) { # tainted
5411              !!!cp ('t227.8');              !!!cp ('t227.8');
5412              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5413              $parse_rcdata->(CDATA_CONTENT_MODEL);              $parse_rcdata->(CDATA_CONTENT_MODEL);
5414              redo B;              next B;
5415            } else {            } else {
5416              !!!cp ('t227.7');              !!!cp ('t227.7');
5417              #              #
# Line 4507  sub _tree_construction_main ($) { Line 5421  sub _tree_construction_main ($) {
5421              !!!cp ('t227.6');              !!!cp ('t227.6');
5422              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5423              $script_start_tag->();              $script_start_tag->();
5424              redo B;              next B;
5425            } else {            } else {
5426              !!!cp ('t227.5');              !!!cp ('t227.5');
5427              #              #
# Line 4518  sub _tree_construction_main ($) { Line 5432  sub _tree_construction_main ($) {
5432                my $type = lc $token->{attributes}->{type}->{value};                my $type = lc $token->{attributes}->{type}->{value};
5433                if ($type eq 'hidden') {                if ($type eq 'hidden') {
5434                  !!!cp ('t227.3');                  !!!cp ('t227.3');
5435                  !!!parse-error (type => 'in table:'.$token->{tag_name});                  !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
5436    
5437                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5438    
5439                  ## TODO: form element pointer                  ## TODO: form element pointer
5440    
5441                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5442    
5443                  !!!next-token;                  !!!next-token;
5444                  redo B;                  !!!ack ('t227.2.1');
5445                    next B;
5446                } else {                } else {
5447                  !!!cp ('t227.2');                  !!!cp ('t227.2');
5448                  #                  #
# Line 4545  sub _tree_construction_main ($) { Line 5460  sub _tree_construction_main ($) {
5460            #            #
5461          }          }
5462    
5463          !!!parse-error (type => 'in table:'.$token->{tag_name});          !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
5464    
5465          $insert = $insert_to_foster;          $insert = $insert_to_foster;
5466          #          #
# Line 4556  sub _tree_construction_main ($) { Line 5471  sub _tree_construction_main ($) {
5471                my $i;                my $i;
5472                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5473                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5474                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_ROW_EL) {
5475                    !!!cp ('t228');                    !!!cp ('t228');
5476                    $i = $_;                    $i = $_;
5477                    last INSCOPE;                    last INSCOPE;
5478                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5479                    !!!cp ('t229');                    !!!cp ('t229');
5480                    last INSCOPE;                    last INSCOPE;
5481                  }                  }
5482                } # INSCOPE                } # INSCOPE
5483                unless (defined $i) {                unless (defined $i) {
5484                  !!!cp ('t230');                  !!!cp ('t230');
5485                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5486                  ## Ignore the token                  ## Ignore the token
5487                    !!!nack ('t230.1');
5488                  !!!next-token;                  !!!next-token;
5489                  redo B;                  next B;
5490                } else {                } else {
5491                  !!!cp ('t232');                  !!!cp ('t232');
5492                }                }
5493    
5494                ## Clear back to table row context                ## Clear back to table row context
5495                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5496                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5497                  !!!cp ('t231');                  !!!cp ('t231');
5498  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5499                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4589  sub _tree_construction_main ($) { Line 5502  sub _tree_construction_main ($) {
5502                pop @{$self->{open_elements}}; # tr                pop @{$self->{open_elements}}; # tr
5503                $self->{insertion_mode} = IN_TABLE_BODY_IM;                $self->{insertion_mode} = IN_TABLE_BODY_IM;
5504                !!!next-token;                !!!next-token;
5505                redo B;                !!!nack ('t231.1');
5506                  next B;
5507              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5508                if ($self->{insertion_mode} == IN_ROW_IM) {                if ($self->{insertion_mode} == IN_ROW_IM) {
5509                  ## As if </tr>                  ## As if </tr>
# Line 4597  sub _tree_construction_main ($) { Line 5511  sub _tree_construction_main ($) {
5511                  my $i;                  my $i;
5512                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5513                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5514                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5515                      !!!cp ('t233');                      !!!cp ('t233');
5516                      $i = $_;                      $i = $_;
5517                      last INSCOPE;                      last INSCOPE;
5518                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5519                      !!!cp ('t234');                      !!!cp ('t234');
5520                      last INSCOPE;                      last INSCOPE;
5521                    }                    }
# Line 4611  sub _tree_construction_main ($) { Line 5523  sub _tree_construction_main ($) {
5523                  unless (defined $i) {                  unless (defined $i) {
5524                    !!!cp ('t235');                    !!!cp ('t235');
5525  ## TODO: The following is wrong.  ## TODO: The following is wrong.
5526                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});                    !!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token);
5527                    ## Ignore the token                    ## Ignore the token
5528                      !!!nack ('t236.1');
5529                    !!!next-token;                    !!!next-token;
5530                    redo B;                    next B;
5531                  }                  }
5532                                    
5533                  ## Clear back to table row context                  ## Clear back to table row context
5534                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5535                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5536                    !!!cp ('t236');                    !!!cp ('t236');
5537  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5538                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4636  sub _tree_construction_main ($) { Line 5548  sub _tree_construction_main ($) {
5548                  my $i;                  my $i;
5549                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5550                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5551                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5552                      !!!cp ('t237');                      !!!cp ('t237');
5553                      $i = $_;                      $i = $_;
5554                      last INSCOPE;                      last INSCOPE;
5555                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5556                      !!!cp ('t238');                      !!!cp ('t238');
5557                      last INSCOPE;                      last INSCOPE;
5558                    }                    }
5559                  } # INSCOPE                  } # INSCOPE
5560                  unless (defined $i) {                  unless (defined $i) {
5561                    !!!cp ('t239');                    !!!cp ('t239');
5562                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5563                    ## Ignore the token                    ## Ignore the token
5564                      !!!nack ('t239.1');
5565                    !!!next-token;                    !!!next-token;
5566                    redo B;                    next B;
5567                  }                  }
5568                                    
5569                  ## Clear back to table body context                  ## Clear back to table body context
5570                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5571                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5572                    !!!cp ('t240');                    !!!cp ('t240');
5573                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5574                  }                  }
# Line 4686  sub _tree_construction_main ($) { Line 5594  sub _tree_construction_main ($) {
5594                my $i;                my $i;
5595                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5596                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5597                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_EL) {
5598                    !!!cp ('t241');                    !!!cp ('t241');
5599                    $i = $_;                    $i = $_;
5600                    last INSCOPE;                    last INSCOPE;
5601                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5602                    !!!cp ('t242');                    !!!cp ('t242');
5603                    last INSCOPE;                    last INSCOPE;
5604                  }                  }
5605                } # INSCOPE                } # INSCOPE
5606                unless (defined $i) {                unless (defined $i) {
5607                  !!!cp ('t243');                  !!!cp ('t243');
5608                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5609                  ## Ignore the token                  ## Ignore the token
5610                    !!!nack ('t243.1');
5611                  !!!next-token;                  !!!next-token;
5612                  redo B;                  next B;
5613                }                }
5614                                    
5615                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 4711  sub _tree_construction_main ($) { Line 5618  sub _tree_construction_main ($) {
5618                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5619                                
5620                !!!next-token;                !!!next-token;
5621                redo B;                next B;
5622              } elsif ({              } elsif ({
5623                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
5624                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
# Line 4721  sub _tree_construction_main ($) { Line 5628  sub _tree_construction_main ($) {
5628                  my $i;                  my $i;
5629                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5630                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5631                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5632                      !!!cp ('t247');                      !!!cp ('t247');
5633                      $i = $_;                      $i = $_;
5634                      last INSCOPE;                      last INSCOPE;
5635                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5636                      !!!cp ('t248');                      !!!cp ('t248');
5637                      last INSCOPE;                      last INSCOPE;
5638                    }                    }
5639                  } # INSCOPE                  } # INSCOPE
5640                    unless (defined $i) {                    unless (defined $i) {
5641                      !!!cp ('t249');                      !!!cp ('t249');
5642                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5643                      ## Ignore the token                      ## Ignore the token
5644                        !!!nack ('t249.1');
5645                      !!!next-token;                      !!!next-token;
5646                      redo B;                      next B;
5647                    }                    }
5648                                    
5649                  ## As if </tr>                  ## As if </tr>
# Line 4745  sub _tree_construction_main ($) { Line 5651  sub _tree_construction_main ($) {
5651                  my $i;                  my $i;
5652                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5653                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5654                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5655                      !!!cp ('t250');                      !!!cp ('t250');
5656                      $i = $_;                      $i = $_;
5657                      last INSCOPE;                      last INSCOPE;
5658                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5659                      !!!cp ('t251');                      !!!cp ('t251');
5660                      last INSCOPE;                      last INSCOPE;
5661                    }                    }
5662                  } # INSCOPE                  } # INSCOPE
5663                    unless (defined $i) {                    unless (defined $i) {
5664                      !!!cp ('t252');                      !!!cp ('t252');
5665                      !!!parse-error (type => 'unmatched end tag:tr');                      !!!parse-error (type => 'unmatched end tag:tr', token => $token);
5666                      ## Ignore the token                      ## Ignore the token
5667                        !!!nack ('t252.1');
5668                      !!!next-token;                      !!!next-token;
5669                      redo B;                      next B;
5670                    }                    }
5671                                    
5672                  ## Clear back to table row context                  ## Clear back to table row context
5673                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5674                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5675                    !!!cp ('t253');                    !!!cp ('t253');
5676  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
5677                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4782  sub _tree_construction_main ($) { Line 5686  sub _tree_construction_main ($) {
5686                my $i;                my $i;
5687                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5688                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5689                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5690                    !!!cp ('t254');                    !!!cp ('t254');
5691                    $i = $_;                    $i = $_;
5692                    last INSCOPE;                    last INSCOPE;
5693                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5694                    !!!cp ('t255');                    !!!cp ('t255');
5695                    last INSCOPE;                    last INSCOPE;
5696                  }                  }
5697                } # INSCOPE                } # INSCOPE
5698                unless (defined $i) {                unless (defined $i) {
5699                  !!!cp ('t256');                  !!!cp ('t256');
5700                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5701                  ## Ignore the token                  ## Ignore the token
5702                    !!!nack ('t256.1');
5703                  !!!next-token;                  !!!next-token;
5704                  redo B;                  next B;
5705                }                }
5706    
5707                ## Clear back to table body context                ## Clear back to table body context
5708                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5709                  tbody => 1, tfoot => 1, thead => 1, html => 1,                                & TABLE_ROWS_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5710                  !!!cp ('t257');                  !!!cp ('t257');
5711  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
5712                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4812  sub _tree_construction_main ($) { Line 5714  sub _tree_construction_main ($) {
5714    
5715                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5716                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5717                  !!!nack ('t257.1');
5718                !!!next-token;                !!!next-token;
5719                redo B;                next B;
5720              } elsif ({              } elsif ({
5721                        body => 1, caption => 1, col => 1, colgroup => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
5722                        html => 1, td => 1, th => 1,                        html => 1, td => 1, th => 1,
5723                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
5724                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
5725                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5726                !!!cp ('t258');            !!!cp ('t258');
5727                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5728                ## Ignore the token            ## Ignore the token
5729                !!!next-token;            !!!nack ('t258.1');
5730                redo B;             !!!next-token;
5731              next B;
5732          } else {          } else {
5733            !!!cp ('t259');            !!!cp ('t259');
5734            !!!parse-error (type => 'in table:/'.$token->{tag_name});            !!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token);
5735    
5736            $insert = $insert_to_foster;            $insert = $insert_to_foster;
5737            #            #
5738          }          }
5739          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5740            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
5741                    @{$self->{open_elements}} == 1) { # redundant, maybe
5742              !!!parse-error (type => 'in body:#eof', token => $token);
5743              !!!cp ('t259.1');
5744              #
5745            } else {
5746              !!!cp ('t259.2');
5747              #
5748            }
5749    
5750            ## Stop parsing
5751            last B;
5752        } else {        } else {
5753          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5754        }        }
# Line 4842  sub _tree_construction_main ($) { Line 5759  sub _tree_construction_main ($) {
5759                unless (length $token->{data}) {                unless (length $token->{data}) {
5760                  !!!cp ('t260');                  !!!cp ('t260');
5761                  !!!next-token;                  !!!next-token;
5762                  redo B;                  next B;
5763                }                }
5764              }              }
5765                            
# Line 4851  sub _tree_construction_main ($) { Line 5768  sub _tree_construction_main ($) {
5768            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
5769              if ($token->{tag_name} eq 'col') {              if ($token->{tag_name} eq 'col') {
5770                !!!cp ('t262');                !!!cp ('t262');
5771                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5772                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5773                  !!!ack ('t262.1');
5774                !!!next-token;                !!!next-token;
5775                redo B;                next B;
5776              } else {              } else {
5777                !!!cp ('t263');                !!!cp ('t263');
5778                #                #
5779              }              }
5780            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
5781              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
5782                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
5783                  !!!cp ('t264');                  !!!cp ('t264');
5784                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5785                  ## Ignore the token                  ## Ignore the token
5786                  !!!next-token;                  !!!next-token;
5787                  redo B;                  next B;
5788                } else {                } else {
5789                  !!!cp ('t265');                  !!!cp ('t265');
5790                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
5791                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5792                  !!!next-token;                  !!!next-token;
5793                  redo B;                              next B;            
5794                }                }
5795              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
5796                !!!cp ('t266');                !!!cp ('t266');
5797                !!!parse-error (type => 'unmatched end tag:col');                !!!parse-error (type => 'unmatched end tag:col', token => $token);
5798                ## Ignore the token                ## Ignore the token
5799                !!!next-token;                !!!next-token;
5800                redo B;                next B;
5801              } else {              } else {
5802                !!!cp ('t267');                !!!cp ('t267');
5803                #                #
5804              }              }
5805            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5806              die "$0: $token->{type}: Unknown token type";          if ($self->{open_elements}->[-1]->[1] & HTML_EL and
5807            }              @{$self->{open_elements}} == 1) { # redundant, maybe
5808              !!!cp ('t270.2');
5809              ## Stop parsing.
5810              last B;
5811            } else {
5812              ## NOTE: As if </colgroup>.
5813              !!!cp ('t270.1');
5814              pop @{$self->{open_elements}}; # colgroup
5815              $self->{insertion_mode} = IN_TABLE_IM;
5816              ## Reprocess.
5817              next B;
5818            }
5819          } else {
5820            die "$0: $token->{type}: Unknown token type";
5821          }
5822    
5823            ## As if </colgroup>            ## As if </colgroup>
5824            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
5825              !!!cp ('t269');              !!!cp ('t269');
5826              !!!parse-error (type => 'unmatched end tag:colgroup');  ## TODO: Wrong error type?
5827                !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5828              ## Ignore the token              ## Ignore the token
5829                !!!nack ('t269.1');
5830              !!!next-token;              !!!next-token;
5831              redo B;              next B;
5832            } else {            } else {
5833              !!!cp ('t270');              !!!cp ('t270');
5834              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
5835              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
5836                !!!ack-later;
5837              ## reprocess              ## reprocess
5838              redo B;              next B;
5839            }            }
5840      } elsif ($self->{insertion_mode} == IN_SELECT_IM) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
5841        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
5842          !!!cp ('t271');          !!!cp ('t271');
5843          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5844          !!!next-token;          !!!next-token;
5845          redo B;          next B;
5846        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5847              if ($token->{tag_name} eq 'option') {          if ($token->{tag_name} eq 'option') {
5848                if ($self->{open_elements}->[-1]->[1] eq 'option') {            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5849                  !!!cp ('t272');              !!!cp ('t272');
5850                  ## As if </option>              ## As if </option>
5851                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5852                } else {            } else {
5853                  !!!cp ('t273');              !!!cp ('t273');
5854                }            }
5855    
5856                !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5857                !!!next-token;            !!!nack ('t273.1');
5858                redo B;            !!!next-token;
5859              } elsif ($token->{tag_name} eq 'optgroup') {            next B;
5860                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'optgroup') {
5861                  !!!cp ('t274');            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5862                  ## As if </option>              !!!cp ('t274');
5863                  pop @{$self->{open_elements}};              ## As if </option>
5864                } else {              pop @{$self->{open_elements}};
5865                  !!!cp ('t275');            } else {
5866                }              !!!cp ('t275');
5867              }
5868    
5869                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            if ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
5870                  !!!cp ('t276');              !!!cp ('t276');
5871                  ## As if </optgroup>              ## As if </optgroup>
5872                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5873                } else {            } else {
5874                  !!!cp ('t277');              !!!cp ('t277');
5875                }            }
5876    
5877                !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5878                !!!next-token;            !!!nack ('t277.1');
5879                redo B;            !!!next-token;
5880              } elsif ($token->{tag_name} eq 'select') {            next B;
5881  ## TODO: The type below is not good - <select> is replaced by </select>          } elsif ($token->{tag_name} eq 'select' or
5882                !!!parse-error (type => 'not closed:select');                   $token->{tag_name} eq 'input' or
5883                ## As if </select> instead                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5884                ## have an element in table scope                    {
5885                my $i;                     caption => 1, table => 1,
5886                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                     tbody => 1, tfoot => 1, thead => 1,
5887                  my $node = $self->{open_elements}->[$_];                     tr => 1, td => 1, th => 1,
5888                  if ($node->[1] eq $token->{tag_name}) {                    }->{$token->{tag_name}})) {
5889                    !!!cp ('t278');            ## TODO: The type below is not good - <select> is replaced by </select>
5890                    $i = $_;            !!!parse-error (type => 'not closed:select', token => $token);
5891                    last INSCOPE;            ## NOTE: As if the token were </select> (<select> case) or
5892                  } elsif ({            ## as if there were </select> (otherwise).
5893                            table => 1, html => 1,            ## have an element in table scope
5894                           }->{$node->[1]}) {            my $i;
5895                    !!!cp ('t279');            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5896                    last INSCOPE;              my $node = $self->{open_elements}->[$_];
5897                  }              if ($node->[1] & SELECT_EL) {
5898                } # INSCOPE                !!!cp ('t278');
5899                unless (defined $i) {                $i = $_;
5900                  !!!cp ('t280');                last INSCOPE;
5901                  !!!parse-error (type => 'unmatched end tag:select');              } elsif ($node->[1] & TABLE_SCOPING_EL) {
5902                  ## Ignore the token                !!!cp ('t279');
5903                  !!!next-token;                last INSCOPE;
5904                  redo B;              }
5905                }            } # INSCOPE
5906              unless (defined $i) {
5907                !!!cp ('t280');
5908                !!!parse-error (type => 'unmatched end tag:select', token => $token);
5909                ## Ignore the token
5910                !!!nack ('t280.1');
5911                !!!next-token;
5912                next B;
5913              }
5914                                
5915                !!!cp ('t281');            !!!cp ('t281');
5916                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
5917    
5918                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
5919    
5920                !!!next-token;            if ($token->{tag_name} eq 'select') {
5921                redo B;              !!!nack ('t281.2');
5922                !!!next-token;
5923                next B;
5924              } else {
5925                !!!cp ('t281.1');
5926                !!!ack-later;
5927                ## Reprocess the token.
5928                next B;
5929              }
5930          } else {          } else {
5931            !!!cp ('t282');            !!!cp ('t282');
5932            !!!parse-error (type => 'in select:'.$token->{tag_name});            !!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token);
5933            ## Ignore the token            ## Ignore the token
5934              !!!nack ('t282.1');
5935            !!!next-token;            !!!next-token;
5936            redo B;            next B;
5937          }          }
5938        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5939              if ($token->{tag_name} eq 'optgroup') {          if ($token->{tag_name} eq 'optgroup') {
5940                if ($self->{open_elements}->[-1]->[1] eq 'option' and            if ($self->{open_elements}->[-1]->[1] & OPTION_EL and
5941                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                $self->{open_elements}->[-2]->[1] & OPTGROUP_EL) {
5942                  !!!cp ('t283');              !!!cp ('t283');
5943                  ## As if </option>              ## As if </option>
5944                  splice @{$self->{open_elements}}, -2;              splice @{$self->{open_elements}}, -2;
5945                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            } elsif ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
5946                  !!!cp ('t284');              !!!cp ('t284');
5947                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5948                } else {            } else {
5949                  !!!cp ('t285');              !!!cp ('t285');
5950                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5951                  ## Ignore the token              ## Ignore the token
5952                }            }
5953                !!!next-token;            !!!nack ('t285.1');
5954                redo B;            !!!next-token;
5955              } elsif ($token->{tag_name} eq 'option') {            next B;
5956                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'option') {
5957                  !!!cp ('t286');            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5958                  pop @{$self->{open_elements}};              !!!cp ('t286');
5959                } else {              pop @{$self->{open_elements}};
5960                  !!!cp ('t287');            } else {
5961                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t287');
5962                  ## Ignore the token              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5963                }              ## Ignore the token
5964                !!!next-token;            }
5965                redo B;            !!!nack ('t287.1');
5966              } elsif ($token->{tag_name} eq 'select') {            !!!next-token;
5967                ## have an element in table scope            next B;
5968                my $i;          } elsif ($token->{tag_name} eq 'select') {
5969                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            ## have an element in table scope
5970                  my $node = $self->{open_elements}->[$_];            my $i;
5971                  if ($node->[1] eq $token->{tag_name}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5972                    !!!cp ('t288');              my $node = $self->{open_elements}->[$_];
5973                    $i = $_;              if ($node->[1] & SELECT_EL) {
5974                    last INSCOPE;                !!!cp ('t288');
5975                  } elsif ({                $i = $_;
5976                            table => 1, html => 1,                last INSCOPE;
5977                           }->{$node->[1]}) {              } elsif ($node->[1] & TABLE_SCOPING_EL) {
5978                    !!!cp ('t289');                !!!cp ('t289');
5979                    last INSCOPE;                last INSCOPE;
5980                  }              }
5981                } # INSCOPE            } # INSCOPE
5982                unless (defined $i) {            unless (defined $i) {
5983                  !!!cp ('t290');              !!!cp ('t290');
5984                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5985                  ## Ignore the token              ## Ignore the token
5986                  !!!next-token;              !!!nack ('t290.1');
5987                  redo B;              !!!next-token;
5988                }              next B;
5989              }
5990                                
5991                !!!cp ('t291');            !!!cp ('t291');
5992                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
5993    
5994                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
5995    
5996                !!!next-token;            !!!nack ('t291.1');
5997                redo B;            !!!next-token;
5998              } elsif ({            next B;
5999                        caption => 1, table => 1, tbody => 1,          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
6000                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                   {
6001                       }->{$token->{tag_name}}) {                    caption => 1, table => 1, tbody => 1,
6002                      tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
6003                     }->{$token->{tag_name}}) {
6004  ## TODO: The following is wrong?  ## TODO: The following is wrong?
6005                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6006                                
6007                ## have an element in table scope            ## have an element in table scope
6008                my $i;            my $i;
6009                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6010                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6011                  if ($node->[1] eq $token->{tag_name}) {              if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6012                    !!!cp ('t292');                !!!cp ('t292');
6013                    $i = $_;                $i = $_;
6014                    last INSCOPE;                last INSCOPE;
6015                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6016                            table => 1, html => 1,                !!!cp ('t293');
6017                           }->{$node->[1]}) {                last INSCOPE;
6018                    !!!cp ('t293');              }
6019                    last INSCOPE;            } # INSCOPE
6020                  }            unless (defined $i) {
6021                } # INSCOPE              !!!cp ('t294');
6022                unless (defined $i) {              ## Ignore the token
6023                  !!!cp ('t294');              !!!nack ('t294.1');
6024                  ## Ignore the token              !!!next-token;
6025                  !!!next-token;              next B;
6026                  redo B;            }
               }  
6027                                
6028                ## As if </select>            ## As if </select>
6029                ## have an element in table scope            ## have an element in table scope
6030                undef $i;            undef $i;
6031                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6032                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6033                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6034                    !!!cp ('t295');                !!!cp ('t295');
6035                    $i = $_;                $i = $_;
6036                    last INSCOPE;                last INSCOPE;
6037                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6038  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
6039                    !!!cp ('t296');                !!!cp ('t296');
6040                    last INSCOPE;                last INSCOPE;
6041                  }              }
6042                } # INSCOPE            } # INSCOPE
6043                unless (defined $i) {            unless (defined $i) {
6044                  !!!cp ('t297');              !!!cp ('t297');
6045  ## TODO: The following error type is correct?  ## TODO: The following error type is correct?
6046                  !!!parse-error (type => 'unmatched end tag:select');              !!!parse-error (type => 'unmatched end tag:select', token => $token);
6047                  ## Ignore the </select> token              ## Ignore the </select> token
6048                  !!!next-token; ## TODO: ok?              !!!nack ('t297.1');
6049                  redo B;              !!!next-token; ## TODO: ok?
6050                }              next B;
6051              }
6052                                
6053                !!!cp ('t298');            !!!cp ('t298');
6054                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6055    
6056                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6057    
6058                ## reprocess            !!!ack-later;
6059                redo B;            ## reprocess
6060              next B;
6061          } else {          } else {
6062            !!!cp ('t299');            !!!cp ('t299');
6063            !!!parse-error (type => 'in select:/'.$token->{tag_name});            !!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token);
6064            ## Ignore the token            ## Ignore the token
6065              !!!nack ('t299.3');
6066            !!!next-token;            !!!next-token;
6067            redo B;            next B;
6068            }
6069          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6070            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6071                    @{$self->{open_elements}} == 1) { # redundant, maybe
6072              !!!cp ('t299.1');
6073              !!!parse-error (type => 'in body:#eof', token => $token);
6074            } else {
6075              !!!cp ('t299.2');
6076          }          }
6077    
6078            ## Stop parsing.
6079            last B;
6080        } else {        } else {
6081          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6082        }        }
# Line 5125  sub _tree_construction_main ($) { Line 6092  sub _tree_construction_main ($) {
6092            unless (length $token->{data}) {            unless (length $token->{data}) {
6093              !!!cp ('t300');              !!!cp ('t300');
6094              !!!next-token;              !!!next-token;
6095              redo B;              next B;
6096            }            }
6097          }          }
6098                    
6099          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6100            !!!cp ('t301');            !!!cp ('t301');
6101            !!!parse-error (type => 'after html:#character');            !!!parse-error (type => 'after html:#character', token => $token);
6102    
6103            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6104          } else {          } else {
# Line 5139  sub _tree_construction_main ($) { Line 6106  sub _tree_construction_main ($) {
6106          }          }
6107                    
6108          ## "after body" insertion mode          ## "after body" insertion mode
6109          !!!parse-error (type => 'after body:#character');          !!!parse-error (type => 'after body:#character', token => $token);
6110    
6111          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6112          ## reprocess          ## reprocess
6113          redo B;          next B;
6114        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6115          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6116            !!!cp ('t303');            !!!cp ('t303');
6117            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
6118                        
6119            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6120          } else {          } else {
# Line 5155  sub _tree_construction_main ($) { Line 6122  sub _tree_construction_main ($) {
6122          }          }
6123    
6124          ## "after body" insertion mode          ## "after body" insertion mode
6125          !!!parse-error (type => 'after body:'.$token->{tag_name});          !!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token);
6126    
6127          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6128            !!!ack-later;
6129          ## reprocess          ## reprocess
6130          redo B;          next B;
6131        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6132          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6133            !!!cp ('t305');            !!!cp ('t305');
6134            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
6135                        
6136            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6137            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
# Line 5175  sub _tree_construction_main ($) { Line 6143  sub _tree_construction_main ($) {
6143          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
6144            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
6145              !!!cp ('t307');              !!!cp ('t307');
6146              !!!parse-error (type => 'unmatched end tag:html');              !!!parse-error (type => 'unmatched end tag:html', token => $token);
6147              ## Ignore the token              ## Ignore the token
6148              !!!next-token;              !!!next-token;
6149              redo B;              next B;
6150            } else {            } else {
6151              !!!cp ('t308');              !!!cp ('t308');
6152              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
6153              !!!next-token;              !!!next-token;
6154              redo B;              next B;
6155            }            }
6156          } else {          } else {
6157            !!!cp ('t309');            !!!cp ('t309');
6158            !!!parse-error (type => 'after body:/'.$token->{tag_name});            !!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token);
6159    
6160            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
6161            ## reprocess            ## reprocess
6162            redo B;            next B;
6163          }          }
6164          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6165            !!!cp ('t309.2');
6166            ## Stop parsing
6167            last B;
6168        } else {        } else {
6169          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6170        }        }
# Line 5204  sub _tree_construction_main ($) { Line 6176  sub _tree_construction_main ($) {
6176            unless (length $token->{data}) {            unless (length $token->{data}) {
6177              !!!cp ('t310');              !!!cp ('t310');
6178              !!!next-token;              !!!next-token;
6179              redo B;              next B;
6180            }            }
6181          }          }
6182                    
6183          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
6184            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6185              !!!cp ('t311');              !!!cp ('t311');
6186              !!!parse-error (type => 'in frameset:#character');              !!!parse-error (type => 'in frameset:#character', token => $token);
6187            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6188              !!!cp ('t312');              !!!cp ('t312');
6189              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
6190            } else { # "after html frameset"            } else { # "after html frameset"
6191              !!!cp ('t313');              !!!cp ('t313');
6192              !!!parse-error (type => 'after html:#character');              !!!parse-error (type => 'after html:#character', token => $token);
6193    
6194              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6195              ## Reprocess in the "after frameset" insertion mode.              ## Reprocess in the "after frameset" insertion mode.
6196              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
6197            }            }
6198                        
6199            ## Ignore the token.            ## Ignore the token.
# Line 5232  sub _tree_construction_main ($) { Line 6204  sub _tree_construction_main ($) {
6204              !!!cp ('t315');              !!!cp ('t315');
6205              !!!next-token;              !!!next-token;
6206            }            }
6207            redo B;            next B;
6208          }          }
6209                    
6210          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
6211        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6212          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
6213            !!!cp ('t316');            !!!cp ('t316');
6214            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
6215    
6216            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
6217            ## Process in the "after frameset" insertion mode.            ## Process in the "after frameset" insertion mode.
# Line 5250  sub _tree_construction_main ($) { Line 6222  sub _tree_construction_main ($) {
6222          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6223              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6224            !!!cp ('t318');            !!!cp ('t318');
6225            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6226              !!!nack ('t318.1');
6227            !!!next-token;            !!!next-token;
6228            redo B;            next B;
6229          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
6230                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
6231            !!!cp ('t319');            !!!cp ('t319');
6232            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6233            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6234              !!!ack ('t319.1');
6235            !!!next-token;            !!!next-token;
6236            redo B;            next B;
6237          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
6238            !!!cp ('t320');            !!!cp ('t320');
6239            ## NOTE: As if in body.            ## NOTE: As if in body.
6240            $parse_rcdata->(CDATA_CONTENT_MODEL);            $parse_rcdata->(CDATA_CONTENT_MODEL);
6241            redo B;            next B;
6242          } else {          } else {
6243            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6244              !!!cp ('t321');              !!!cp ('t321');
6245              !!!parse-error (type => 'in frameset:'.$token->{tag_name});              !!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token);
6246            } else {            } else {
6247              !!!cp ('t322');              !!!cp ('t322');
6248              !!!parse-error (type => 'after frameset:'.$token->{tag_name});              !!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token);
6249            }            }
6250            ## Ignore the token            ## Ignore the token
6251              !!!nack ('t322.1');
6252            !!!next-token;            !!!next-token;
6253            redo B;            next B;
6254          }          }
6255        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6256          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
6257            !!!cp ('t323');            !!!cp ('t323');
6258            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
6259    
6260            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
6261            ## Process in the "after frameset" insertion mode.            ## Process in the "after frameset" insertion mode.
# Line 5290  sub _tree_construction_main ($) { Line 6265  sub _tree_construction_main ($) {
6265    
6266          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6267              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6268            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6269                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
6270              !!!cp ('t325');              !!!cp ('t325');
6271              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6272              ## Ignore the token              ## Ignore the token
6273              !!!next-token;              !!!next-token;
6274            } else {            } else {
# Line 5303  sub _tree_construction_main ($) { Line 6278  sub _tree_construction_main ($) {
6278            }            }
6279    
6280            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
6281                $self->{open_elements}->[-1]->[1] ne 'frameset') {                not ($self->{open_elements}->[-1]->[1] & FRAMESET_EL)) {
6282              !!!cp ('t327');              !!!cp ('t327');
6283              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6284            } else {            } else {
6285              !!!cp ('t328');              !!!cp ('t328');
6286            }            }
6287            redo B;            next B;
6288          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
6289                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
6290            !!!cp ('t329');            !!!cp ('t329');
6291            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
6292            !!!next-token;            !!!next-token;
6293            redo B;            next B;
6294          } else {          } else {
6295            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6296              !!!cp ('t330');              !!!cp ('t330');
6297              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});              !!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token);
6298            } else {            } else {
6299              !!!cp ('t331');              !!!cp ('t331');
6300              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});              !!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token);
6301            }            }
6302            ## Ignore the token            ## Ignore the token
6303            !!!next-token;            !!!next-token;
6304            redo B;            next B;
6305            }
6306          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6307            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6308                    @{$self->{open_elements}} == 1) { # redundant, maybe
6309              !!!cp ('t331.1');
6310              !!!parse-error (type => 'in body:#eof', token => $token);
6311            } else {
6312              !!!cp ('t331.2');
6313          }          }
6314            
6315            ## Stop parsing
6316            last B;
6317        } else {        } else {
6318          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6319        }        }
# Line 5343  sub _tree_construction_main ($) { Line 6329  sub _tree_construction_main ($) {
6329          !!!cp ('t332');          !!!cp ('t332');
6330          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6331          $script_start_tag->();          $script_start_tag->();
6332          redo B;          next B;
6333        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
6334          !!!cp ('t333');          !!!cp ('t333');
6335          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6336          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
6337          redo B;          next B;
6338        } elsif ({        } elsif ({
6339                  base => 1, link => 1,                  base => 1, link => 1,
6340                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6341          !!!cp ('t334');          !!!cp ('t334');
6342          ## 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
6343          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6344          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
6345            !!!ack ('t334.1');
6346          !!!next-token;          !!!next-token;
6347          redo B;          next B;
6348        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
6349          ## 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
6350          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6351          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.
6352    
6353          unless ($self->{confident}) {          unless ($self->{confident}) {
6354            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) {
6355              !!!cp ('t335');              !!!cp ('t335');
6356                ## NOTE: Whether the encoding is supported or not is handled
6357                ## in the {change_encoding} callback.
6358              $self->{change_encoding}              $self->{change_encoding}
6359                  ->($self, $token->{attributes}->{charset}->{value});                  ->($self, $token->{attributes}->{charset}->{value}, $token);
6360                            
6361              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
6362                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
6363                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
6364                                           ->{has_reference});                                           ->{has_reference});
6365            } elsif ($token->{attributes}->{content}) {            } elsif ($token->{attributes}->{content}) {
             ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
6366              if ($token->{attributes}->{content}->{value}              if ($token->{attributes}->{content}->{value}
6367                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
6368                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
6369                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
6370                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
6371                !!!cp ('t336');                !!!cp ('t336');
6372                  ## NOTE: Whether the encoding is supported or not is handled
6373                  ## in the {change_encoding} callback.
6374                $self->{change_encoding}                $self->{change_encoding}
6375                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
6376                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
6377                    ->set_user_data (manakai_has_reference =>                    ->set_user_data (manakai_has_reference =>
6378                                         $token->{attributes}->{content}                                         $token->{attributes}->{content}
# Line 5406  sub _tree_construction_main ($) { Line 6396  sub _tree_construction_main ($) {
6396            }            }
6397          }          }
6398    
6399            !!!ack ('t338.1');
6400          !!!next-token;          !!!next-token;
6401          redo B;          next B;
6402        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
6403          !!!cp ('t341');          !!!cp ('t341');
6404          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6405          $parse_rcdata->(RCDATA_CONTENT_MODEL);          $parse_rcdata->(RCDATA_CONTENT_MODEL);
6406          redo B;          next B;
6407        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
6408          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body:body', token => $token);
6409                                
6410          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
6411              $self->{open_elements}->[1]->[1] ne 'body') {              not ($self->{open_elements}->[1]->[1] & BODY_EL)) {
6412            !!!cp ('t342');            !!!cp ('t342');
6413            ## Ignore the token            ## Ignore the token
6414          } else {          } else {
# Line 5431  sub _tree_construction_main ($) { Line 6422  sub _tree_construction_main ($) {
6422              }              }
6423            }            }
6424          }          }
6425            !!!nack ('t343.1');
6426          !!!next-token;          !!!next-token;
6427          redo B;          next B;
6428        } elsif ({        } elsif ({
6429                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6430                  div => 1, dl => 1, fieldset => 1,                  div => 1, dl => 1, fieldset => 1,
6431                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6432                  menu => 1, ol => 1, p => 1, ul => 1,                  menu => 1, ol => 1, p => 1, ul => 1,
6433                  pre => 1, listing => 1,                  pre => 1, listing => 1,
6434                    form => 1,
6435                    table => 1,
6436                    hr => 1,
6437                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6438            if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
6439              !!!cp ('t350');
6440              !!!parse-error (type => 'in form:form', token => $token);
6441              ## Ignore the token
6442              !!!nack ('t350.1');
6443              !!!next-token;
6444              next B;
6445            }
6446    
6447          ## has a p element in scope          ## has a p element in scope
6448          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6449            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6450              !!!cp ('t344');              !!!cp ('t344');
6451              !!!back-token;              !!!back-token; # <form>
6452              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6453              redo B;                        line => $token->{line}, column => $token->{column}};
6454            } elsif ({              next B;
6455                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($_->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6456              !!!cp ('t345');              !!!cp ('t345');
6457              last INSCOPE;              last INSCOPE;
6458            }            }
6459          } # INSCOPE          } # INSCOPE
6460                        
6461          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6462          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
6463              !!!nack ('t346.1');
6464            !!!next-token;            !!!next-token;
6465            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
6466              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
# Line 5470  sub _tree_construction_main ($) { Line 6473  sub _tree_construction_main ($) {
6473            } else {            } else {
6474              !!!cp ('t348');              !!!cp ('t348');
6475            }            }
6476          } else {          } elsif ($token->{tag_name} eq 'form') {
6477            !!!cp ('t347');            !!!cp ('t347.1');
6478              $self->{form_element} = $self->{open_elements}->[-1]->[0];
6479    
6480              !!!nack ('t347.2');
6481            !!!next-token;            !!!next-token;
6482          }          } elsif ($token->{tag_name} eq 'table') {
6483          redo B;            !!!cp ('t382');
6484        } elsif ($token->{tag_name} eq 'form') {            push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
6485          if (defined $self->{form_element}) {            
6486            !!!cp ('t350');            $self->{insertion_mode} = IN_TABLE_IM;
6487            !!!parse-error (type => 'in form:form');  
6488            ## Ignore the token            !!!nack ('t382.1');
6489              !!!next-token;
6490            } elsif ($token->{tag_name} eq 'hr') {
6491              !!!cp ('t386');
6492              pop @{$self->{open_elements}};
6493            
6494              !!!nack ('t386.1');
6495            !!!next-token;            !!!next-token;
           redo B;  
6496          } else {          } else {
6497            ## has a p element in scope            !!!nack ('t347.1');
           INSCOPE: for (reverse @{$self->{open_elements}}) {  
             if ($_->[1] eq 'p') {  
               !!!cp ('t351');  
               !!!back-token;  
               $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
               redo B;  
             } elsif ({  
                       table => 1, caption => 1, td => 1, th => 1,  
                       button => 1, marquee => 1, object => 1, html => 1,  
                      }->{$_->[1]}) {  
               !!!cp ('t352');  
               last INSCOPE;  
             }  
           } # INSCOPE  
               
           !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           $self->{form_element} = $self->{open_elements}->[-1]->[0];  
6498            !!!next-token;            !!!next-token;
           redo B;  
6499          }          }
6500        } elsif ($token->{tag_name} eq 'li') {          next B;
6501          } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {
6502          ## has a p element in scope          ## has a p element in scope
6503          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6504            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6505              !!!cp ('t353');              !!!cp ('t353');
6506              !!!back-token;              !!!back-token; # <x>
6507              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6508              redo B;                        line => $token->{line}, column => $token->{column}};
6509            } elsif ({              next B;
6510                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($_->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6511              !!!cp ('t354');              !!!cp ('t354');
6512              last INSCOPE;              last INSCOPE;
6513            }            }
# Line 5524  sub _tree_construction_main ($) { Line 6516  sub _tree_construction_main ($) {
6516          ## Step 1          ## Step 1
6517          my $i = -1;          my $i = -1;
6518          my $node = $self->{open_elements}->[$i];          my $node = $self->{open_elements}->[$i];
6519            my $li_or_dtdd = {li => {li => 1},
6520                              dt => {dt => 1, dd => 1},
6521                              dd => {dt => 1, dd => 1}}->{$token->{tag_name}};
6522          LI: {          LI: {
6523            ## Step 2            ## Step 2
6524            if ($node->[1] eq 'li') {            if ($li_or_dtdd->{$node->[0]->manakai_local_name}) {
6525              if ($i != -1) {              if ($i != -1) {
6526                !!!cp ('t355');                !!!cp ('t355');
6527                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'not closed',
6528                                $self->{open_elements}->[-1]->[1]);                                value => $self->{open_elements}->[-1]->[0]
6529                                      ->manakai_local_name,
6530                                  token => $token);
6531              } else {              } else {
6532                !!!cp ('t356');                !!!cp ('t356');
6533              }              }
# Line 5541  sub _tree_construction_main ($) { Line 6538  sub _tree_construction_main ($) {
6538            }            }
6539                        
6540            ## Step 3            ## Step 3
6541            if (not $formatting_category->{$node->[1]} and            if (not ($node->[1] & FORMATTING_EL) and
6542                #not $phrasing_category->{$node->[1]} and                #not $phrasing_category->{$node->[1]} and
6543                ($special_category->{$node->[1]} or                ($node->[1] & SPECIAL_EL or
6544                 $scoping_category->{$node->[1]}) and                 $node->[1] & SCOPING_EL) and
6545                $node->[1] ne 'address' and $node->[1] ne 'div') {                not ($node->[1] & ADDRESS_EL) and
6546                  not ($node->[1] & DIV_EL)) {
6547              !!!cp ('t358');              !!!cp ('t358');
6548              last LI;              last LI;
6549            }            }
# Line 5557  sub _tree_construction_main ($) { Line 6555  sub _tree_construction_main ($) {
6555            redo LI;            redo LI;
6556          } # LI          } # LI
6557                        
6558          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6559            !!!nack ('t359.1');
6560          !!!next-token;          !!!next-token;
6561          redo B;          next B;
       } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!cp ('t360');  
             !!!back-token;  
             $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
             redo B;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             !!!cp ('t361');  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## Step 1  
         my $i = -1;  
         my $node = $self->{open_elements}->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {  
             if ($i != -1) {  
               !!!cp ('t362');  
               !!!parse-error (type => 'end tag missing:'.  
                               $self->{open_elements}->[-1]->[1]);  
             } else {  
               !!!cp ('t363');  
             }  
             splice @{$self->{open_elements}}, $i;  
             last LI;  
           } else {  
             !!!cp ('t364');  
           }  
             
           ## Step 3  
           if (not $formatting_category->{$node->[1]} and  
               #not $phrasing_category->{$node->[1]} and  
               ($special_category->{$node->[1]} or  
                $scoping_category->{$node->[1]}) and  
               $node->[1] ne 'address' and $node->[1] ne 'div') {  
             !!!cp ('t365');  
             last LI;  
           }  
             
           !!!cp ('t366');  
           ## Step 4  
           $i--;  
           $node = $self->{open_elements}->[$i];  
           redo LI;  
         } # LI  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         !!!next-token;  
         redo B;  
6562        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
6563          ## has a p element in scope          ## has a p element in scope
6564          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6565            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6566              !!!cp ('t367');              !!!cp ('t367');
6567              !!!back-token;              !!!back-token; # <plaintext>
6568              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6569              redo B;                        line => $token->{line}, column => $token->{column}};
6570            } elsif ({              next B;
6571                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($_->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6572              !!!cp ('t368');              !!!cp ('t368');
6573              last INSCOPE;              last INSCOPE;
6574            }            }
6575          } # INSCOPE          } # INSCOPE
6576                        
6577          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6578                        
6579          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
6580                        
6581            !!!nack ('t368.1');
6582          !!!next-token;          !!!next-token;
6583          redo B;          next B;
6584        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
6585          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
6586            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
6587            if ($node->[1] eq 'a') {            if ($node->[1] & A_EL) {
6588              !!!cp ('t371');              !!!cp ('t371');
6589              !!!parse-error (type => 'in a:a');              !!!parse-error (type => 'in a:a', token => $token);
6590                            
6591              !!!back-token;              !!!back-token; # <a>
6592              $token = {type => END_TAG_TOKEN, tag_name => 'a'};              $token = {type => END_TAG_TOKEN, tag_name => 'a',
6593              $formatting_end_tag->($token->{tag_name});                        line => $token->{line}, column => $token->{column}};
6594                $formatting_end_tag->($token);
6595                            
6596              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
6597                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
# Line 5673  sub _tree_construction_main ($) { Line 6616  sub _tree_construction_main ($) {
6616                        
6617          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6618    
6619          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6620          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
6621    
6622            !!!nack ('t374.1');
6623          !!!next-token;          !!!next-token;
6624          redo B;          next B;
       } elsif ({  
                 b => 1, big => 1, em => 1, font => 1, i => 1,  
                 s => 1, small => 1, strile => 1,  
                 strong => 1, tt => 1, u => 1,  
                }->{$token->{tag_name}}) {  
         !!!cp ('t375');  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, $self->{open_elements}->[-1];  
           
         !!!next-token;  
         redo B;  
6625        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
6626          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6627    
6628          ## has a |nobr| element in scope          ## has a |nobr| element in scope
6629          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6630            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6631            if ($node->[1] eq 'nobr') {            if ($node->[1] & NOBR_EL) {
6632              !!!cp ('t376');              !!!cp ('t376');
6633              !!!parse-error (type => 'in nobr:nobr');              !!!parse-error (type => 'in nobr:nobr', token => $token);
6634              !!!back-token;              !!!back-token; # <nobr>
6635              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
6636              redo B;                        line => $token->{line}, column => $token->{column}};
6637            } elsif ({              next B;
6638                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($node->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
6639              !!!cp ('t377');              !!!cp ('t377');
6640              last INSCOPE;              last INSCOPE;
6641            }            }
6642          } # INSCOPE          } # INSCOPE
6643                    
6644          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6645          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
6646                    
6647            !!!nack ('t377.1');
6648          !!!next-token;          !!!next-token;
6649          redo B;          next B;
6650        } elsif ($token->{tag_name} eq 'button') {        } elsif ($token->{tag_name} eq 'button') {
6651          ## has a button element in scope          ## has a button element in scope
6652          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6653            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6654            if ($node->[1] eq 'button') {            if ($node->[1] & BUTTON_EL) {
6655              !!!cp ('t378');              !!!cp ('t378');
6656              !!!parse-error (type => 'in button:button');              !!!parse-error (type => 'in button:button', token => $token);
6657              !!!back-token;              !!!back-token; # <button>
6658              $token = {type => END_TAG_TOKEN, tag_name => 'button'};              $token = {type => END_TAG_TOKEN, tag_name => 'button',
6659              redo B;                        line => $token->{line}, column => $token->{column}};
6660            } elsif ({              next B;
6661                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($node->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
6662              !!!cp ('t379');              !!!cp ('t379');
6663              last INSCOPE;              last INSCOPE;
6664            }            }
# Line 5738  sub _tree_construction_main ($) { Line 6666  sub _tree_construction_main ($) {
6666                        
6667          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6668                        
6669          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6670    
6671          ## TODO: associate with $self->{form_element} if defined          ## TODO: associate with $self->{form_element} if defined
6672    
6673          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
6674    
6675            !!!nack ('t379.1');
6676          !!!next-token;          !!!next-token;
6677          redo B;          next B;
       } elsif ($token->{tag_name} eq 'marquee' or  
                $token->{tag_name} eq 'object') {  
         !!!cp ('t380');  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, ['#marker', ''];  
           
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'xmp') {  
         !!!cp ('t381');  
         $reconstruct_active_formatting_elements->($insert_to_current);  
         $parse_rcdata->(CDATA_CONTENT_MODEL);  
         redo B;  
       } elsif ($token->{tag_name} eq 'table') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!cp ('t382');  
             !!!back-token;  
             $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
             redo B;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             !!!cp ('t383');  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];  
   
         $self->{insertion_mode} = IN_TABLE_IM;  
             
         !!!next-token;  
         redo B;  
6678        } elsif ({        } elsif ({
6679                  area => 1, basefont => 1, bgsound => 1, br => 1,                  xmp => 1,
6680                  embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                  iframe => 1,
6681                  image => 1,                  noembed => 1,
6682                    noframes => 1,
6683                    noscript => 0, ## TODO: 1 if scripting is enabled
6684                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6685          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'xmp') {
6686            !!!cp ('t384');            !!!cp ('t381');
6687            !!!parse-error (type => 'image');            $reconstruct_active_formatting_elements->($insert_to_current);
           $token->{tag_name} = 'img';  
6688          } else {          } else {
6689            !!!cp ('t385');            !!!cp ('t399');
6690          }          }
6691            ## NOTE: There is an "as if in body" code clone.
6692          ## NOTE: There is an "as if <br>" code clone.          $parse_rcdata->(CDATA_CONTENT_MODEL);
6693          $reconstruct_active_formatting_elements->($insert_to_current);          next B;
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         pop @{$self->{open_elements}};  
           
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'hr') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!cp ('t386');  
             !!!back-token;  
             $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
             redo B;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             !!!cp ('t387');  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         pop @{$self->{open_elements}};  
             
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'input') {  
         !!!cp ('t388');  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         ## TODO: associate with $self->{form_element} if defined  
         pop @{$self->{open_elements}};  
           
         !!!next-token;  
         redo B;  
6694        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
6695          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex', token => $token);
6696                    
6697          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
6698            !!!cp ('t389');            !!!cp ('t389');
6699            ## Ignore the token            ## Ignore the token
6700              !!!nack ('t389'); ## NOTE: Not acknowledged.
6701            !!!next-token;            !!!next-token;
6702            redo B;            next B;
6703          } else {          } else {
6704            my $at = $token->{attributes};            my $at = $token->{attributes};
6705            my $form_attrs;            my $form_attrs;
# Line 5856  sub _tree_construction_main ($) { Line 6710  sub _tree_construction_main ($) {
6710            delete $at->{prompt};            delete $at->{prompt};
6711            my @tokens = (            my @tokens = (
6712                          {type => START_TAG_TOKEN, tag_name => 'form',                          {type => START_TAG_TOKEN, tag_name => 'form',
6713                           attributes => $form_attrs},                           attributes => $form_attrs,
6714                          {type => START_TAG_TOKEN, tag_name => 'hr'},                           line => $token->{line}, column => $token->{column}},
6715                          {type => START_TAG_TOKEN, tag_name => 'p'},                          {type => START_TAG_TOKEN, tag_name => 'hr',
6716                          {type => START_TAG_TOKEN, tag_name => 'label'},                           line => $token->{line}, column => $token->{column}},
6717                            {type => START_TAG_TOKEN, tag_name => 'p',
6718                             line => $token->{line}, column => $token->{column}},
6719                            {type => START_TAG_TOKEN, tag_name => 'label',
6720                             line => $token->{line}, column => $token->{column}},
6721                         );                         );
6722            if ($prompt_attr) {            if ($prompt_attr) {
6723              !!!cp ('t390');              !!!cp ('t390');
6724              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
6725                               #line => $token->{line}, column => $token->{column},
6726                              };
6727            } else {            } else {
6728              !!!cp ('t391');              !!!cp ('t391');
6729              push @tokens, {type => CHARACTER_TOKEN,              push @tokens, {type => CHARACTER_TOKEN,
6730                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD                             data => 'This is a searchable index. Insert your search keywords here: ',
6731                               #line => $token->{line}, column => $token->{column},
6732                              }; # SHOULD
6733              ## TODO: make this configurable              ## TODO: make this configurable
6734            }            }
6735            push @tokens,            push @tokens,
6736                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at},                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at,
6737                             line => $token->{line}, column => $token->{column}},
6738                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
6739                          {type => END_TAG_TOKEN, tag_name => 'label'},                          {type => END_TAG_TOKEN, tag_name => 'label',
6740                          {type => END_TAG_TOKEN, tag_name => 'p'},                           line => $token->{line}, column => $token->{column}},
6741                          {type => START_TAG_TOKEN, tag_name => 'hr'},                          {type => END_TAG_TOKEN, tag_name => 'p',
6742                          {type => END_TAG_TOKEN, tag_name => 'form'};                           line => $token->{line}, column => $token->{column}},
6743            $token = shift @tokens;                          {type => START_TAG_TOKEN, tag_name => 'hr',
6744                             line => $token->{line}, column => $token->{column}},
6745                            {type => END_TAG_TOKEN, tag_name => 'form',
6746                             line => $token->{line}, column => $token->{column}};
6747              !!!nack ('t391.1'); ## NOTE: Not acknowledged.
6748            !!!back-token (@tokens);            !!!back-token (@tokens);
6749            redo B;            !!!next-token;
6750              next B;
6751          }          }
6752        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
6753          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
6754          my $el;          my $el;
6755          !!!create-element ($el, $token->{tag_name}, $token->{attributes});          !!!create-element ($el, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
6756                    
6757          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
6758          $self->{content_model} = RCDATA_CONTENT_MODEL;          $self->{content_model} = RCDATA_CONTENT_MODEL;
# Line 5893  sub _tree_construction_main ($) { Line 6761  sub _tree_construction_main ($) {
6761          $insert->($el);          $insert->($el);
6762                    
6763          my $text = '';          my $text = '';
6764            !!!nack ('t392.1');
6765          !!!next-token;          !!!next-token;
6766          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
6767            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
# Line 5923  sub _tree_construction_main ($) { Line 6792  sub _tree_construction_main ($) {
6792            ## Ignore the token            ## Ignore the token
6793          } else {          } else {
6794            !!!cp ('t398');            !!!cp ('t398');
6795            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
6796          }          }
6797          !!!next-token;          !!!next-token;
6798          redo B;          next B;
6799        } elsif ({        } elsif ($token->{tag_name} eq 'math' or
6800                  iframe => 1,                 $token->{tag_name} eq 'svg') {
                 noembed => 1,  
                 noframes => 1,  
                 noscript => 0, ## TODO: 1 if scripting is enabled  
                }->{$token->{tag_name}}) {  
         !!!cp ('t399');  
         ## NOTE: There is an "as if in body" code clone.  
         $parse_rcdata->(CDATA_CONTENT_MODEL);  
         redo B;  
       } elsif ($token->{tag_name} eq 'select') {  
         !!!cp ('t400');  
6801          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
6802    
6803          ## TODO: associate with $self->{form_element} if defined          ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
6804    
6805            ## "adjust foreign attributes" - done in insert-element-f
6806            
6807            !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
6808                    
6809          $self->{insertion_mode} = IN_SELECT_IM;          if ($self->{self_closing}) {
6810              pop @{$self->{open_elements}};
6811              !!!ack ('t398.1');
6812            } else {
6813              !!!cp ('t398.2');
6814              $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
6815              ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
6816              ## mode, "in body" (not "in foreign content") secondary insertion
6817              ## mode, maybe.
6818            }
6819    
6820          !!!next-token;          !!!next-token;
6821          redo B;          next B;
6822        } elsif ({        } elsif ({
6823                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
6824                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 5955  sub _tree_construction_main ($) { Line 6826  sub _tree_construction_main ($) {
6826                  thead => 1, tr => 1,                  thead => 1, tr => 1,
6827                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6828          !!!cp ('t401');          !!!cp ('t401');
6829          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token);
6830          ## Ignore the token          ## Ignore the token
6831            !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
6832          !!!next-token;          !!!next-token;
6833          redo B;          next B;
6834                    
6835          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
6836        } else {        } else {
6837          !!!cp ('t402');          if ($token->{tag_name} eq 'image') {
6838              !!!cp ('t384');
6839              !!!parse-error (type => 'image', token => $token);
6840              $token->{tag_name} = 'img';
6841            } else {
6842              !!!cp ('t385');
6843            }
6844    
6845            ## NOTE: There is an "as if <br>" code clone.
6846          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6847                    
6848          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6849    
6850            if ({
6851                 applet => 1, marquee => 1, object => 1,
6852                }->{$token->{tag_name}}) {
6853              !!!cp ('t380');
6854              push @$active_formatting_elements, ['#marker', ''];
6855              !!!nack ('t380.1');
6856            } elsif ({
6857                      b => 1, big => 1, em => 1, font => 1, i => 1,
6858                      s => 1, small => 1, strile => 1,
6859                      strong => 1, tt => 1, u => 1,
6860                     }->{$token->{tag_name}}) {
6861              !!!cp ('t375');
6862              push @$active_formatting_elements, $self->{open_elements}->[-1];
6863              !!!nack ('t375.1');
6864            } elsif ($token->{tag_name} eq 'input') {
6865              !!!cp ('t388');
6866              ## TODO: associate with $self->{form_element} if defined
6867              pop @{$self->{open_elements}};
6868              !!!ack ('t388.2');
6869            } elsif ({
6870                      area => 1, basefont => 1, bgsound => 1, br => 1,
6871                      embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
6872                      #image => 1,
6873                     }->{$token->{tag_name}}) {
6874              !!!cp ('t388.1');
6875              pop @{$self->{open_elements}};
6876              !!!ack ('t388.3');
6877            } elsif ($token->{tag_name} eq 'select') {
6878              ## TODO: associate with $self->{form_element} if defined
6879            
6880              if ($self->{insertion_mode} & TABLE_IMS or
6881                  $self->{insertion_mode} & BODY_TABLE_IMS or
6882                  $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
6883                !!!cp ('t400.1');
6884                $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
6885              } else {
6886                !!!cp ('t400.2');
6887                $self->{insertion_mode} = IN_SELECT_IM;
6888              }
6889              !!!nack ('t400.3');
6890            } else {
6891              !!!nack ('t402');
6892            }
6893                    
6894          !!!next-token;          !!!next-token;
6895          redo B;          next B;
6896        }        }
6897      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
6898        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
6899          if (@{$self->{open_elements}} > 1 and          ## has a |body| element in scope
6900              $self->{open_elements}->[1]->[1] eq 'body') {          my $i;
6901            for (@{$self->{open_elements}}) {          INSCOPE: {
6902              unless ({            for (reverse @{$self->{open_elements}}) {
6903                         dd => 1, dt => 1, li => 1, p => 1, td => 1,              if ($_->[1] & BODY_EL) {
6904                         th => 1, tr => 1, body => 1, html => 1,                !!!cp ('t405');
6905                       tbody => 1, tfoot => 1, thead => 1,                $i = $_;
6906                      }->{$_->[1]}) {                last INSCOPE;
6907                !!!cp ('t403');              } elsif ($_->[1] & SCOPING_EL) {
6908                !!!parse-error (type => 'not closed:'.$_->[1]);                !!!cp ('t405.1');
6909              } else {                last;
               !!!cp ('t404');  
6910              }              }
6911            }            }
6912    
6913            $self->{insertion_mode} = AFTER_BODY_IM;            !!!parse-error (type => 'start tag not allowed',
6914            !!!next-token;                            value => $token->{tag_name}, token => $token);
6915            redo B;            ## NOTE: Ignore the token.
         } else {  
           !!!cp ('t405');  
           !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
           ## Ignore the token  
6916            !!!next-token;            !!!next-token;
6917            redo B;            next B;
6918            } # INSCOPE
6919    
6920            for (@{$self->{open_elements}}) {
6921              unless ($_->[1] & ALL_END_TAG_OPTIONAL_EL) {
6922                !!!cp ('t403');
6923                !!!parse-error (type => 'not closed',
6924                                value => $_->[0]->manakai_local_name,
6925                                token => $token);
6926                last;
6927              } else {
6928                !!!cp ('t404');
6929              }
6930          }          }
6931    
6932            $self->{insertion_mode} = AFTER_BODY_IM;
6933            !!!next-token;
6934            next B;
6935        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
6936          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
6937            ## up-to-date, though it has same effect as speced.
6938            if (@{$self->{open_elements}} > 1 and
6939                $self->{open_elements}->[1]->[1] & BODY_EL) {
6940            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
6941            if ($self->{open_elements}->[-1]->[1] ne 'body') {            unless ($self->{open_elements}->[-1]->[1] & BODY_EL) {
6942              !!!cp ('t406');              !!!cp ('t406');
6943              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!parse-error (type => 'not closed',
6944                                value => $self->{open_elements}->[1]->[0]
6945                                    ->manakai_local_name,
6946                                token => $token);
6947            } else {            } else {
6948              !!!cp ('t407');              !!!cp ('t407');
6949            }            }
6950            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6951            ## reprocess            ## reprocess
6952            redo B;            next B;
6953          } else {          } else {
6954            !!!cp ('t408');            !!!cp ('t408');
6955            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6956            ## Ignore the token            ## Ignore the token
6957            !!!next-token;            !!!next-token;
6958            redo B;            next B;
6959          }          }
6960        } elsif ({        } elsif ({
6961                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6962                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1, listing => 1,
6963                  menu => 1, ol => 1, pre => 1, ul => 1,                  menu => 1, ol => 1, pre => 1, ul => 1,
6964                  dd => 1, dt => 1, li => 1,                  dd => 1, dt => 1, li => 1,
6965                  button => 1, marquee => 1, object => 1,                  applet => 1, button => 1, marquee => 1, object => 1,
6966                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6967          ## has an element in scope          ## has an element in scope
6968          my $i;          my $i;
6969          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6970            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6971            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6972              !!!cp ('t410');              !!!cp ('t410');
6973              $i = $_;              $i = $_;
6974              last INSCOPE;              last INSCOPE;
6975            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
6976              !!!cp ('t411');              !!!cp ('t411');
6977              last INSCOPE;              last INSCOPE;
6978            }            }
# Line 6042  sub _tree_construction_main ($) { Line 6980  sub _tree_construction_main ($) {
6980    
6981          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
6982            !!!cp ('t413');            !!!cp ('t413');
6983            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6984          } else {          } else {
6985            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
6986            while ({            while ({
# Line 6050  sub _tree_construction_main ($) { Line 6988  sub _tree_construction_main ($) {
6988                    dt => ($token->{tag_name} ne 'dt'),                    dt => ($token->{tag_name} ne 'dt'),
6989                    li => ($token->{tag_name} ne 'li'),                    li => ($token->{tag_name} ne 'li'),
6990                    p => 1,                    p => 1,
6991                   }->{$self->{open_elements}->[-1]->[1]}) {                   }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
6992              !!!cp ('t409');              !!!cp ('t409');
6993              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6994            }            }
6995    
6996            ## Step 2.            ## Step 2.
6997            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
6998                      ne $token->{tag_name}) {
6999              !!!cp ('t412');              !!!cp ('t412');
7000              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed',
7001                                value => $self->{open_elements}->[-1]->[0]
7002                                    ->manakai_local_name,
7003                                token => $token);
7004            } else {            } else {
7005              !!!cp ('t414');              !!!cp ('t414');
7006            }            }
# Line 6069  sub _tree_construction_main ($) { Line 7011  sub _tree_construction_main ($) {
7011            ## Step 4.            ## Step 4.
7012            $clear_up_to_marker->()            $clear_up_to_marker->()
7013                if {                if {
7014                  button => 1, marquee => 1, object => 1,                  applet => 1, button => 1, marquee => 1, object => 1,
7015                }->{$token->{tag_name}};                }->{$token->{tag_name}};
7016          }          }
7017          !!!next-token;          !!!next-token;
7018          redo B;          next B;
7019        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
7020          undef $self->{form_element};          undef $self->{form_element};
7021    
# Line 6081  sub _tree_construction_main ($) { Line 7023  sub _tree_construction_main ($) {
7023          my $i;          my $i;
7024          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7025            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7026            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & FORM_EL) {
7027              !!!cp ('t418');              !!!cp ('t418');
7028              $i = $_;              $i = $_;
7029              last INSCOPE;              last INSCOPE;
7030            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7031              !!!cp ('t419');              !!!cp ('t419');
7032              last INSCOPE;              last INSCOPE;
7033            }            }
# Line 6096  sub _tree_construction_main ($) { Line 7035  sub _tree_construction_main ($) {
7035    
7036          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7037            !!!cp ('t421');            !!!cp ('t421');
7038            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7039          } else {          } else {
7040            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7041            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7042              !!!cp ('t417');              !!!cp ('t417');
7043              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7044            }            }
7045                        
7046            ## Step 2.            ## Step 2.
7047            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7048                      ne $token->{tag_name}) {
7049              !!!cp ('t417.1');              !!!cp ('t417.1');
7050              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed',
7051                                value => $self->{open_elements}->[-1]->[0]
7052                                    ->manakai_local_name,
7053                                token => $token);
7054            } else {            } else {
7055              !!!cp ('t420');              !!!cp ('t420');
7056            }              }  
# Line 6119  sub _tree_construction_main ($) { Line 7060  sub _tree_construction_main ($) {
7060          }          }
7061    
7062          !!!next-token;          !!!next-token;
7063          redo B;          next B;
7064        } elsif ({        } elsif ({
7065                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
7066                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 6127  sub _tree_construction_main ($) { Line 7068  sub _tree_construction_main ($) {
7068          my $i;          my $i;
7069          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7070            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7071            if ({            if ($node->[1] & HEADING_EL) {
                h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
               }->{$node->[1]}) {  
7072              !!!cp ('t423');              !!!cp ('t423');
7073              $i = $_;              $i = $_;
7074              last INSCOPE;              last INSCOPE;
7075            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7076              !!!cp ('t424');              !!!cp ('t424');
7077              last INSCOPE;              last INSCOPE;
7078            }            }
# Line 6144  sub _tree_construction_main ($) { Line 7080  sub _tree_construction_main ($) {
7080    
7081          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7082            !!!cp ('t425.1');            !!!cp ('t425.1');
7083            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7084          } else {          } else {
7085            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7086            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7087              !!!cp ('t422');              !!!cp ('t422');
7088              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7089            }            }
7090                        
7091            ## Step 2.            ## Step 2.
7092            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7093                      ne $token->{tag_name}) {
7094              !!!cp ('t425');              !!!cp ('t425');
7095              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7096            } else {            } else {
7097              !!!cp ('t426');              !!!cp ('t426');
7098            }            }
# Line 6167  sub _tree_construction_main ($) { Line 7102  sub _tree_construction_main ($) {
7102          }          }
7103                    
7104          !!!next-token;          !!!next-token;
7105          redo B;          next B;
7106        } elsif ($token->{tag_name} eq 'p') {        } elsif ($token->{tag_name} eq 'p') {
7107          ## has an element in scope          ## has an element in scope
7108          my $i;          my $i;
7109          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7110            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7111            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & P_EL) {
7112              !!!cp ('t410.1');              !!!cp ('t410.1');
7113              $i = $_;              $i = $_;
7114              last INSCOPE;              last INSCOPE;
7115            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7116              !!!cp ('t411.1');              !!!cp ('t411.1');
7117              last INSCOPE;              last INSCOPE;
7118            }            }
7119          } # INSCOPE          } # INSCOPE
7120    
7121          if (defined $i) {          if (defined $i) {
7122            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7123                      ne $token->{tag_name}) {
7124              !!!cp ('t412.1');              !!!cp ('t412.1');
7125              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed',
7126                                value => $self->{open_elements}->[-1]->[0]
7127                                    ->manakai_local_name,
7128                                token => $token);
7129            } else {            } else {
7130              !!!cp ('t414.1');              !!!cp ('t414.1');
7131            }            }
# Line 6197  sub _tree_construction_main ($) { Line 7133  sub _tree_construction_main ($) {
7133            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
7134          } else {          } else {
7135            !!!cp ('t413.1');            !!!cp ('t413.1');
7136            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7137    
7138            !!!cp ('t415.1');            !!!cp ('t415.1');
7139            ## As if <p>, then reprocess the current token            ## As if <p>, then reprocess the current token
7140            my $el;            my $el;
7141            !!!create-element ($el, 'p');            !!!create-element ($el, $HTML_NS, 'p',, $token);
7142            $insert->($el);            $insert->($el);
7143            ## NOTE: Not inserted into |$self->{open_elements}|.            ## NOTE: Not inserted into |$self->{open_elements}|.
7144          }          }
7145    
7146          !!!next-token;          !!!next-token;
7147          redo B;          next B;
7148        } elsif ({        } elsif ({
7149                  a => 1,                  a => 1,
7150                  b => 1, big => 1, em => 1, font => 1, i => 1,                  b => 1, big => 1, em => 1, font => 1, i => 1,
# Line 6216  sub _tree_construction_main ($) { Line 7152  sub _tree_construction_main ($) {
7152                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
7153                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7154          !!!cp ('t427');          !!!cp ('t427');
7155          $formatting_end_tag->($token->{tag_name});          $formatting_end_tag->($token);
7156          redo B;          next B;
7157        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
7158          !!!cp ('t428');          !!!cp ('t428');
7159          !!!parse-error (type => 'unmatched end tag:br');          !!!parse-error (type => 'unmatched end tag:br', token => $token);
7160    
7161          ## As if <br>          ## As if <br>
7162          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7163                    
7164          my $el;          my $el;
7165          !!!create-element ($el, 'br');          !!!create-element ($el, $HTML_NS, 'br',, $token);
7166          $insert->($el);          $insert->($el);
7167                    
7168          ## Ignore the token.          ## Ignore the token.
7169          !!!next-token;          !!!next-token;
7170          redo B;          next B;
7171        } elsif ({        } elsif ({
7172                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7173                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 6245  sub _tree_construction_main ($) { Line 7181  sub _tree_construction_main ($) {
7181                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
7182                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7183          !!!cp ('t429');          !!!cp ('t429');
7184          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7185          ## Ignore the token          ## Ignore the token
7186          !!!next-token;          !!!next-token;
7187          redo B;          next B;
7188                    
7189          ## ISSUE: Issue on HTML5 new elements in spec          ## ISSUE: Issue on HTML5 new elements in spec
7190                    
# Line 6259  sub _tree_construction_main ($) { Line 7195  sub _tree_construction_main ($) {
7195    
7196          ## Step 2          ## Step 2
7197          S2: {          S2: {
7198            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7199              ## Step 1              ## Step 1
7200              ## generate implied end tags              ## generate implied end tags
7201              while ({              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                     dd => 1, dt => 1, li => 1, p => 1,  
                    }->{$self->{open_elements}->[-1]->[1]}) {  
7202                !!!cp ('t430');                !!!cp ('t430');
7203                ## ISSUE: Can this case be reached?                ## ISSUE: Can this case be reached?
7204                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
7205              }              }
7206                    
7207              ## Step 2              ## Step 2
7208              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7209                        ne $token->{tag_name}) {
7210                !!!cp ('t431');                !!!cp ('t431');
7211                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
7212                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
7213                                  value => $self->{open_elements}->[-1]->[0]
7214                                      ->manakai_local_name,
7215                                  token => $token);
7216              } else {              } else {
7217                !!!cp ('t432');                !!!cp ('t432');
7218              }              }
# Line 6286  sub _tree_construction_main ($) { Line 7224  sub _tree_construction_main ($) {
7224              last S2;              last S2;
7225            } else {            } else {
7226              ## Step 3              ## Step 3
7227              if (not $formatting_category->{$node->[1]} and              if (not ($node->[1] & FORMATTING_EL) and
7228                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
7229                  ($special_category->{$node->[1]} or                  ($node->[1] & SPECIAL_EL or
7230                   $scoping_category->{$node->[1]})) {                   $node->[1] & SCOPING_EL)) {
7231                !!!cp ('t433');                !!!cp ('t433');
7232                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7233                ## Ignore the token                ## Ignore the token
7234                !!!next-token;                !!!next-token;
7235                last S2;                last S2;
# Line 6307  sub _tree_construction_main ($) { Line 7245  sub _tree_construction_main ($) {
7245            ## Step 5;            ## Step 5;
7246            redo S2;            redo S2;
7247          } # S2          } # S2
7248          redo B;          next B;
7249        }        }
7250      }      }
7251      redo B;      next B;
7252      } continue { # B
7253        if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
7254          ## NOTE: The code below is executed in cases where it does not have
7255          ## to be, but it it is harmless even in those cases.
7256          ## has an element in scope
7257          INSCOPE: {
7258            for (reverse 0..$#{$self->{open_elements}}) {
7259              my $node = $self->{open_elements}->[$_];
7260              if ($node->[1] & FOREIGN_EL) {
7261                last INSCOPE;
7262              } elsif ($node->[1] & SCOPING_EL) {
7263                last;
7264              }
7265            }
7266            
7267            ## NOTE: No foreign element in scope.
7268            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
7269          } # INSCOPE
7270        }
7271    } # B    } # B
7272    
7273    ## Stop parsing # MUST    ## Stop parsing # MUST
# Line 6356  sub set_inner_html ($$$) { Line 7313  sub set_inner_html ($$$) {
7313    
7314      ## Step 8 # MUST      ## Step 8 # MUST
7315      my $i = 0;      my $i = 0;
7316      my $line = 1;      $p->{line_prev} = $p->{line} = 1;
7317      my $column = 0;      $p->{column_prev} = $p->{column} = 0;
7318      $p->{set_next_char} = sub {      $p->{set_next_char} = sub {
7319        my $self = shift;        my $self = shift;
7320    
# Line 6366  sub set_inner_html ($$$) { Line 7323  sub set_inner_html ($$$) {
7323    
7324        $self->{next_char} = -1 and return if $i >= length $$s;        $self->{next_char} = -1 and return if $i >= length $$s;
7325        $self->{next_char} = ord substr $$s, $i++, 1;        $self->{next_char} = ord substr $$s, $i++, 1;
7326        $column++;  
7327          ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
7328          $p->{column}++;
7329    
7330        if ($self->{next_char} == 0x000A) { # LF        if ($self->{next_char} == 0x000A) { # LF
7331          $line++;          $p->{line}++;
7332          $column = 0;          $p->{column} = 0;
7333          !!!cp ('i1');          !!!cp ('i1');
7334        } elsif ($self->{next_char} == 0x000D) { # CR        } elsif ($self->{next_char} == 0x000D) { # CR
7335          $i++ if substr ($$s, $i, 1) eq "\x0A";          $i++ if substr ($$s, $i, 1) eq "\x0A";
7336          $self->{next_char} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
7337          $line++;          $p->{line}++;
7338          $column = 0;          $p->{column} = 0;
7339          !!!cp ('i2');          !!!cp ('i2');
7340        } elsif ($self->{next_char} > 0x10FFFF) {        } elsif ($self->{next_char} > 0x10FFFF) {
7341          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
# Line 6385  sub set_inner_html ($$$) { Line 7344  sub set_inner_html ($$$) {
7344          !!!cp ('i4');          !!!cp ('i4');
7345          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
7346          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
7347          } elsif ($self->{next_char} <= 0x0008 or
7348                   (0x000E <= $self->{next_char} and
7349                    $self->{next_char} <= 0x001F) or
7350                   (0x007F <= $self->{next_char} and
7351                    $self->{next_char} <= 0x009F) or
7352                   (0xD800 <= $self->{next_char} and
7353                    $self->{next_char} <= 0xDFFF) or
7354                   (0xFDD0 <= $self->{next_char} and
7355                    $self->{next_char} <= 0xFDDF) or
7356                   {
7357                    0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
7358                    0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
7359                    0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
7360                    0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
7361                    0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
7362                    0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
7363                    0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
7364                    0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
7365                    0x10FFFE => 1, 0x10FFFF => 1,
7366                   }->{$self->{next_char}}) {
7367            !!!cp ('i4.1');
7368            !!!parse-error (type => 'control char', level => $self->{must_level});
7369    ## TODO: error type documentation
7370        }        }
7371      };      };
7372      $p->{prev_char} = [-1, -1, -1];      $p->{prev_char} = [-1, -1, -1];
# Line 6392  sub set_inner_html ($$$) { Line 7374  sub set_inner_html ($$$) {
7374            
7375      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
7376        my (%opt) = @_;        my (%opt) = @_;
7377        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";        my $line = $opt{line};
7378          my $column = $opt{column};
7379          if (defined $opt{token} and defined $opt{token}->{line}) {
7380            $line = $opt{token}->{line};
7381            $column = $opt{token}->{column};
7382          }
7383          warn "Parse error ($opt{type}) at line $line column $column\n";
7384      };      };
7385      $p->{parse_error} = sub {      $p->{parse_error} = sub {
7386        $ponerror->(@_, line => $line, column => $column);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
7387      };      };
7388            
7389      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
# Line 6419  sub set_inner_html ($$$) { Line 7407  sub set_inner_html ($$$) {
7407          unless defined $p->{content_model};          unless defined $p->{content_model};
7408          ## ISSUE: What is "the name of the element"? local name?          ## ISSUE: What is "the name of the element"? local name?
7409    
7410      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
7411          ## TODO: Foreign element OK?
7412    
7413      ## Step 3      ## Step 3
7414      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
# Line 6429  sub set_inner_html ($$$) { Line 7418  sub set_inner_html ($$$) {
7418      $doc->append_child ($root);      $doc->append_child ($root);
7419    
7420      ## Step 5 # MUST      ## Step 5 # MUST
7421      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, $el_category->{html}];
7422    
7423      undef $p->{head_element};      undef $p->{head_element};
7424    
# Line 6475  sub set_inner_html ($$$) { Line 7464  sub set_inner_html ($$$) {
7464      ## ISSUE: mutation events?      ## ISSUE: mutation events?
7465    
7466      $p->_terminate_tree_constructor;      $p->_terminate_tree_constructor;
7467    
7468        delete $p->{parse_error}; # delete loop
7469    } else {    } else {
7470      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";
7471    }    }

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.141

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24