/[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.142 by wakaba, Sat May 24 10:32:29 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 2150  sub _get_next_token ($) { Line 2739  sub _get_next_token ($) {
2739          redo A;          redo A;
2740        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
2741          !!!cp (217);          !!!cp (217);
         !!!parse-error (type => 'unclosed DOCTYPE');  
2742    
2743          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2744          ## reconsume          ## reconsume
# Line 2192  sub _get_next_token ($) { Line 2780  sub _get_next_token ($) {
2780          !!!next-input-character;          !!!next-input-character;
2781          redo A;          redo A;
2782        }        }
2783        } elsif ($self->{state} == CDATA_BLOCK_STATE) {
2784          my $s = '';
2785          
2786          my ($l, $c) = ($self->{line}, $self->{column});
2787    
2788          CS: while ($self->{next_char} != -1) {
2789            if ($self->{next_char} == 0x005D) { # ]
2790              !!!next-input-character;
2791              if ($self->{next_char} == 0x005D) { # ]
2792                !!!next-input-character;
2793                MDC: {
2794                  if ($self->{next_char} == 0x003E) { # >
2795                    !!!cp (221.1);
2796                    !!!next-input-character;
2797                    last CS;
2798                  } elsif ($self->{next_char} == 0x005D) { # ]
2799                    !!!cp (221.2);
2800                    $s .= ']';
2801                    !!!next-input-character;
2802                    redo MDC;
2803                  } else {
2804                    !!!cp (221.3);
2805                    $s .= ']]';
2806                    #
2807                  }
2808                } # MDC
2809              } else {
2810                !!!cp (221.4);
2811                $s .= ']';
2812                #
2813              }
2814            } else {
2815              !!!cp (221.5);
2816              #
2817            }
2818            $s .= chr $self->{next_char};
2819            !!!next-input-character;
2820          } # CS
2821    
2822          $self->{state} = DATA_STATE;
2823          ## next-input-character done or EOF, which is reconsumed.
2824    
2825          if (length $s) {
2826            !!!cp (221.6);
2827            !!!emit ({type => CHARACTER_TOKEN, data => $s,
2828                      line => $l, column => $c});
2829          } else {
2830            !!!cp (221.7);
2831          }
2832    
2833          redo A;
2834    
2835          ## ISSUE: "text tokens" in spec.
2836          ## TODO: Streaming support
2837      } else {      } else {
2838        die "$0: $self->{state}: Unknown state";        die "$0: $self->{state}: Unknown state";
2839      }      }
# Line 2203  sub _get_next_token ($) { Line 2845  sub _get_next_token ($) {
2845  sub _tokenize_attempt_to_consume_an_entity ($$$) {  sub _tokenize_attempt_to_consume_an_entity ($$$) {
2846    my ($self, $in_attr, $additional) = @_;    my ($self, $in_attr, $additional) = @_;
2847    
2848      my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
2849    
2850    if ({    if ({
2851         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2852         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 2887  sub _tokenize_attempt_to_consume_an_enti
2887            redo X;            redo X;
2888          } elsif (not defined $code) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2889            !!!cp (1005);            !!!cp (1005);
2890            !!!parse-error (type => 'bare hcro');            !!!parse-error (type => 'bare hcro', line => $l, column => $c);
2891            !!!back-next-input-character ($x_char, $self->{next_char});            !!!back-next-input-character ($x_char, $self->{next_char});
2892            $self->{next_char} = 0x0023; # #            $self->{next_char} = 0x0023; # #
2893            return undef;            return undef;
# Line 2252  sub _tokenize_attempt_to_consume_an_enti Line 2896  sub _tokenize_attempt_to_consume_an_enti
2896            !!!next-input-character;            !!!next-input-character;
2897          } else {          } else {
2898            !!!cp (1007);            !!!cp (1007);
2899            !!!parse-error (type => 'no refc');            !!!parse-error (type => 'no refc', line => $l, column => $c);
2900          }          }
2901    
2902          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2903            !!!cp (1008);            !!!cp (1008);
2904            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);            !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);
2905            $code = 0xFFFD;            $code = 0xFFFD;
2906          } elsif ($code > 0x10FFFF) {          } elsif ($code > 0x10FFFF) {
2907            !!!cp (1009);            !!!cp (1009);
2908            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);            !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);
2909            $code = 0xFFFD;            $code = 0xFFFD;
2910          } elsif ($code == 0x000D) {          } elsif ($code == 0x000D) {
2911            !!!cp (1010);            !!!cp (1010);
2912            !!!parse-error (type => 'CR character reference');            !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2913            $code = 0x000A;            $code = 0x000A;
2914          } elsif (0x80 <= $code and $code <= 0x9F) {          } elsif (0x80 <= $code and $code <= 0x9F) {
2915            !!!cp (1011);            !!!cp (1011);
2916            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);            !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);
2917            $code = $c1_entity_char->{$code};            $code = $c1_entity_char->{$code};
2918          }          }
2919    
2920          return {type => CHARACTER_TOKEN, data => chr $code,          return {type => CHARACTER_TOKEN, data => chr $code,
2921                  has_reference => 1};                  has_reference => 1,
2922                    line => $l, column => $c,
2923                   };
2924        } # X        } # X
2925      } elsif (0x0030 <= $self->{next_char} and      } elsif (0x0030 <= $self->{next_char} and
2926               $self->{next_char} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
# Line 2295  sub _tokenize_attempt_to_consume_an_enti Line 2941  sub _tokenize_attempt_to_consume_an_enti
2941          !!!next-input-character;          !!!next-input-character;
2942        } else {        } else {
2943          !!!cp (1014);          !!!cp (1014);
2944          !!!parse-error (type => 'no refc');          !!!parse-error (type => 'no refc', line => $l, column => $c);
2945        }        }
2946    
2947        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2948          !!!cp (1015);          !!!cp (1015);
2949          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);          !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);
2950          $code = 0xFFFD;          $code = 0xFFFD;
2951        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
2952          !!!cp (1016);          !!!cp (1016);
2953          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);          !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);
2954          $code = 0xFFFD;          $code = 0xFFFD;
2955        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
2956          !!!cp (1017);          !!!cp (1017);
2957          !!!parse-error (type => 'CR character reference');          !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2958          $code = 0x000A;          $code = 0x000A;
2959        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
2960          !!!cp (1018);          !!!cp (1018);
2961          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);          !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);
2962          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
2963        }        }
2964                
2965        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1,
2966                  line => $l, column => $c,
2967                 };
2968      } else {      } else {
2969        !!!cp (1019);        !!!cp (1019);
2970        !!!parse-error (type => 'bare nero');        !!!parse-error (type => 'bare nero', line => $l, column => $c);
2971        !!!back-next-input-character ($self->{next_char});        !!!back-next-input-character ($self->{next_char});
2972        $self->{next_char} = 0x0023; # #        $self->{next_char} = 0x0023; # #
2973        return undef;        return undef;
# Line 2336  sub _tokenize_attempt_to_consume_an_enti Line 2984  sub _tokenize_attempt_to_consume_an_enti
2984      require Whatpm::_NamedEntityList;      require Whatpm::_NamedEntityList;
2985      our $EntityChar;      our $EntityChar;
2986    
2987      while (length $entity_name < 10 and      while (length $entity_name < 30 and
2988             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
2989             ((0x0041 <= $self->{next_char} and # a             ((0x0041 <= $self->{next_char} and # a
2990               $self->{next_char} <= 0x005A) or # x               $self->{next_char} <= 0x005A) or # x
# Line 2369  sub _tokenize_attempt_to_consume_an_enti Line 3017  sub _tokenize_attempt_to_consume_an_enti
3017            
3018      if ($match > 0) {      if ($match > 0) {
3019        !!!cp (1023);        !!!cp (1023);
3020        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
3021                  line => $l, column => $c,
3022                 };
3023      } elsif ($match < 0) {      } elsif ($match < 0) {
3024        !!!parse-error (type => 'no refc');        !!!parse-error (type => 'no refc', line => $l, column => $c);
3025        if ($in_attr and $match < -1) {        if ($in_attr and $match < -1) {
3026          !!!cp (1024);          !!!cp (1024);
3027          return {type => CHARACTER_TOKEN, data => '&'.$entity_name};          return {type => CHARACTER_TOKEN, data => '&'.$entity_name,
3028                    line => $l, column => $c,
3029                   };
3030        } else {        } else {
3031          !!!cp (1025);          !!!cp (1025);
3032          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
3033                    line => $l, column => $c,
3034                   };
3035        }        }
3036      } else {      } else {
3037        !!!cp (1026);        !!!cp (1026);
3038        !!!parse-error (type => 'bare ero');        !!!parse-error (type => 'bare ero', line => $l, column => $c);
3039        ## NOTE: "No characters are consumed" in the spec.        ## NOTE: "No characters are consumed" in the spec.
3040        return {type => CHARACTER_TOKEN, data => '&'.$value};        return {type => CHARACTER_TOKEN, data => '&'.$value,
3041                  line => $l, column => $c,
3042                 };
3043      }      }
3044    } else {    } else {
3045      !!!cp (1027);      !!!cp (1027);
3046      ## no characters are consumed      ## no characters are consumed
3047      !!!parse-error (type => 'bare ero');      !!!parse-error (type => 'bare ero', line => $l, column => $c);
3048      return undef;      return undef;
3049    }    }
3050  } # _tokenize_attempt_to_consume_an_entity  } # _tokenize_attempt_to_consume_an_entity
# Line 2459  sub _tree_construction_initial ($) { Line 3115  sub _tree_construction_initial ($) {
3115            defined $token->{public_identifier} or            defined $token->{public_identifier} or
3116            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
3117          !!!cp ('t1');          !!!cp ('t1');
3118          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
3119        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
3120          !!!cp ('t2');          !!!cp ('t2');
3121          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
3122          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
3123        } else {        } else {
3124          !!!cp ('t3');          !!!cp ('t3');
3125        }        }
3126                
3127        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
3128          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
3129          ## NOTE: Default value for both |public_id| and |system_id| attributes
3130          ## are empty strings, so that we don't set any value in missing cases.
3131        $doctype->public_id ($token->{public_identifier})        $doctype->public_id ($token->{public_identifier})
3132            if defined $token->{public_identifier};            if defined $token->{public_identifier};
3133        $doctype->system_id ($token->{system_identifier})        $doctype->system_id ($token->{system_identifier})
# Line 2602  sub _tree_construction_initial ($) { Line 3260  sub _tree_construction_initial ($) {
3260                END_OF_FILE_TOKEN, 1,                END_OF_FILE_TOKEN, 1,
3261               }->{$token->{type}}) {               }->{$token->{type}}) {
3262        !!!cp ('t14');        !!!cp ('t14');
3263        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
3264        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3265        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
3266        ## reprocess        ## reprocess
3267          !!!ack-later;
3268        return;        return;
3269      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
3270        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 3282  sub _tree_construction_initial ($) {
3282          !!!cp ('t17');          !!!cp ('t17');
3283        }        }
3284    
3285        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
3286        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3287        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
3288        ## reprocess        ## reprocess
# Line 2652  sub _tree_construction_root_element ($) Line 3311  sub _tree_construction_root_element ($)
3311    B: {    B: {
3312        if ($token->{type} == DOCTYPE_TOKEN) {        if ($token->{type} == DOCTYPE_TOKEN) {
3313          !!!cp ('t19');          !!!cp ('t19');
3314          !!!parse-error (type => 'in html:#DOCTYPE');          !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
3315          ## Ignore the token          ## Ignore the token
3316          ## Stay in the insertion mode.          ## Stay in the insertion mode.
3317          !!!next-token;          !!!next-token;
# Line 2686  sub _tree_construction_root_element ($) Line 3345  sub _tree_construction_root_element ($)
3345        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
3346          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
3347            my $root_element;            my $root_element;
3348            !!!create-element ($root_element, $token->{tag_name}, $token->{attributes});            !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
3349            $self->{document}->append_child ($root_element);            $self->{document}->append_child ($root_element);
3350            push @{$self->{open_elements}}, [$root_element, 'html'];            push @{$self->{open_elements}},
3351                  [$root_element, $el_category->{html}];
3352    
3353            if ($token->{attributes}->{manifest}) {            if ($token->{attributes}->{manifest}) {
3354              !!!cp ('t24');              !!!cp ('t24');
3355              $self->{application_cache_selection}              $self->{application_cache_selection}
3356                  ->($token->{attributes}->{manifest}->{value});                  ->($token->{attributes}->{manifest}->{value});
3357              ## ISSUE: No relative reference resolution?              ## ISSUE: Spec is unclear on relative references.
3358                ## According to Hixie (#whatwg 2008-03-19), it should be
3359                ## resolved against the base URI of the document in HTML
3360                ## or xml:base of the element in XHTML.
3361            } else {            } else {
3362              !!!cp ('t25');              !!!cp ('t25');
3363              $self->{application_cache_selection}->(undef);              $self->{application_cache_selection}->(undef);
3364            }            }
3365    
3366              !!!nack ('t25c');
3367    
3368            !!!next-token;            !!!next-token;
3369            return; ## Go to the "before head" insertion mode.            return; ## Go to the "before head" insertion mode.
3370          } else {          } else {
# Line 2716  sub _tree_construction_root_element ($) Line 3381  sub _tree_construction_root_element ($)
3381          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
3382        }        }
3383    
3384      my $root_element; !!!create-element ($root_element, 'html');      my $root_element;
3385        !!!create-element ($root_element, $HTML_NS, 'html',, $token);
3386      $self->{document}->append_child ($root_element);      $self->{document}->append_child ($root_element);
3387      push @{$self->{open_elements}}, [$root_element, 'html'];      push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
3388    
3389      $self->{application_cache_selection}->(undef);      $self->{application_cache_selection}->(undef);
3390    
3391      ## NOTE: Reprocess the token.      ## NOTE: Reprocess the token.
3392        !!!ack-later;
3393      return; ## Go to the "before head" insertion mode.      return; ## Go to the "before head" insertion mode.
3394    
3395      ## ISSUE: There is an issue in the spec      ## ISSUE: There is an issue in the spec
# Line 2746  sub _reset_insertion_mode ($) { Line 3413  sub _reset_insertion_mode ($) {
3413        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
3414          $last = 1;          $last = 1;
3415          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
3416            if ($self->{inner_html_node}->[1] eq 'td' or            !!!cp ('t28');
3417                $self->{inner_html_node}->[1] eq 'th') {            $node = $self->{inner_html_node};
3418              !!!cp ('t27');          } else {
3419              #            die "_reset_insertion_mode: t27";
           } else {  
             !!!cp ('t28');  
             $node = $self->{inner_html_node};  
           }  
3420          }          }
3421        }        }
3422              
3423        ## Step 4..13        ## Step 4..14
3424        my $new_mode = {        my $new_mode;
3425          if ($node->[1] & FOREIGN_EL) {
3426            !!!cp ('t28.1');
3427            ## NOTE: Strictly spaking, the line below only applies to MathML and
3428            ## SVG elements.  Currently the HTML syntax supports only MathML and
3429            ## SVG elements as foreigners.
3430            $new_mode = $self->{insertion_mode} | IN_FOREIGN_CONTENT_IM;
3431            ## ISSUE: What is set as the secondary insertion mode?
3432          } elsif ($node->[1] & TABLE_CELL_EL) {
3433            if ($last) {
3434              !!!cp ('t28.2');
3435              #
3436            } else {
3437              !!!cp ('t28.3');
3438              $new_mode = IN_CELL_IM;
3439            }
3440          } else {
3441            !!!cp ('t28.4');
3442            $new_mode = {
3443                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
3444                        ## NOTE: |option| and |optgroup| do not set                        ## NOTE: |option| and |optgroup| do not set
3445                        ## insertion mode to "in select" by themselves.                        ## insertion mode to "in select" by themselves.
                       td => IN_CELL_IM,  
                       th => IN_CELL_IM,  
3446                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
3447                        tbody => IN_TABLE_BODY_IM,                        tbody => IN_TABLE_BODY_IM,
3448                        thead => IN_TABLE_BODY_IM,                        thead => IN_TABLE_BODY_IM,
# Line 2774  sub _reset_insertion_mode ($) { Line 3453  sub _reset_insertion_mode ($) {
3453                        head => IN_BODY_IM, # not in head!                        head => IN_BODY_IM, # not in head!
3454                        body => IN_BODY_IM,                        body => IN_BODY_IM,
3455                        frameset => IN_FRAMESET_IM,                        frameset => IN_FRAMESET_IM,
3456                       }->{$node->[1]};                       }->{$node->[0]->manakai_local_name};
3457          }
3458        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
3459                
3460        ## Step 14        ## Step 15
3461        if ($node->[1] eq 'html') {        if ($node->[1] & HTML_EL) {
3462          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
3463            !!!cp ('t29');            !!!cp ('t29');
3464            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
# Line 2792  sub _reset_insertion_mode ($) { Line 3472  sub _reset_insertion_mode ($) {
3472          !!!cp ('t31');          !!!cp ('t31');
3473        }        }
3474                
3475        ## Step 15        ## Step 16
3476        $self->{insertion_mode} = IN_BODY_IM and return if $last;        $self->{insertion_mode} = IN_BODY_IM and return if $last;
3477                
3478        ## Step 16        ## Step 17
3479        $i--;        $i--;
3480        $node = $self->{open_elements}->[$i];        $node = $self->{open_elements}->[$i];
3481                
3482        ## Step 17        ## Step 18
3483        redo S3;        redo S3;
3484      } # S3      } # S3
3485    
# Line 2911  sub _tree_construction_main ($) { Line 3591  sub _tree_construction_main ($) {
3591      ## Step 1      ## Step 1
3592      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
3593      my $el;      my $el;
3594      !!!create-element ($el, $start_tag_name, $token->{attributes});      !!!create-element ($el, $HTML_NS, $start_tag_name, $token->{attributes}, $token);
3595    
3596      ## Step 2      ## Step 2
3597      $insert->($el);      $insert->($el);
# Line 2922  sub _tree_construction_main ($) { Line 3602  sub _tree_construction_main ($) {
3602    
3603      ## Step 4      ## Step 4
3604      my $text = '';      my $text = '';
3605        !!!nack ('t40.1');
3606      !!!next-token;      !!!next-token;
3607      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
3608        !!!cp ('t40');        !!!cp ('t40');
# Line 2948  sub _tree_construction_main ($) { Line 3629  sub _tree_construction_main ($) {
3629        ## NOTE: An end-of-file token.        ## NOTE: An end-of-file token.
3630        if ($content_model_flag == CDATA_CONTENT_MODEL) {        if ($content_model_flag == CDATA_CONTENT_MODEL) {
3631          !!!cp ('t43');          !!!cp ('t43');
3632          !!!parse-error (type => 'in CDATA:#'.$token->{type});          !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3633        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
3634          !!!cp ('t44');          !!!cp ('t44');
3635          !!!parse-error (type => 'in RCDATA:#'.$token->{type});          !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
3636        } else {        } else {
3637          die "$0: $content_model_flag in parse_rcdata";          die "$0: $content_model_flag in parse_rcdata";
3638        }        }
# Line 2961  sub _tree_construction_main ($) { Line 3642  sub _tree_construction_main ($) {
3642    
3643    my $script_start_tag = sub () {    my $script_start_tag = sub () {
3644      my $script_el;      my $script_el;
3645      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
3646      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
3647    
3648      $self->{content_model} = CDATA_CONTENT_MODEL;      $self->{content_model} = CDATA_CONTENT_MODEL;
3649      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
3650            
3651      my $text = '';      my $text = '';
3652        !!!nack ('t45.1');
3653      !!!next-token;      !!!next-token;
3654      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
3655        !!!cp ('t45');        !!!cp ('t45');
# Line 2987  sub _tree_construction_main ($) { Line 3669  sub _tree_construction_main ($) {
3669        ## Ignore the token        ## Ignore the token
3670      } else {      } else {
3671        !!!cp ('t48');        !!!cp ('t48');
3672        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3673        ## ISSUE: And ignore?        ## ISSUE: And ignore?
3674        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3675      }      }
# Line 3010  sub _tree_construction_main ($) { Line 3692  sub _tree_construction_main ($) {
3692      !!!next-token;      !!!next-token;
3693    }; # $script_start_tag    }; # $script_start_tag
3694    
3695      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
3696      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
3697      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3698    
3699    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3700      my $tag_name = shift;      my $end_tag_token = shift;
3701        my $tag_name = $end_tag_token->{tag_name};
3702    
3703        ## NOTE: The adoption agency algorithm (AAA).
3704    
3705      FET: {      FET: {
3706        ## Step 1        ## Step 1
3707        my $formatting_element;        my $formatting_element;
3708        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
3709        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3710          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[0] eq '#marker') {
3711              !!!cp ('t52');
3712              last AFE;
3713            } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
3714                         eq $tag_name) {
3715            !!!cp ('t51');            !!!cp ('t51');
3716            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
3717            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
3718            last AFE;            last AFE;
         } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {  
           !!!cp ('t52');  
           last AFE;  
3719          }          }
3720        } # AFE        } # AFE
3721        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3722          !!!cp ('t53');          !!!cp ('t53');
3723          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!parse-error (type => 'unmatched end tag:'.$tag_name, token => $end_tag_token);
3724          ## Ignore the token          ## Ignore the token
3725          !!!next-token;          !!!next-token;
3726          return;          return;
# Line 3047  sub _tree_construction_main ($) { Line 3737  sub _tree_construction_main ($) {
3737              last INSCOPE;              last INSCOPE;
3738            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3739              !!!cp ('t55');              !!!cp ('t55');
3740              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3741                                token => $end_tag_token);
3742              ## Ignore the token              ## Ignore the token
3743              !!!next-token;              !!!next-token;
3744              return;              return;
3745            }            }
3746          } elsif ({          } elsif ($node->[1] & SCOPING_EL) {
                   table => 1, caption => 1, td => 1, th => 1,  
                   button => 1, marquee => 1, object => 1, html => 1,  
                  }->{$node->[1]}) {  
3747            !!!cp ('t56');            !!!cp ('t56');
3748            $in_scope = 0;            $in_scope = 0;
3749          }          }
3750        } # INSCOPE        } # INSCOPE
3751        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3752          !!!cp ('t57');          !!!cp ('t57');
3753          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3754                            token => $end_tag_token);
3755          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3756          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3757          return;          return;
3758        }        }
3759        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3760          !!!cp ('t58');          !!!cp ('t58');
3761          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!parse-error (type => 'not closed',
3762                            value => $self->{open_elements}->[-1]->[0]
3763                                ->manakai_local_name,
3764                            token => $end_tag_token);
3765        }        }
3766                
3767        ## Step 2        ## Step 2
# Line 3077  sub _tree_construction_main ($) { Line 3769  sub _tree_construction_main ($) {
3769        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
3770        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3771          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3772          if (not $formatting_category->{$node->[1]} and          if (not ($node->[1] & FORMATTING_EL) and
3773              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3774              ($special_category->{$node->[1]} or              ($node->[1] & SPECIAL_EL or
3775               $scoping_category->{$node->[1]})) {               $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
3776            !!!cp ('t59');            !!!cp ('t59');
3777            $furthest_block = $node;            $furthest_block = $node;
3778            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
# Line 3166  sub _tree_construction_main ($) { Line 3858  sub _tree_construction_main ($) {
3858        } # S7          } # S7  
3859                
3860        ## Step 8        ## Step 8
3861        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
3862            my $foster_parent_element;
3863            my $next_sibling;
3864            OE: for (reverse 0..$#{$self->{open_elements}}) {
3865              if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
3866                                 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3867                                 if (defined $parent and $parent->node_type == 1) {
3868                                   !!!cp ('t65.1');
3869                                   $foster_parent_element = $parent;
3870                                   $next_sibling = $self->{open_elements}->[$_]->[0];
3871                                 } else {
3872                                   !!!cp ('t65.2');
3873                                   $foster_parent_element
3874                                     = $self->{open_elements}->[$_ - 1]->[0];
3875                                 }
3876                                 last OE;
3877                               }
3878                             } # OE
3879                             $foster_parent_element = $self->{open_elements}->[0]->[0]
3880                               unless defined $foster_parent_element;
3881            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
3882            $open_tables->[-1]->[1] = 1; # tainted
3883          } else {
3884            !!!cp ('t65.3');
3885            $common_ancestor_node->[0]->append_child ($last_node->[0]);
3886          }
3887                
3888        ## Step 9        ## Step 9
3889        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 3212  sub _tree_construction_main ($) { Line 3929  sub _tree_construction_main ($) {
3929      } # FET      } # FET
3930    }; # $formatting_end_tag    }; # $formatting_end_tag
3931    
   ## 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]]];  
   
3932    $insert = my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
3933      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
3934    }; # $insert_to_current    }; # $insert_to_current
3935    
3936    my $insert_to_foster = sub {    my $insert_to_foster = sub {
3937      my $child = shift;      my $child = shift;
3938      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]}) {  
3939        # MUST        # MUST
3940        my $foster_parent_element;        my $foster_parent_element;
3941        my $next_sibling;        my $next_sibling;
3942                           OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3943                             if ($self->{open_elements}->[$_]->[1] eq 'table') {          if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
3944                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3945                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3946                                 !!!cp ('t70');                                 !!!cp ('t70');
# Line 3254  sub _tree_construction_main ($) { Line 3965  sub _tree_construction_main ($) {
3965      }      }
3966    }; # $insert_to_foster    }; # $insert_to_foster
3967    
3968    B: {    B: while (1) {
3969      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
3970        !!!cp ('t73');        !!!cp ('t73');
3971        !!!parse-error (type => 'DOCTYPE in the middle');        !!!parse-error (type => 'DOCTYPE in the middle', token => $token);
3972        ## Ignore the token        ## Ignore the token
3973        ## Stay in the phase        ## Stay in the phase
3974        !!!next-token;        !!!next-token;
3975        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;  
3976      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
3977               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
3978        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3979          !!!cp ('t79');          !!!cp ('t79');
3980          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3981          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
3982        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3983          !!!cp ('t80');          !!!cp ('t80');
3984          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3985          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
3986        } else {        } else {
3987          !!!cp ('t81');          !!!cp ('t81');
3988        }        }
3989    
3990        !!!cp ('t82');        !!!cp ('t82');
3991        !!!parse-error (type => 'not first start tag');        !!!parse-error (type => 'not first start tag', token => $token);
3992        my $top_el = $self->{open_elements}->[0]->[0];        my $top_el = $self->{open_elements}->[0]->[0];
3993        for my $attr_name (keys %{$token->{attributes}}) {        for my $attr_name (keys %{$token->{attributes}}) {
3994          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 3998  sub _tree_construction_main ($) {
3998               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
3999          }          }
4000        }        }
4001          !!!nack ('t84.1');
4002        !!!next-token;        !!!next-token;
4003        redo B;        next B;
4004      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
4005        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
4006        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
# Line 3334  sub _tree_construction_main ($) { Line 4014  sub _tree_construction_main ($) {
4014          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
4015        }        }
4016        !!!next-token;        !!!next-token;
4017        redo B;        next B;
4018      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
4019          if ($token->{type} == CHARACTER_TOKEN) {
4020            !!!cp ('t87.1');
4021            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4022            !!!next-token;
4023            next B;
4024          } elsif ($token->{type} == START_TAG_TOKEN) {
4025            if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
4026                 $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
4027                not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
4028                ($token->{tag_name} eq 'svg' and
4029                 $self->{open_elements}->[-1]->[1] & MML_AXML_EL)) {
4030              ## NOTE: "using the rules for secondary insertion mode"then"continue"
4031              !!!cp ('t87.2');
4032              #
4033            } elsif ({
4034                      b => 1, big => 1, blockquote => 1, body => 1, br => 1,
4035                      center => 1, code => 1, dd => 1, div => 1, dl => 1, em => 1,
4036                      embed => 1, font => 1, h1 => 1, h2 => 1, h3 => 1, ## No h4!
4037                      h5 => 1, h6 => 1, head => 1, hr => 1, i => 1, img => 1,
4038                      li => 1, menu => 1, meta => 1, nobr => 1, p => 1, pre => 1,
4039                      ruby => 1, s => 1, small => 1, span => 1, strong => 1,
4040                      sub => 1, sup => 1, table => 1, tt => 1, u => 1, ul => 1,
4041                      var => 1,
4042                     }->{$token->{tag_name}}) {
4043              !!!cp ('t87.2');
4044              !!!parse-error (type => 'not closed',
4045                              value => $self->{open_elements}->[-1]->[0]
4046                                  ->manakai_local_name,
4047                              token => $token);
4048    
4049              pop @{$self->{open_elements}}
4050                  while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4051    
4052              $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4053              ## Reprocess.
4054              next B;
4055            } else {
4056              my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
4057              my $tag_name = $token->{tag_name};
4058              if ($nsuri eq $SVG_NS) {
4059                $tag_name = {
4060                   altglyph => 'altGlyph',
4061                   altglyphdef => 'altGlyphDef',
4062                   altglyphitem => 'altGlyphItem',
4063                   animatecolor => 'animateColor',
4064                   animatemotion => 'animateMotion',
4065                   animatetransform => 'animateTransform',
4066                   clippath => 'clipPath',
4067                   feblend => 'feBlend',
4068                   fecolormatrix => 'feColorMatrix',
4069                   fecomponenttransfer => 'feComponentTransfer',
4070                   fecomposite => 'feComposite',
4071                   feconvolvematrix => 'feConvolveMatrix',
4072                   fediffuselighting => 'feDiffuseLighting',
4073                   fedisplacementmap => 'feDisplacementMap',
4074                   fedistantlight => 'feDistantLight',
4075                   feflood => 'feFlood',
4076                   fefunca => 'feFuncA',
4077                   fefuncb => 'feFuncB',
4078                   fefuncg => 'feFuncG',
4079                   fefuncr => 'feFuncR',
4080                   fegaussianblur => 'feGaussianBlur',
4081                   feimage => 'feImage',
4082                   femerge => 'feMerge',
4083                   femergenode => 'feMergeNode',
4084                   femorphology => 'feMorphology',
4085                   feoffset => 'feOffset',
4086                   fepointlight => 'fePointLight',
4087                   fespecularlighting => 'feSpecularLighting',
4088                   fespotlight => 'feSpotLight',
4089                   fetile => 'feTile',
4090                   feturbulence => 'feTurbulence',
4091                   foreignobject => 'foreignObject',
4092                   glyphref => 'glyphRef',
4093                   lineargradient => 'linearGradient',
4094                   radialgradient => 'radialGradient',
4095                   #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
4096                   textpath => 'textPath',  
4097                }->{$tag_name} || $tag_name;
4098              }
4099    
4100              ## "adjust SVG attributes" (SVG only) - done in insert-element-f
4101    
4102              ## "adjust foreign attributes" - done in insert-element-f
4103    
4104              !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
4105    
4106              if ($self->{self_closing}) {
4107                pop @{$self->{open_elements}};
4108                !!!ack ('t87.3');
4109              } else {
4110                !!!cp ('t87.4');
4111              }
4112    
4113              !!!next-token;
4114              next B;
4115            }
4116          } elsif ($token->{type} == END_TAG_TOKEN) {
4117            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4118            !!!cp ('t87.5');
4119            #
4120          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4121            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4122            !!!cp ('t87.6');
4123            #
4124            ## TODO: ...
4125          } else {
4126            die "$0: $token->{type}: Unknown token type";        
4127          }
4128        }
4129    
4130        if ($self->{insertion_mode} & HEAD_IMS) {
4131        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4132          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4133            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
# Line 3345  sub _tree_construction_main ($) { Line 4137  sub _tree_construction_main ($) {
4137              !!!cp ('t88.1');              !!!cp ('t88.1');
4138              ## Ignore the token.              ## Ignore the token.
4139              !!!next-token;              !!!next-token;
4140              redo B;              next B;
4141            }            }
4142            unless (length $token->{data}) {            unless (length $token->{data}) {
4143              !!!cp ('t88');              !!!cp ('t88');
4144              !!!next-token;              !!!next-token;
4145              redo B;              next B;
4146            }            }
4147          }          }
4148    
4149          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4150            !!!cp ('t89');            !!!cp ('t89');
4151            ## As if <head>            ## As if <head>
4152            !!!create-element ($self->{head_element}, 'head');            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4153            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4154            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            push @{$self->{open_elements}},
4155                  [$self->{head_element}, $el_category->{head}];
4156    
4157            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4158            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
# Line 3369  sub _tree_construction_main ($) { Line 4162  sub _tree_construction_main ($) {
4162            !!!cp ('t90');            !!!cp ('t90');
4163            ## As if </noscript>            ## As if </noscript>
4164            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4165            !!!parse-error (type => 'in noscript:#character');            !!!parse-error (type => 'in noscript:#character', token => $token);
4166                        
4167            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4168            ## As if </head>            ## As if </head>
# Line 3385  sub _tree_construction_main ($) { Line 4178  sub _tree_construction_main ($) {
4178            !!!cp ('t92');            !!!cp ('t92');
4179          }          }
4180    
4181              ## "after head" insertion mode          ## "after head" insertion mode
4182              ## As if <body>          ## As if <body>
4183              !!!insert-element ('body');          !!!insert-element ('body',, $token);
4184              $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
4185              ## reprocess          ## reprocess
4186              redo B;          next B;
4187            } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4188              if ($token->{tag_name} eq 'head') {          if ($token->{tag_name} eq 'head') {
4189                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4190                  !!!cp ('t93');              !!!cp ('t93');
4191                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});              !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
4192                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              $self->{open_elements}->[-1]->[0]->append_child
4193                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];                  ($self->{head_element});
4194                  $self->{insertion_mode} = IN_HEAD_IM;              push @{$self->{open_elements}},
4195                  !!!next-token;                  [$self->{head_element}, $el_category->{head}];
4196                  redo B;              $self->{insertion_mode} = IN_HEAD_IM;
4197                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {              !!!nack ('t93.1');
4198                  !!!cp ('t94');              !!!next-token;
4199                  #              next B;
4200                } else {            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4201                  !!!cp ('t95');              !!!cp ('t93.2');
4202                  !!!parse-error (type => 'in head:head'); # or in head noscript              !!!parse-error (type => 'after head:head', token => $token); ## TODO: error type
4203                  ## Ignore the token              ## Ignore the token
4204                  !!!next-token;              !!!nack ('t93.3');
4205                  redo B;              !!!next-token;
4206                }              next B;
4207              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {            } else {
4208                !!!cp ('t96');              !!!cp ('t95');
4209                ## As if <head>              !!!parse-error (type => 'in head:head', token => $token); # or in head noscript
4210                !!!create-element ($self->{head_element}, 'head');              ## Ignore the token
4211                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              !!!nack ('t95.1');
4212                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];              !!!next-token;
4213                next B;
4214              }
4215            } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4216              !!!cp ('t96');
4217              ## As if <head>
4218              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4219              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4220              push @{$self->{open_elements}},
4221                  [$self->{head_element}, $el_category->{head}];
4222    
4223                $self->{insertion_mode} = IN_HEAD_IM;            $self->{insertion_mode} = IN_HEAD_IM;
4224                ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4225              } else {          } else {
4226                !!!cp ('t97');            !!!cp ('t97');
4227              }          }
4228    
4229              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
4230                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4231                  !!!cp ('t98');                  !!!cp ('t98');
4232                  ## As if </noscript>                  ## As if </noscript>
4233                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4234                  !!!parse-error (type => 'in noscript:base');                  !!!parse-error (type => 'in noscript:base', token => $token);
4235                                
4236                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4237                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
# Line 3440  sub _tree_construction_main ($) { Line 4242  sub _tree_construction_main ($) {
4242                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4243                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4244                  !!!cp ('t100');                  !!!cp ('t100');
4245                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4246                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4247                        [$self->{head_element}, $el_category->{head}];
4248                } else {                } else {
4249                  !!!cp ('t101');                  !!!cp ('t101');
4250                }                }
4251                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4252                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4253                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4254                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4255                  !!!nack ('t101.1');
4256                !!!next-token;                !!!next-token;
4257                redo B;                next B;
4258              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
4259                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4260                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4261                  !!!cp ('t102');                  !!!cp ('t102');
4262                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4263                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4264                        [$self->{head_element}, $el_category->{head}];
4265                } else {                } else {
4266                  !!!cp ('t103');                  !!!cp ('t103');
4267                }                }
4268                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4269                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4270                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4271                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4272                  !!!ack ('t103.1');
4273                !!!next-token;                !!!next-token;
4274                redo B;                next B;
4275              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
4276                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4277                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4278                  !!!cp ('t104');                  !!!cp ('t104');
4279                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4280                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4281                        [$self->{head_element}, $el_category->{head}];
4282                } else {                } else {
4283                  !!!cp ('t105');                  !!!cp ('t105');
4284                }                }
4285                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4286                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.
4287    
4288                unless ($self->{confident}) {                unless ($self->{confident}) {
4289                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) {
4290                    !!!cp ('t106');                    !!!cp ('t106');
4291                      ## NOTE: Whether the encoding is supported or not is handled
4292                      ## in the {change_encoding} callback.
4293                    $self->{change_encoding}                    $self->{change_encoding}
4294                        ->($self, $token->{attributes}->{charset}->{value});                        ->($self, $token->{attributes}->{charset}->{value},
4295                             $token);
4296                                        
4297                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4298                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
4299                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
4300                                                 ->{has_reference});                                                 ->{has_reference});
4301                  } elsif ($token->{attributes}->{content}) {                  } elsif ($token->{attributes}->{content}) {
                   ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
4302                    if ($token->{attributes}->{content}->{value}                    if ($token->{attributes}->{content}->{value}
4303                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4304                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
4305                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4306                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
4307                      !!!cp ('t107');                      !!!cp ('t107');
4308                        ## NOTE: Whether the encoding is supported or not is handled
4309                        ## in the {change_encoding} callback.
4310                      $self->{change_encoding}                      $self->{change_encoding}
4311                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
4312                               $token);
4313                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4314                          ->set_user_data (manakai_has_reference =>                          ->set_user_data (manakai_has_reference =>
4315                                               $token->{attributes}->{content}                                               $token->{attributes}->{content}
# Line 3525  sub _tree_construction_main ($) { Line 4337  sub _tree_construction_main ($) {
4337    
4338                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4339                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4340                  !!!ack ('t110.1');
4341                !!!next-token;                !!!next-token;
4342                redo B;                next B;
4343              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
4344                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4345                  !!!cp ('t111');                  !!!cp ('t111');
4346                  ## As if </noscript>                  ## As if </noscript>
4347                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4348                  !!!parse-error (type => 'in noscript:title');                  !!!parse-error (type => 'in noscript:title', token => $token);
4349                                
4350                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4351                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4352                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4353                  !!!cp ('t112');                  !!!cp ('t112');
4354                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4355                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4356                        [$self->{head_element}, $el_category->{head}];
4357                } else {                } else {
4358                  !!!cp ('t113');                  !!!cp ('t113');
4359                }                }
# Line 3550  sub _tree_construction_main ($) { Line 4364  sub _tree_construction_main ($) {
4364                $parse_rcdata->(RCDATA_CONTENT_MODEL);                $parse_rcdata->(RCDATA_CONTENT_MODEL);
4365                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4366                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4367                redo B;                next B;
4368              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style') {
4369                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
4370                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
4371                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4372                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4373                  !!!cp ('t114');                  !!!cp ('t114');
4374                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4375                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4376                        [$self->{head_element}, $el_category->{head}];
4377                } else {                } else {
4378                  !!!cp ('t115');                  !!!cp ('t115');
4379                }                }
4380                $parse_rcdata->(CDATA_CONTENT_MODEL);                $parse_rcdata->(CDATA_CONTENT_MODEL);
4381                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4382                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4383                redo B;                next B;
4384              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4385                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
4386                  !!!cp ('t116');                  !!!cp ('t116');
4387                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
4388                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4389                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
4390                    !!!nack ('t116.1');
4391                  !!!next-token;                  !!!next-token;
4392                  redo B;                  next B;
4393                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4394                  !!!cp ('t117');                  !!!cp ('t117');
4395                  !!!parse-error (type => 'in noscript:noscript');                  !!!parse-error (type => 'in noscript:noscript', token => $token);
4396                  ## Ignore the token                  ## Ignore the token
4397                    !!!nack ('t117.1');
4398                  !!!next-token;                  !!!next-token;
4399                  redo B;                  next B;
4400                } else {                } else {
4401                  !!!cp ('t118');                  !!!cp ('t118');
4402                  #                  #
# Line 3589  sub _tree_construction_main ($) { Line 4406  sub _tree_construction_main ($) {
4406                  !!!cp ('t119');                  !!!cp ('t119');
4407                  ## As if </noscript>                  ## As if </noscript>
4408                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4409                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:script', token => $token);
4410                                
4411                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4412                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4413                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4414                  !!!cp ('t120');                  !!!cp ('t120');
4415                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
4416                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4417                        [$self->{head_element}, $el_category->{head}];
4418                } else {                } else {
4419                  !!!cp ('t121');                  !!!cp ('t121');
4420                }                }
# Line 3605  sub _tree_construction_main ($) { Line 4423  sub _tree_construction_main ($) {
4423                $script_start_tag->();                $script_start_tag->();
4424                pop @{$self->{open_elements}} # <head>                pop @{$self->{open_elements}} # <head>
4425                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4426                redo B;                next B;
4427              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
4428                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
4429                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4430                  !!!cp ('t122');                  !!!cp ('t122');
4431                  ## As if </noscript>                  ## As if </noscript>
4432                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4433                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});                  !!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token);
4434                                    
4435                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4436                  ## As if </head>                  ## As if </head>
# Line 3629  sub _tree_construction_main ($) { Line 4447  sub _tree_construction_main ($) {
4447                }                }
4448    
4449                ## "after head" insertion mode                ## "after head" insertion mode
4450                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4451                if ($token->{tag_name} eq 'body') {                if ($token->{tag_name} eq 'body') {
4452                  !!!cp ('t126');                  !!!cp ('t126');
4453                  $self->{insertion_mode} = IN_BODY_IM;                  $self->{insertion_mode} = IN_BODY_IM;
# Line 3639  sub _tree_construction_main ($) { Line 4457  sub _tree_construction_main ($) {
4457                } else {                } else {
4458                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
4459                }                }
4460                  !!!nack ('t127.1');
4461                !!!next-token;                !!!next-token;
4462                redo B;                next B;
4463              } else {              } else {
4464                !!!cp ('t128');                !!!cp ('t128');
4465                #                #
# Line 3650  sub _tree_construction_main ($) { Line 4469  sub _tree_construction_main ($) {
4469                !!!cp ('t129');                !!!cp ('t129');
4470                ## As if </noscript>                ## As if </noscript>
4471                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4472                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
4473                                
4474                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4475                ## As if </head>                ## As if </head>
# Line 3669  sub _tree_construction_main ($) { Line 4488  sub _tree_construction_main ($) {
4488    
4489              ## "after head" insertion mode              ## "after head" insertion mode
4490              ## As if <body>              ## As if <body>
4491              !!!insert-element ('body');              !!!insert-element ('body',, $token);
4492              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4493              ## reprocess              ## reprocess
4494              redo B;              !!!ack-later;
4495                next B;
4496            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
4497              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
4498                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4499                  !!!cp ('t132');                  !!!cp ('t132');
4500                  ## As if <head>                  ## As if <head>
4501                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4502                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4503                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4504                        [$self->{head_element}, $el_category->{head}];
4505    
4506                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4507                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4508                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4509                  !!!next-token;                  !!!next-token;
4510                  redo B;                  next B;
4511                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4512                  !!!cp ('t133');                  !!!cp ('t133');
4513                  ## As if </noscript>                  ## As if </noscript>
4514                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4515                  !!!parse-error (type => 'in noscript:/head');                  !!!parse-error (type => 'in noscript:/head', token => $token);
4516                                    
4517                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4518                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4519                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4520                  !!!next-token;                  !!!next-token;
4521                  redo B;                  next B;
4522                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4523                  !!!cp ('t134');                  !!!cp ('t134');
4524                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4525                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4526                  !!!next-token;                  !!!next-token;
4527                  redo B;                  next B;
4528                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4529                    !!!cp ('t134.1');
4530                    !!!parse-error (type => 'unmatched end tag:head', token => $token);
4531                    ## Ignore the token
4532                    !!!next-token;
4533                    next B;
4534                } else {                } else {
4535                  !!!cp ('t135');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 #  
4536                }                }
4537              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4538                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
# Line 3714  sub _tree_construction_main ($) { Line 4540  sub _tree_construction_main ($) {
4540                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4541                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4542                  !!!next-token;                  !!!next-token;
4543                  redo B;                  next B;
4544                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM or
4545                           $self->{insertion_mode} == AFTER_HEAD_IM) {
4546                  !!!cp ('t137');                  !!!cp ('t137');
4547                  !!!parse-error (type => 'unmatched end tag:noscript');                  !!!parse-error (type => 'unmatched end tag:noscript', token => $token);
4548                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
4549                  !!!next-token;                  !!!next-token;
4550                  redo B;                  next B;
4551                } else {                } else {
4552                  !!!cp ('t138');                  !!!cp ('t138');
4553                  #                  #
# Line 3728  sub _tree_construction_main ($) { Line 4555  sub _tree_construction_main ($) {
4555              } elsif ({              } elsif ({
4556                        body => 1, html => 1,                        body => 1, html => 1,
4557                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4558                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM or
4559                  !!!cp ('t139');                    $self->{insertion_mode} == IN_HEAD_IM or
4560                  ## 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) {  
4561                  !!!cp ('t140');                  !!!cp ('t140');
4562                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4563                  ## Ignore the token                  ## Ignore the token
4564                  !!!next-token;                  !!!next-token;
4565                  redo B;                  next B;
4566                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4567                    !!!cp ('t140.1');
4568                    !!!parse-error (type => 'unmatched end tag:' . $token->{tag_name}, token => $token);
4569                    ## Ignore the token
4570                    !!!next-token;
4571                    next B;
4572                } else {                } else {
4573                  !!!cp ('t141');                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
4574                }                }
4575                              } elsif ($token->{tag_name} eq 'p') {
4576                #                !!!cp ('t142');
4577              } elsif ({                !!!parse-error (type => 'unmatched end tag:p', token => $token);
4578                        p => 1, br => 1,                ## Ignore the token
4579                       }->{$token->{tag_name}}) {                !!!next-token;
4580                  next B;
4581                } elsif ($token->{tag_name} eq 'br') {
4582                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4583                  !!!cp ('t142');                  !!!cp ('t142.2');
4584                  ## As if <head>                  ## (before head) as if <head>, (in head) as if </head>
4585                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4586                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4587                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  $self->{insertion_mode} = AFTER_HEAD_IM;
4588      
4589                    ## Reprocess in the "after head" insertion mode...
4590                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4591                    !!!cp ('t143.2');
4592                    ## As if </head>
4593                    pop @{$self->{open_elements}};
4594                    $self->{insertion_mode} = AFTER_HEAD_IM;
4595      
4596                    ## Reprocess in the "after head" insertion mode...
4597                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4598                    !!!cp ('t143.3');
4599                    ## ISSUE: Two parse errors for <head><noscript></br>
4600                    !!!parse-error (type => 'unmatched end tag:br', token => $token);
4601                    ## As if </noscript>
4602                    pop @{$self->{open_elements}};
4603                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4604    
4605                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4606                } else {                  ## As if </head>
4607                  !!!cp ('t143');                  pop @{$self->{open_elements}};
4608                }                  $self->{insertion_mode} = AFTER_HEAD_IM;
4609    
4610                #                  ## Reprocess in the "after head" insertion mode...
4611              } else {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4612                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                  !!!cp ('t143.4');
                 !!!cp ('t144');  
4613                  #                  #
4614                } else {                } else {
4615                  !!!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;  
4616                }                }
4617    
4618                  ## ISSUE: does not agree with IE7 - it doesn't ignore </br>.
4619                  !!!parse-error (type => 'unmatched end tag:br', token => $token);
4620                  ## Ignore the token
4621                  !!!next-token;
4622                  next B;
4623                } else {
4624                  !!!cp ('t145');
4625                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4626                  ## Ignore the token
4627                  !!!next-token;
4628                  next B;
4629              }              }
4630    
4631              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4632                !!!cp ('t146');                !!!cp ('t146');
4633                ## As if </noscript>                ## As if </noscript>
4634                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4635                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
4636                                
4637                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4638                ## As if </head>                ## As if </head>
# Line 3798  sub _tree_construction_main ($) { Line 4648  sub _tree_construction_main ($) {
4648              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4649  ## ISSUE: This case cannot be reached?  ## ISSUE: This case cannot be reached?
4650                !!!cp ('t148');                !!!cp ('t148');
4651                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4652                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
4653                !!!next-token;                !!!next-token;
4654                redo B;                next B;
4655              } else {              } else {
4656                !!!cp ('t149');                !!!cp ('t149');
4657              }              }
4658    
4659              ## "after head" insertion mode              ## "after head" insertion mode
4660              ## As if <body>              ## As if <body>
4661              !!!insert-element ('body');              !!!insert-element ('body',, $token);
4662              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4663              ## reprocess              ## reprocess
4664              redo B;              next B;
4665            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4666              die "$0: $token->{type}: Unknown token type";          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4667            }            !!!cp ('t149.1');
4668    
4669              ## NOTE: As if <head>
4670              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4671              $self->{open_elements}->[-1]->[0]->append_child
4672                  ($self->{head_element});
4673              #push @{$self->{open_elements}},
4674              #    [$self->{head_element}, $el_category->{head}];
4675              #$self->{insertion_mode} = IN_HEAD_IM;
4676              ## NOTE: Reprocess.
4677    
4678              ## NOTE: As if </head>
4679              #pop @{$self->{open_elements}};
4680              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4681              ## NOTE: Reprocess.
4682              
4683              #
4684            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4685              !!!cp ('t149.2');
4686    
4687              ## NOTE: As if </head>
4688              pop @{$self->{open_elements}};
4689              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4690              ## NOTE: Reprocess.
4691    
4692              #
4693            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4694              !!!cp ('t149.3');
4695    
4696              !!!parse-error (type => 'in noscript:#eof', token => $token);
4697    
4698              ## As if </noscript>
4699              pop @{$self->{open_elements}};
4700              #$self->{insertion_mode} = IN_HEAD_IM;
4701              ## NOTE: Reprocess.
4702    
4703              ## NOTE: As if </head>
4704              pop @{$self->{open_elements}};
4705              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4706              ## NOTE: Reprocess.
4707    
4708              #
4709            } else {
4710              !!!cp ('t149.4');
4711              #
4712            }
4713    
4714            ## NOTE: As if <body>
4715            !!!insert-element ('body',, $token);
4716            $self->{insertion_mode} = IN_BODY_IM;
4717            ## NOTE: Reprocess.
4718            next B;
4719          } else {
4720            die "$0: $token->{type}: Unknown token type";
4721          }
4722    
4723            ## ISSUE: An issue in the spec.            ## ISSUE: An issue in the spec.
4724      } elsif ($self->{insertion_mode} & BODY_IMS) {      } elsif ($self->{insertion_mode} & BODY_IMS) {
# Line 3826  sub _tree_construction_main ($) { Line 4730  sub _tree_construction_main ($) {
4730              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4731    
4732              !!!next-token;              !!!next-token;
4733              redo B;              next B;
4734            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
4735              if ({              if ({
4736                   caption => 1, col => 1, colgroup => 1, tbody => 1,                   caption => 1, col => 1, colgroup => 1, tbody => 1,
# Line 3834  sub _tree_construction_main ($) { Line 4738  sub _tree_construction_main ($) {
4738                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
4739                if ($self->{insertion_mode} == IN_CELL_IM) {                if ($self->{insertion_mode} == IN_CELL_IM) {
4740                  ## have an element in table scope                  ## have an element in table scope
4741                  my $tn;                  for (reverse 0..$#{$self->{open_elements}}) {
                 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
4742                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4743                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] & TABLE_CELL_EL) {
4744                      !!!cp ('t151');                      !!!cp ('t151');
4745                      $tn = $node->[1];  
4746                      last INSCOPE;                      ## Close the cell
4747                    } elsif ({                      !!!back-token; # <x>
4748                              table => 1, html => 1,                      $token = {type => END_TAG_TOKEN,
4749                             }->{$node->[1]}) {                                tag_name => $node->[0]->manakai_local_name,
4750                                  line => $token->{line},
4751                                  column => $token->{column}};
4752                        next B;
4753                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4754                      !!!cp ('t152');                      !!!cp ('t152');
4755                      last INSCOPE;                      ## ISSUE: This case can never be reached, maybe.
4756                        last;
4757                    }                    }
4758                  } # INSCOPE                  }
4759                    unless (defined $tn) {  
4760                      !!!cp ('t153');                  !!!cp ('t153');
4761  ## TODO: This error type is wrong.                  !!!parse-error (type => 'start tag not allowed',
4762                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      value => $token->{tag_name}, token => $token);
4763                      ## Ignore the token                  ## Ignore the token
4764                      !!!next-token;                  !!!nack ('t153.1');
4765                      redo B;                  !!!next-token;
4766                    }                  next B;
                   
                 !!!cp ('t154');  
                 ## Close the cell  
                 !!!back-token; # <?>  
                 $token = {type => END_TAG_TOKEN, tag_name => $tn};  
                 redo B;  
4767                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4768                  !!!parse-error (type => 'not closed:caption');                  !!!parse-error (type => 'not closed:caption', token => $token);
4769                                    
4770                  ## As if </caption>                  ## NOTE: As if </caption>.
4771                  ## have a table element in table scope                  ## have a table element in table scope
4772                  my $i;                  my $i;
4773                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4774                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4775                    if ($node->[1] eq 'caption') {                      my $node = $self->{open_elements}->[$_];
4776                      !!!cp ('t155');                      if ($node->[1] & CAPTION_EL) {
4777                      $i = $_;                        !!!cp ('t155');
4778                      last INSCOPE;                        $i = $_;
4779                    } elsif ({                        last INSCOPE;
4780                              table => 1, html => 1,                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4781                             }->{$node->[1]}) {                        !!!cp ('t156');
4782                      !!!cp ('t156');                        last;
4783                      last INSCOPE;                      }
4784                    }                    }
4785    
4786                      !!!cp ('t157');
4787                      !!!parse-error (type => 'start tag not allowed',
4788                                      value => $token->{tag_name}, token => $token);
4789                      ## Ignore the token
4790                      !!!nack ('t157.1');
4791                      !!!next-token;
4792                      next B;
4793                  } # 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;  
                   }  
4794                                    
4795                  ## generate implied end tags                  ## generate implied end tags
4796                  while ({                  while ($self->{open_elements}->[-1]->[1]
4797                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
4798                    !!!cp ('t158');                    !!!cp ('t158');
4799                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4800                  }                  }
4801    
4802                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
4803                    !!!cp ('t159');                    !!!cp ('t159');
4804                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
4805                                      value => $self->{open_elements}->[-1]->[0]
4806                                          ->manakai_local_name,
4807                                      token => $token);
4808                  } else {                  } else {
4809                    !!!cp ('t160');                    !!!cp ('t160');
4810                  }                  }
# Line 3912  sub _tree_construction_main ($) { Line 4816  sub _tree_construction_main ($) {
4816                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4817                                    
4818                  ## reprocess                  ## reprocess
4819                  redo B;                  !!!ack-later;
4820                    next B;
4821                } else {                } else {
4822                  !!!cp ('t161');                  !!!cp ('t161');
4823                  #                  #
# Line 3928  sub _tree_construction_main ($) { Line 4833  sub _tree_construction_main ($) {
4833                  my $i;                  my $i;
4834                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4835                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4836                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
4837                      !!!cp ('t163');                      !!!cp ('t163');
4838                      $i = $_;                      $i = $_;
4839                      last INSCOPE;                      last INSCOPE;
4840                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
4841                      !!!cp ('t164');                      !!!cp ('t164');
4842                      last INSCOPE;                      last INSCOPE;
4843                    }                    }
4844                  } # INSCOPE                  } # INSCOPE
4845                    unless (defined $i) {                    unless (defined $i) {
4846                      !!!cp ('t165');                      !!!cp ('t165');
4847                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4848                      ## Ignore the token                      ## Ignore the token
4849                      !!!next-token;                      !!!next-token;
4850                      redo B;                      next B;
4851                    }                    }
4852                                    
4853                  ## generate implied end tags                  ## generate implied end tags
4854                  while ({                  while ($self->{open_elements}->[-1]->[1]
4855                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
4856                    !!!cp ('t166');                    !!!cp ('t166');
4857                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4858                  }                  }
4859    
4860                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[0]->manakai_local_name
4861                            ne $token->{tag_name}) {
4862                    !!!cp ('t167');                    !!!cp ('t167');
4863                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
4864                                      value => $self->{open_elements}->[-1]->[0]
4865                                          ->manakai_local_name,
4866                                      token => $token);
4867                  } else {                  } else {
4868                    !!!cp ('t168');                    !!!cp ('t168');
4869                  }                  }
# Line 3969  sub _tree_construction_main ($) { Line 4875  sub _tree_construction_main ($) {
4875                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
4876                                    
4877                  !!!next-token;                  !!!next-token;
4878                  redo B;                  next B;
4879                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4880                  !!!cp ('t169');                  !!!cp ('t169');
4881                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4882                  ## Ignore the token                  ## Ignore the token
4883                  !!!next-token;                  !!!next-token;
4884                  redo B;                  next B;
4885                } else {                } else {
4886                  !!!cp ('t170');                  !!!cp ('t170');
4887                  #                  #
# Line 3984  sub _tree_construction_main ($) { Line 4890  sub _tree_construction_main ($) {
4890                if ($self->{insertion_mode} == IN_CAPTION_IM) {                if ($self->{insertion_mode} == IN_CAPTION_IM) {
4891                  ## have a table element in table scope                  ## have a table element in table scope
4892                  my $i;                  my $i;
4893                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4894                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4895                    if ($node->[1] eq $token->{tag_name}) {                      my $node = $self->{open_elements}->[$_];
4896                      !!!cp ('t171');                      if ($node->[1] & CAPTION_EL) {
4897                      $i = $_;                        !!!cp ('t171');
4898                      last INSCOPE;                        $i = $_;
4899                    } elsif ({                        last INSCOPE;
4900                              table => 1, html => 1,                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4901                             }->{$node->[1]}) {                        !!!cp ('t172');
4902                      !!!cp ('t172');                        last;
4903                      last INSCOPE;                      }
4904                    }                    }
4905    
4906                      !!!cp ('t173');
4907                      !!!parse-error (type => 'unmatched end tag',
4908                                      value => $token->{tag_name}, token => $token);
4909                      ## Ignore the token
4910                      !!!next-token;
4911                      next B;
4912                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!cp ('t173');  
                     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4913                                    
4914                  ## generate implied end tags                  ## generate implied end tags
4915                  while ({                  while ($self->{open_elements}->[-1]->[1]
4916                          dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
                        }->{$self->{open_elements}->[-1]->[1]}) {  
4917                    !!!cp ('t174');                    !!!cp ('t174');
4918                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4919                  }                  }
4920                                    
4921                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
4922                    !!!cp ('t175');                    !!!cp ('t175');
4923                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
4924                                      value => $self->{open_elements}->[-1]->[0]
4925                                          ->manakai_local_name,
4926                                      token => $token);
4927                  } else {                  } else {
4928                    !!!cp ('t176');                    !!!cp ('t176');
4929                  }                  }
# Line 4027  sub _tree_construction_main ($) { Line 4935  sub _tree_construction_main ($) {
4935                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4936                                    
4937                  !!!next-token;                  !!!next-token;
4938                  redo B;                  next B;
4939                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4940                  !!!cp ('t177');                  !!!cp ('t177');
4941                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4942                  ## Ignore the token                  ## Ignore the token
4943                  !!!next-token;                  !!!next-token;
4944                  redo B;                  next B;
4945                } else {                } else {
4946                  !!!cp ('t178');                  !!!cp ('t178');
4947                  #                  #
# Line 4046  sub _tree_construction_main ($) { Line 4954  sub _tree_construction_main ($) {
4954                ## have an element in table scope                ## have an element in table scope
4955                my $i;                my $i;
4956                my $tn;                my $tn;
4957                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: {
4958                  my $node = $self->{open_elements}->[$_];                  for (reverse 0..$#{$self->{open_elements}}) {
4959                  if ($node->[1] eq $token->{tag_name}) {                    my $node = $self->{open_elements}->[$_];
4960                    !!!cp ('t179');                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
4961                    $i = $_;                      !!!cp ('t179');
4962                    last INSCOPE;                      $i = $_;
4963                  } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {  
4964                    !!!cp ('t180');                      ## Close the cell
4965                    $tn = $node->[1];                      !!!back-token; # </x>
4966                    ## NOTE: There is exactly one |td| or |th| element                      $token = {type => END_TAG_TOKEN, tag_name => $tn,
4967                    ## in scope in the stack of open elements by definition.                                line => $token->{line},
4968                  } elsif ({                                column => $token->{column}};
4969                            table => 1, html => 1,                      next B;
4970                           }->{$node->[1]}) {                    } elsif ($node->[1] & TABLE_CELL_EL) {
4971                    !!!cp ('t181');                      !!!cp ('t180');
4972                    last INSCOPE;                      $tn = $node->[0]->manakai_local_name;
4973                        ## NOTE: There is exactly one |td| or |th| element
4974                        ## in scope in the stack of open elements by definition.
4975                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4976                        ## ISSUE: Can this be reached?
4977                        !!!cp ('t181');
4978                        last;
4979                      }
4980                  }                  }
4981                } # INSCOPE  
               unless (defined $i) {  
4982                  !!!cp ('t182');                  !!!cp ('t182');
4983                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag',
4984                        value => $token->{tag_name}, token => $token);
4985                  ## Ignore the token                  ## Ignore the token
4986                  !!!next-token;                  !!!next-token;
4987                  redo B;                  next B;
4988                } else {                } # INSCOPE
                 !!!cp ('t183');  
               }  
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => END_TAG_TOKEN, tag_name => $tn};  
               redo B;  
4989              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
4990                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4991                !!!parse-error (type => 'not closed:caption');                !!!parse-error (type => 'not closed:caption', token => $token);
4992    
4993                ## As if </caption>                ## As if </caption>
4994                ## have a table element in table scope                ## have a table element in table scope
4995                my $i;                my $i;
4996                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4997                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4998                  if ($node->[1] eq 'caption') {                  if ($node->[1] & CAPTION_EL) {
4999                    !!!cp ('t184');                    !!!cp ('t184');
5000                    $i = $_;                    $i = $_;
5001                    last INSCOPE;                    last INSCOPE;
5002                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5003                    !!!cp ('t185');                    !!!cp ('t185');
5004                    last INSCOPE;                    last INSCOPE;
5005                  }                  }
5006                } # INSCOPE                } # INSCOPE
5007                unless (defined $i) {                unless (defined $i) {
5008                  !!!cp ('t186');                  !!!cp ('t186');
5009                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!parse-error (type => 'unmatched end tag:caption', token => $token);
5010                  ## Ignore the token                  ## Ignore the token
5011                  !!!next-token;                  !!!next-token;
5012                  redo B;                  next B;
5013                }                }
5014                                
5015                ## generate implied end tags                ## generate implied end tags
5016                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5017                  !!!cp ('t187');                  !!!cp ('t187');
5018                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5019                }                }
5020    
5021                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5022                  !!!cp ('t188');                  !!!cp ('t188');
5023                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed',
5024                                    value => $self->{open_elements}->[-1]->[0]
5025                                        ->manakai_local_name,
5026                                    token => $token);
5027                } else {                } else {
5028                  !!!cp ('t189');                  !!!cp ('t189');
5029                }                }
# Line 4128  sub _tree_construction_main ($) { Line 5035  sub _tree_construction_main ($) {
5035                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5036    
5037                ## reprocess                ## reprocess
5038                redo B;                next B;
5039              } elsif ({              } elsif ({
5040                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
5041                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5042                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
5043                  !!!cp ('t190');                  !!!cp ('t190');
5044                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5045                  ## Ignore the token                  ## Ignore the token
5046                  !!!next-token;                  !!!next-token;
5047                  redo B;                  next B;
5048                } else {                } else {
5049                  !!!cp ('t191');                  !!!cp ('t191');
5050                  #                  #
# Line 4148  sub _tree_construction_main ($) { Line 5055  sub _tree_construction_main ($) {
5055                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
5056                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5057                !!!cp ('t192');                !!!cp ('t192');
5058                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5059                ## Ignore the token                ## Ignore the token
5060                !!!next-token;                !!!next-token;
5061                redo B;                next B;
5062              } else {              } else {
5063                !!!cp ('t193');                !!!cp ('t193');
5064                #                #
5065              }              }
5066          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5067            for my $entry (@{$self->{open_elements}}) {
5068              unless ($entry->[1] & ALL_END_TAG_OPTIONAL_EL) {
5069                !!!cp ('t75');
5070                !!!parse-error (type => 'in body:#eof', token => $token);
5071                last;
5072              }
5073            }
5074    
5075            ## Stop parsing.
5076            last B;
5077        } else {        } else {
5078          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5079        }        }
# Line 4171  sub _tree_construction_main ($) { Line 5089  sub _tree_construction_main ($) {
5089            unless (length $token->{data}) {            unless (length $token->{data}) {
5090              !!!cp ('t194');              !!!cp ('t194');
5091              !!!next-token;              !!!next-token;
5092              redo B;              next B;
5093            } else {            } else {
5094              !!!cp ('t195');              !!!cp ('t195');
5095            }            }
5096          }          }
5097    
5098              !!!parse-error (type => 'in table:#character');              !!!parse-error (type => 'in table:#character', token => $token);
5099    
5100              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
5101              ## 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 5103  sub _tree_construction_main ($) {
5103              ## result in a new Text node.              ## result in a new Text node.
5104              $reconstruct_active_formatting_elements->($insert_to_foster);              $reconstruct_active_formatting_elements->($insert_to_foster);
5105                            
5106              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]}) {  
5107                # MUST                # MUST
5108                my $foster_parent_element;                my $foster_parent_element;
5109                my $next_sibling;                my $next_sibling;
5110                my $prev_sibling;                my $prev_sibling;
5111                OE: for (reverse 0..$#{$self->{open_elements}}) {                OE: for (reverse 0..$#{$self->{open_elements}}) {
5112                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
5113                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
5114                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
5115                      !!!cp ('t196');                      !!!cp ('t196');
# Line 4229  sub _tree_construction_main ($) { Line 5144  sub _tree_construction_main ($) {
5144          }          }
5145                            
5146          !!!next-token;          !!!next-token;
5147          redo B;          next B;
5148        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5149              if ({              if ({
5150                   tr => ($self->{insertion_mode} != IN_ROW_IM),                   tr => ($self->{insertion_mode} != IN_ROW_IM),
# Line 4237  sub _tree_construction_main ($) { Line 5152  sub _tree_construction_main ($) {
5152                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
5153                if ($self->{insertion_mode} == IN_TABLE_IM) {                if ($self->{insertion_mode} == IN_TABLE_IM) {
5154                  ## Clear back to table context                  ## Clear back to table context
5155                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5156                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5157                    !!!cp ('t201');                    !!!cp ('t201');
5158                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5159                  }                  }
5160                                    
5161                  !!!insert-element ('tbody');                  !!!insert-element ('tbody',, $token);
5162                  $self->{insertion_mode} = IN_TABLE_BODY_IM;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
5163                  ## reprocess in the "in table body" insertion mode...                  ## reprocess in the "in table body" insertion mode...
5164                }                }
# Line 4251  sub _tree_construction_main ($) { Line 5166  sub _tree_construction_main ($) {
5166                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
5167                  unless ($token->{tag_name} eq 'tr') {                  unless ($token->{tag_name} eq 'tr') {
5168                    !!!cp ('t202');                    !!!cp ('t202');
5169                    !!!parse-error (type => 'missing start tag:tr');                    !!!parse-error (type => 'missing start tag:tr', token => $token);
5170                  }                  }
5171                                    
5172                  ## Clear back to table body context                  ## Clear back to table body context
5173                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5174                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5175                    !!!cp ('t203');                    !!!cp ('t203');
5176                    ## ISSUE: Can this case be reached?                    ## ISSUE: Can this case be reached?
5177                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4266  sub _tree_construction_main ($) { Line 5180  sub _tree_construction_main ($) {
5180                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5181                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5182                    !!!cp ('t204');                    !!!cp ('t204');
5183                    !!!insert-element ($token->{tag_name}, $token->{attributes});                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5184                      !!!nack ('t204');
5185                    !!!next-token;                    !!!next-token;
5186                    redo B;                    next B;
5187                  } else {                  } else {
5188                    !!!cp ('t205');                    !!!cp ('t205');
5189                    !!!insert-element ('tr');                    !!!insert-element ('tr',, $token);
5190                    ## reprocess in the "in row" insertion mode                    ## reprocess in the "in row" insertion mode
5191                  }                  }
5192                } else {                } else {
# Line 4279  sub _tree_construction_main ($) { Line 5194  sub _tree_construction_main ($) {
5194                }                }
5195    
5196                ## Clear back to table row context                ## Clear back to table row context
5197                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5198                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5199                  !!!cp ('t207');                  !!!cp ('t207');
5200                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5201                }                }
5202                                
5203                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5204                $self->{insertion_mode} = IN_CELL_IM;                $self->{insertion_mode} = IN_CELL_IM;
5205    
5206                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
5207                                
5208                  !!!nack ('t207.1');
5209                !!!next-token;                !!!next-token;
5210                redo B;                next B;
5211              } elsif ({              } elsif ({
5212                        caption => 1, col => 1, colgroup => 1,                        caption => 1, col => 1, colgroup => 1,
5213                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
# Line 4304  sub _tree_construction_main ($) { Line 5219  sub _tree_construction_main ($) {
5219                  my $i;                  my $i;
5220                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5221                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5222                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5223                      !!!cp ('t208');                      !!!cp ('t208');
5224                      $i = $_;                      $i = $_;
5225                      last INSCOPE;                      last INSCOPE;
5226                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             html => 1,  
   
                             ## NOTE: This element does not appear here, maybe.  
                             table => 1,  
                            }->{$node->[1]}) {  
5227                      !!!cp ('t209');                      !!!cp ('t209');
5228                      last INSCOPE;                      last INSCOPE;
5229                    }                    }
5230                  } # INSCOPE                  } # INSCOPE
5231                  unless (defined $i) {                  unless (defined $i) {
5232                   !!!cp ('t210');                    !!!cp ('t210');
5233  ## TODO: This type is wrong.  ## TODO: This type is wrong.
5234                   !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token);
5235                    ## Ignore the token                    ## Ignore the token
5236                      !!!nack ('t210.1');
5237                    !!!next-token;                    !!!next-token;
5238                    redo B;                    next B;
5239                  }                  }
5240                                    
5241                  ## Clear back to table row context                  ## Clear back to table row context
5242                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5243                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5244                    !!!cp ('t211');                    !!!cp ('t211');
5245                    ## ISSUE: Can this case be reached?                    ## ISSUE: Can this case be reached?
5246                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4341  sub _tree_construction_main ($) { Line 5251  sub _tree_construction_main ($) {
5251                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5252                    !!!cp ('t212');                    !!!cp ('t212');
5253                    ## reprocess                    ## reprocess
5254                    redo B;                    !!!ack-later;
5255                      next B;
5256                  } else {                  } else {
5257                    !!!cp ('t213');                    !!!cp ('t213');
5258                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
# Line 4353  sub _tree_construction_main ($) { Line 5264  sub _tree_construction_main ($) {
5264                  my $i;                  my $i;
5265                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5266                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5267                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5268                      !!!cp ('t214');                      !!!cp ('t214');
5269                      $i = $_;                      $i = $_;
5270                      last INSCOPE;                      last INSCOPE;
5271                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5272                      !!!cp ('t215');                      !!!cp ('t215');
5273                      last INSCOPE;                      last INSCOPE;
5274                    }                    }
# Line 4369  sub _tree_construction_main ($) { Line 5276  sub _tree_construction_main ($) {
5276                  unless (defined $i) {                  unless (defined $i) {
5277                    !!!cp ('t216');                    !!!cp ('t216');
5278  ## TODO: This erorr type ios wrong.  ## TODO: This erorr type ios wrong.
5279                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5280                    ## Ignore the token                    ## Ignore the token
5281                      !!!nack ('t216.1');
5282                    !!!next-token;                    !!!next-token;
5283                    redo B;                    next B;
5284                  }                  }
5285    
5286                  ## Clear back to table body context                  ## Clear back to table body context
5287                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5288                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5289                    !!!cp ('t217');                    !!!cp ('t217');
5290                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5291                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4400  sub _tree_construction_main ($) { Line 5307  sub _tree_construction_main ($) {
5307    
5308                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
5309                  ## Clear back to table context                  ## Clear back to table context
5310                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5311                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5312                    !!!cp ('t219');                    !!!cp ('t219');
5313                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5314                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5315                  }                  }
5316                                    
5317                  !!!insert-element ('colgroup');                  !!!insert-element ('colgroup',, $token);
5318                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
5319                  ## reprocess                  ## reprocess
5320                  redo B;                  !!!ack-later;
5321                    next B;
5322                } elsif ({                } elsif ({
5323                          caption => 1,                          caption => 1,
5324                          colgroup => 1,                          colgroup => 1,
5325                          tbody => 1, tfoot => 1, thead => 1,                          tbody => 1, tfoot => 1, thead => 1,
5326                         }->{$token->{tag_name}}) {                         }->{$token->{tag_name}}) {
5327                  ## Clear back to table context                  ## Clear back to table context
5328                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5329                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5330                    !!!cp ('t220');                    !!!cp ('t220');
5331                    ## ISSUE: Can this state be reached?                    ## ISSUE: Can this state be reached?
5332                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4427  sub _tree_construction_main ($) { Line 5335  sub _tree_construction_main ($) {
5335                  push @$active_formatting_elements, ['#marker', '']                  push @$active_formatting_elements, ['#marker', '']
5336                      if $token->{tag_name} eq 'caption';                      if $token->{tag_name} eq 'caption';
5337                                    
5338                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5339                  $self->{insertion_mode} = {                  $self->{insertion_mode} = {
5340                                             caption => IN_CAPTION_IM,                                             caption => IN_CAPTION_IM,
5341                                             colgroup => IN_COLUMN_GROUP_IM,                                             colgroup => IN_COLUMN_GROUP_IM,
# Line 4436  sub _tree_construction_main ($) { Line 5344  sub _tree_construction_main ($) {
5344                                             thead => IN_TABLE_BODY_IM,                                             thead => IN_TABLE_BODY_IM,
5345                                            }->{$token->{tag_name}};                                            }->{$token->{tag_name}};
5346                  !!!next-token;                  !!!next-token;
5347                  redo B;                  !!!nack ('t220.1');
5348                    next B;
5349                } else {                } else {
5350                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
5351                }                }
5352              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5353                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
5354                                  value => $self->{open_elements}->[-1]->[0]
5355                                      ->manakai_local_name,
5356                                  token => $token);
5357    
5358                ## As if </table>                ## As if </table>
5359                ## have a table element in table scope                ## have a table element in table scope
5360                my $i;                my $i;
5361                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5362                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5363                  if ($node->[1] eq 'table') {                  if ($node->[1] & TABLE_EL) {
5364                    !!!cp ('t221');                    !!!cp ('t221');
5365                    $i = $_;                    $i = $_;
5366                    last INSCOPE;                    last INSCOPE;
5367                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           #table => 1,  
                           html => 1,  
                          }->{$node->[1]}) {  
5368                    !!!cp ('t222');                    !!!cp ('t222');
5369                    last INSCOPE;                    last INSCOPE;
5370                  }                  }
# Line 4463  sub _tree_construction_main ($) { Line 5372  sub _tree_construction_main ($) {
5372                unless (defined $i) {                unless (defined $i) {
5373                  !!!cp ('t223');                  !!!cp ('t223');
5374  ## TODO: The following is wrong, maybe.  ## TODO: The following is wrong, maybe.
5375                  !!!parse-error (type => 'unmatched end tag:table');                  !!!parse-error (type => 'unmatched end tag:table', token => $token);
5376                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
5377                    !!!nack ('t223.1');
5378                  !!!next-token;                  !!!next-token;
5379                  redo B;                  next B;
5380                }                }
5381                                
5382    ## TODO: Followings are removed from the latest spec.
5383                ## generate implied end tags                ## generate implied end tags
5384                while ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                       dd => 1, dt => 1, li => 1, p => 1,  
                      }->{$self->{open_elements}->[-1]->[1]}) {  
5385                  !!!cp ('t224');                  !!!cp ('t224');
5386                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5387                }                }
5388    
5389                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] & TABLE_EL) {
5390                  !!!cp ('t225');                  !!!cp ('t225');
5391  ## ISSUE: Can this case be reached?                  ## NOTE: |<table><tr><table>|
5392                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed',
5393                                    value => $self->{open_elements}->[-1]->[0]
5394                                        ->manakai_local_name,
5395                                    token => $token);
5396                } else {                } else {
5397                  !!!cp ('t226');                  !!!cp ('t226');
5398                }                }
# Line 4490  sub _tree_construction_main ($) { Line 5402  sub _tree_construction_main ($) {
5402    
5403                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5404    
5405                ## reprocess            ## reprocess
5406                redo B;            !!!ack-later;
5407              next B;
5408          } elsif ($token->{tag_name} eq 'style') {          } elsif ($token->{tag_name} eq 'style') {
5409            if (not $open_tables->[-1]->[1]) { # tainted            if (not $open_tables->[-1]->[1]) { # tainted
5410              !!!cp ('t227.8');              !!!cp ('t227.8');
5411              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5412              $parse_rcdata->(CDATA_CONTENT_MODEL);              $parse_rcdata->(CDATA_CONTENT_MODEL);
5413              redo B;              next B;
5414            } else {            } else {
5415              !!!cp ('t227.7');              !!!cp ('t227.7');
5416              #              #
# Line 4507  sub _tree_construction_main ($) { Line 5420  sub _tree_construction_main ($) {
5420              !!!cp ('t227.6');              !!!cp ('t227.6');
5421              ## NOTE: This is a "as if in head" code clone.              ## NOTE: This is a "as if in head" code clone.
5422              $script_start_tag->();              $script_start_tag->();
5423              redo B;              next B;
5424            } else {            } else {
5425              !!!cp ('t227.5');              !!!cp ('t227.5');
5426              #              #
# Line 4518  sub _tree_construction_main ($) { Line 5431  sub _tree_construction_main ($) {
5431                my $type = lc $token->{attributes}->{type}->{value};                my $type = lc $token->{attributes}->{type}->{value};
5432                if ($type eq 'hidden') {                if ($type eq 'hidden') {
5433                  !!!cp ('t227.3');                  !!!cp ('t227.3');
5434                  !!!parse-error (type => 'in table:'.$token->{tag_name});                  !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
5435    
5436                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5437    
5438                  ## TODO: form element pointer                  ## TODO: form element pointer
5439    
5440                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5441    
5442                  !!!next-token;                  !!!next-token;
5443                  redo B;                  !!!ack ('t227.2.1');
5444                    next B;
5445                } else {                } else {
5446                  !!!cp ('t227.2');                  !!!cp ('t227.2');
5447                  #                  #
# Line 4545  sub _tree_construction_main ($) { Line 5459  sub _tree_construction_main ($) {
5459            #            #
5460          }          }
5461    
5462          !!!parse-error (type => 'in table:'.$token->{tag_name});          !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
5463    
5464          $insert = $insert_to_foster;          $insert = $insert_to_foster;
5465          #          #
# Line 4556  sub _tree_construction_main ($) { Line 5470  sub _tree_construction_main ($) {
5470                my $i;                my $i;
5471                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5472                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5473                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_ROW_EL) {
5474                    !!!cp ('t228');                    !!!cp ('t228');
5475                    $i = $_;                    $i = $_;
5476                    last INSCOPE;                    last INSCOPE;
5477                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5478                    !!!cp ('t229');                    !!!cp ('t229');
5479                    last INSCOPE;                    last INSCOPE;
5480                  }                  }
5481                } # INSCOPE                } # INSCOPE
5482                unless (defined $i) {                unless (defined $i) {
5483                  !!!cp ('t230');                  !!!cp ('t230');
5484                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5485                  ## Ignore the token                  ## Ignore the token
5486                    !!!nack ('t230.1');
5487                  !!!next-token;                  !!!next-token;
5488                  redo B;                  next B;
5489                } else {                } else {
5490                  !!!cp ('t232');                  !!!cp ('t232');
5491                }                }
5492    
5493                ## Clear back to table row context                ## Clear back to table row context
5494                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5495                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5496                  !!!cp ('t231');                  !!!cp ('t231');
5497  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5498                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4589  sub _tree_construction_main ($) { Line 5501  sub _tree_construction_main ($) {
5501                pop @{$self->{open_elements}}; # tr                pop @{$self->{open_elements}}; # tr
5502                $self->{insertion_mode} = IN_TABLE_BODY_IM;                $self->{insertion_mode} = IN_TABLE_BODY_IM;
5503                !!!next-token;                !!!next-token;
5504                redo B;                !!!nack ('t231.1');
5505                  next B;
5506              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5507                if ($self->{insertion_mode} == IN_ROW_IM) {                if ($self->{insertion_mode} == IN_ROW_IM) {
5508                  ## As if </tr>                  ## As if </tr>
# Line 4597  sub _tree_construction_main ($) { Line 5510  sub _tree_construction_main ($) {
5510                  my $i;                  my $i;
5511                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5512                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5513                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5514                      !!!cp ('t233');                      !!!cp ('t233');
5515                      $i = $_;                      $i = $_;
5516                      last INSCOPE;                      last INSCOPE;
5517                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5518                      !!!cp ('t234');                      !!!cp ('t234');
5519                      last INSCOPE;                      last INSCOPE;
5520                    }                    }
# Line 4611  sub _tree_construction_main ($) { Line 5522  sub _tree_construction_main ($) {
5522                  unless (defined $i) {                  unless (defined $i) {
5523                    !!!cp ('t235');                    !!!cp ('t235');
5524  ## TODO: The following is wrong.  ## TODO: The following is wrong.
5525                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});                    !!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token);
5526                    ## Ignore the token                    ## Ignore the token
5527                      !!!nack ('t236.1');
5528                    !!!next-token;                    !!!next-token;
5529                    redo B;                    next B;
5530                  }                  }
5531                                    
5532                  ## Clear back to table row context                  ## Clear back to table row context
5533                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5534                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5535                    !!!cp ('t236');                    !!!cp ('t236');
5536  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
5537                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4636  sub _tree_construction_main ($) { Line 5547  sub _tree_construction_main ($) {
5547                  my $i;                  my $i;
5548                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5549                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5550                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
                        tbody => 1, thead => 1, tfoot => 1,  
                       }->{$node->[1]}) {  
5551                      !!!cp ('t237');                      !!!cp ('t237');
5552                      $i = $_;                      $i = $_;
5553                      last INSCOPE;                      last INSCOPE;
5554                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5555                      !!!cp ('t238');                      !!!cp ('t238');
5556                      last INSCOPE;                      last INSCOPE;
5557                    }                    }
5558                  } # INSCOPE                  } # INSCOPE
5559                  unless (defined $i) {                  unless (defined $i) {
5560                    !!!cp ('t239');                    !!!cp ('t239');
5561                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5562                    ## Ignore the token                    ## Ignore the token
5563                      !!!nack ('t239.1');
5564                    !!!next-token;                    !!!next-token;
5565                    redo B;                    next B;
5566                  }                  }
5567                                    
5568                  ## Clear back to table body context                  ## Clear back to table body context
5569                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5570                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5571                    !!!cp ('t240');                    !!!cp ('t240');
5572                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5573                  }                  }
# Line 4686  sub _tree_construction_main ($) { Line 5593  sub _tree_construction_main ($) {
5593                my $i;                my $i;
5594                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5595                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5596                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_EL) {
5597                    !!!cp ('t241');                    !!!cp ('t241');
5598                    $i = $_;                    $i = $_;
5599                    last INSCOPE;                    last INSCOPE;
5600                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5601                    !!!cp ('t242');                    !!!cp ('t242');
5602                    last INSCOPE;                    last INSCOPE;
5603                  }                  }
5604                } # INSCOPE                } # INSCOPE
5605                unless (defined $i) {                unless (defined $i) {
5606                  !!!cp ('t243');                  !!!cp ('t243');
5607                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5608                  ## Ignore the token                  ## Ignore the token
5609                    !!!nack ('t243.1');
5610                  !!!next-token;                  !!!next-token;
5611                  redo B;                  next B;
5612                }                }
5613                                    
5614                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 4711  sub _tree_construction_main ($) { Line 5617  sub _tree_construction_main ($) {
5617                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5618                                
5619                !!!next-token;                !!!next-token;
5620                redo B;                next B;
5621              } elsif ({              } elsif ({
5622                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
5623                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
# Line 4721  sub _tree_construction_main ($) { Line 5627  sub _tree_construction_main ($) {
5627                  my $i;                  my $i;
5628                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5629                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5630                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5631                      !!!cp ('t247');                      !!!cp ('t247');
5632                      $i = $_;                      $i = $_;
5633                      last INSCOPE;                      last INSCOPE;
5634                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5635                      !!!cp ('t248');                      !!!cp ('t248');
5636                      last INSCOPE;                      last INSCOPE;
5637                    }                    }
5638                  } # INSCOPE                  } # INSCOPE
5639                    unless (defined $i) {                    unless (defined $i) {
5640                      !!!cp ('t249');                      !!!cp ('t249');
5641                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5642                      ## Ignore the token                      ## Ignore the token
5643                        !!!nack ('t249.1');
5644                      !!!next-token;                      !!!next-token;
5645                      redo B;                      next B;
5646                    }                    }
5647                                    
5648                  ## As if </tr>                  ## As if </tr>
# Line 4745  sub _tree_construction_main ($) { Line 5650  sub _tree_construction_main ($) {
5650                  my $i;                  my $i;
5651                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5652                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5653                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5654                      !!!cp ('t250');                      !!!cp ('t250');
5655                      $i = $_;                      $i = $_;
5656                      last INSCOPE;                      last INSCOPE;
5657                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
                             table => 1, html => 1,  
                            }->{$node->[1]}) {  
5658                      !!!cp ('t251');                      !!!cp ('t251');
5659                      last INSCOPE;                      last INSCOPE;
5660                    }                    }
5661                  } # INSCOPE                  } # INSCOPE
5662                    unless (defined $i) {                    unless (defined $i) {
5663                      !!!cp ('t252');                      !!!cp ('t252');
5664                      !!!parse-error (type => 'unmatched end tag:tr');                      !!!parse-error (type => 'unmatched end tag:tr', token => $token);
5665                      ## Ignore the token                      ## Ignore the token
5666                        !!!nack ('t252.1');
5667                      !!!next-token;                      !!!next-token;
5668                      redo B;                      next B;
5669                    }                    }
5670                                    
5671                  ## Clear back to table row context                  ## Clear back to table row context
5672                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5673                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
                 }->{$self->{open_elements}->[-1]->[1]}) {  
5674                    !!!cp ('t253');                    !!!cp ('t253');
5675  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
5676                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
# Line 4782  sub _tree_construction_main ($) { Line 5685  sub _tree_construction_main ($) {
5685                my $i;                my $i;
5686                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5687                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5688                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5689                    !!!cp ('t254');                    !!!cp ('t254');
5690                    $i = $_;                    $i = $_;
5691                    last INSCOPE;                    last INSCOPE;
5692                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
5693                    !!!cp ('t255');                    !!!cp ('t255');
5694                    last INSCOPE;                    last INSCOPE;
5695                  }                  }
5696                } # INSCOPE                } # INSCOPE
5697                unless (defined $i) {                unless (defined $i) {
5698                  !!!cp ('t256');                  !!!cp ('t256');
5699                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5700                  ## Ignore the token                  ## Ignore the token
5701                    !!!nack ('t256.1');
5702                  !!!next-token;                  !!!next-token;
5703                  redo B;                  next B;
5704                }                }
5705    
5706                ## Clear back to table body context                ## Clear back to table body context
5707                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5708                  tbody => 1, tfoot => 1, thead => 1, html => 1,                                & TABLE_ROWS_SCOPING_EL)) {
               }->{$self->{open_elements}->[-1]->[1]}) {  
5709                  !!!cp ('t257');                  !!!cp ('t257');
5710  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
5711                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 4812  sub _tree_construction_main ($) { Line 5713  sub _tree_construction_main ($) {
5713    
5714                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5715                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5716                  !!!nack ('t257.1');
5717                !!!next-token;                !!!next-token;
5718                redo B;                next B;
5719              } elsif ({              } elsif ({
5720                        body => 1, caption => 1, col => 1, colgroup => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
5721                        html => 1, td => 1, th => 1,                        html => 1, td => 1, th => 1,
5722                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
5723                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
5724                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5725                !!!cp ('t258');            !!!cp ('t258');
5726                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5727                ## Ignore the token            ## Ignore the token
5728                !!!next-token;            !!!nack ('t258.1');
5729                redo B;             !!!next-token;
5730              next B;
5731          } else {          } else {
5732            !!!cp ('t259');            !!!cp ('t259');
5733            !!!parse-error (type => 'in table:/'.$token->{tag_name});            !!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token);
5734    
5735            $insert = $insert_to_foster;            $insert = $insert_to_foster;
5736            #            #
5737          }          }
5738          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5739            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
5740                    @{$self->{open_elements}} == 1) { # redundant, maybe
5741              !!!parse-error (type => 'in body:#eof', token => $token);
5742              !!!cp ('t259.1');
5743              #
5744            } else {
5745              !!!cp ('t259.2');
5746              #
5747            }
5748    
5749            ## Stop parsing
5750            last B;
5751        } else {        } else {
5752          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5753        }        }
# Line 4842  sub _tree_construction_main ($) { Line 5758  sub _tree_construction_main ($) {
5758                unless (length $token->{data}) {                unless (length $token->{data}) {
5759                  !!!cp ('t260');                  !!!cp ('t260');
5760                  !!!next-token;                  !!!next-token;
5761                  redo B;                  next B;
5762                }                }
5763              }              }
5764                            
# Line 4851  sub _tree_construction_main ($) { Line 5767  sub _tree_construction_main ($) {
5767            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
5768              if ($token->{tag_name} eq 'col') {              if ($token->{tag_name} eq 'col') {
5769                !!!cp ('t262');                !!!cp ('t262');
5770                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5771                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5772                  !!!ack ('t262.1');
5773                !!!next-token;                !!!next-token;
5774                redo B;                next B;
5775              } else {              } else {
5776                !!!cp ('t263');                !!!cp ('t263');
5777                #                #
5778              }              }
5779            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
5780              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
5781                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
5782                  !!!cp ('t264');                  !!!cp ('t264');
5783                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5784                  ## Ignore the token                  ## Ignore the token
5785                  !!!next-token;                  !!!next-token;
5786                  redo B;                  next B;
5787                } else {                } else {
5788                  !!!cp ('t265');                  !!!cp ('t265');
5789                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
5790                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5791                  !!!next-token;                  !!!next-token;
5792                  redo B;                              next B;            
5793                }                }
5794              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
5795                !!!cp ('t266');                !!!cp ('t266');
5796                !!!parse-error (type => 'unmatched end tag:col');                !!!parse-error (type => 'unmatched end tag:col', token => $token);
5797                ## Ignore the token                ## Ignore the token
5798                !!!next-token;                !!!next-token;
5799                redo B;                next B;
5800              } else {              } else {
5801                !!!cp ('t267');                !!!cp ('t267');
5802                #                #
5803              }              }
5804            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5805              die "$0: $token->{type}: Unknown token type";          if ($self->{open_elements}->[-1]->[1] & HTML_EL and
5806            }              @{$self->{open_elements}} == 1) { # redundant, maybe
5807              !!!cp ('t270.2');
5808              ## Stop parsing.
5809              last B;
5810            } else {
5811              ## NOTE: As if </colgroup>.
5812              !!!cp ('t270.1');
5813              pop @{$self->{open_elements}}; # colgroup
5814              $self->{insertion_mode} = IN_TABLE_IM;
5815              ## Reprocess.
5816              next B;
5817            }
5818          } else {
5819            die "$0: $token->{type}: Unknown token type";
5820          }
5821    
5822            ## As if </colgroup>            ## As if </colgroup>
5823            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
5824              !!!cp ('t269');              !!!cp ('t269');
5825              !!!parse-error (type => 'unmatched end tag:colgroup');  ## TODO: Wrong error type?
5826                !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5827              ## Ignore the token              ## Ignore the token
5828                !!!nack ('t269.1');
5829              !!!next-token;              !!!next-token;
5830              redo B;              next B;
5831            } else {            } else {
5832              !!!cp ('t270');              !!!cp ('t270');
5833              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
5834              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
5835                !!!ack-later;
5836              ## reprocess              ## reprocess
5837              redo B;              next B;
5838            }            }
5839      } elsif ($self->{insertion_mode} == IN_SELECT_IM) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
5840        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
5841          !!!cp ('t271');          !!!cp ('t271');
5842          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5843          !!!next-token;          !!!next-token;
5844          redo B;          next B;
5845        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5846              if ($token->{tag_name} eq 'option') {          if ($token->{tag_name} eq 'option') {
5847                if ($self->{open_elements}->[-1]->[1] eq 'option') {            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5848                  !!!cp ('t272');              !!!cp ('t272');
5849                  ## As if </option>              ## As if </option>
5850                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5851                } else {            } else {
5852                  !!!cp ('t273');              !!!cp ('t273');
5853                }            }
5854    
5855                !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5856                !!!next-token;            !!!nack ('t273.1');
5857                redo B;            !!!next-token;
5858              } elsif ($token->{tag_name} eq 'optgroup') {            next B;
5859                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'optgroup') {
5860                  !!!cp ('t274');            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5861                  ## As if </option>              !!!cp ('t274');
5862                  pop @{$self->{open_elements}};              ## As if </option>
5863                } else {              pop @{$self->{open_elements}};
5864                  !!!cp ('t275');            } else {
5865                }              !!!cp ('t275');
5866              }
5867    
5868                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            if ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
5869                  !!!cp ('t276');              !!!cp ('t276');
5870                  ## As if </optgroup>              ## As if </optgroup>
5871                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5872                } else {            } else {
5873                  !!!cp ('t277');              !!!cp ('t277');
5874                }            }
5875    
5876                !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5877                !!!next-token;            !!!nack ('t277.1');
5878                redo B;            !!!next-token;
5879              } elsif ($token->{tag_name} eq 'select') {            next B;
5880  ## TODO: The type below is not good - <select> is replaced by </select>          } elsif ($token->{tag_name} eq 'select' or
5881                !!!parse-error (type => 'not closed:select');                   $token->{tag_name} eq 'input' or
5882                ## As if </select> instead                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5883                ## have an element in table scope                    {
5884                my $i;                     caption => 1, table => 1,
5885                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                     tbody => 1, tfoot => 1, thead => 1,
5886                  my $node = $self->{open_elements}->[$_];                     tr => 1, td => 1, th => 1,
5887                  if ($node->[1] eq $token->{tag_name}) {                    }->{$token->{tag_name}})) {
5888                    !!!cp ('t278');            ## TODO: The type below is not good - <select> is replaced by </select>
5889                    $i = $_;            !!!parse-error (type => 'not closed:select', token => $token);
5890                    last INSCOPE;            ## NOTE: As if the token were </select> (<select> case) or
5891                  } elsif ({            ## as if there were </select> (otherwise).
5892                            table => 1, html => 1,            ## have an element in table scope
5893                           }->{$node->[1]}) {            my $i;
5894                    !!!cp ('t279');            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5895                    last INSCOPE;              my $node = $self->{open_elements}->[$_];
5896                  }              if ($node->[1] & SELECT_EL) {
5897                } # INSCOPE                !!!cp ('t278');
5898                unless (defined $i) {                $i = $_;
5899                  !!!cp ('t280');                last INSCOPE;
5900                  !!!parse-error (type => 'unmatched end tag:select');              } elsif ($node->[1] & TABLE_SCOPING_EL) {
5901                  ## Ignore the token                !!!cp ('t279');
5902                  !!!next-token;                last INSCOPE;
5903                  redo B;              }
5904                }            } # INSCOPE
5905              unless (defined $i) {
5906                !!!cp ('t280');
5907                !!!parse-error (type => 'unmatched end tag:select', token => $token);
5908                ## Ignore the token
5909                !!!nack ('t280.1');
5910                !!!next-token;
5911                next B;
5912              }
5913                                
5914                !!!cp ('t281');            !!!cp ('t281');
5915                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
5916    
5917                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
5918    
5919                !!!next-token;            if ($token->{tag_name} eq 'select') {
5920                redo B;              !!!nack ('t281.2');
5921                !!!next-token;
5922                next B;
5923              } else {
5924                !!!cp ('t281.1');
5925                !!!ack-later;
5926                ## Reprocess the token.
5927                next B;
5928              }
5929          } else {          } else {
5930            !!!cp ('t282');            !!!cp ('t282');
5931            !!!parse-error (type => 'in select:'.$token->{tag_name});            !!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token);
5932            ## Ignore the token            ## Ignore the token
5933              !!!nack ('t282.1');
5934            !!!next-token;            !!!next-token;
5935            redo B;            next B;
5936          }          }
5937        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5938              if ($token->{tag_name} eq 'optgroup') {          if ($token->{tag_name} eq 'optgroup') {
5939                if ($self->{open_elements}->[-1]->[1] eq 'option' and            if ($self->{open_elements}->[-1]->[1] & OPTION_EL and
5940                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                $self->{open_elements}->[-2]->[1] & OPTGROUP_EL) {
5941                  !!!cp ('t283');              !!!cp ('t283');
5942                  ## As if </option>              ## As if </option>
5943                  splice @{$self->{open_elements}}, -2;              splice @{$self->{open_elements}}, -2;
5944                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            } elsif ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
5945                  !!!cp ('t284');              !!!cp ('t284');
5946                  pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5947                } else {            } else {
5948                  !!!cp ('t285');              !!!cp ('t285');
5949                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5950                  ## Ignore the token              ## Ignore the token
5951                }            }
5952                !!!next-token;            !!!nack ('t285.1');
5953                redo B;            !!!next-token;
5954              } elsif ($token->{tag_name} eq 'option') {            next B;
5955                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'option') {
5956                  !!!cp ('t286');            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5957                  pop @{$self->{open_elements}};              !!!cp ('t286');
5958                } else {              pop @{$self->{open_elements}};
5959                  !!!cp ('t287');            } else {
5960                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t287');
5961                  ## Ignore the token              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5962                }              ## Ignore the token
5963                !!!next-token;            }
5964                redo B;            !!!nack ('t287.1');
5965              } elsif ($token->{tag_name} eq 'select') {            !!!next-token;
5966                ## have an element in table scope            next B;
5967                my $i;          } elsif ($token->{tag_name} eq 'select') {
5968                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            ## have an element in table scope
5969                  my $node = $self->{open_elements}->[$_];            my $i;
5970                  if ($node->[1] eq $token->{tag_name}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5971                    !!!cp ('t288');              my $node = $self->{open_elements}->[$_];
5972                    $i = $_;              if ($node->[1] & SELECT_EL) {
5973                    last INSCOPE;                !!!cp ('t288');
5974                  } elsif ({                $i = $_;
5975                            table => 1, html => 1,                last INSCOPE;
5976                           }->{$node->[1]}) {              } elsif ($node->[1] & TABLE_SCOPING_EL) {
5977                    !!!cp ('t289');                !!!cp ('t289');
5978                    last INSCOPE;                last INSCOPE;
5979                  }              }
5980                } # INSCOPE            } # INSCOPE
5981                unless (defined $i) {            unless (defined $i) {
5982                  !!!cp ('t290');              !!!cp ('t290');
5983                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5984                  ## Ignore the token              ## Ignore the token
5985                  !!!next-token;              !!!nack ('t290.1');
5986                  redo B;              !!!next-token;
5987                }              next B;
5988              }
5989                                
5990                !!!cp ('t291');            !!!cp ('t291');
5991                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
5992    
5993                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
5994    
5995                !!!next-token;            !!!nack ('t291.1');
5996                redo B;            !!!next-token;
5997              } elsif ({            next B;
5998                        caption => 1, table => 1, tbody => 1,          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5999                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                   {
6000                       }->{$token->{tag_name}}) {                    caption => 1, table => 1, tbody => 1,
6001                      tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
6002                     }->{$token->{tag_name}}) {
6003  ## TODO: The following is wrong?  ## TODO: The following is wrong?
6004                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6005                                
6006                ## have an element in table scope            ## have an element in table scope
6007                my $i;            my $i;
6008                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6009                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6010                  if ($node->[1] eq $token->{tag_name}) {              if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6011                    !!!cp ('t292');                !!!cp ('t292');
6012                    $i = $_;                $i = $_;
6013                    last INSCOPE;                last INSCOPE;
6014                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6015                            table => 1, html => 1,                !!!cp ('t293');
6016                           }->{$node->[1]}) {                last INSCOPE;
6017                    !!!cp ('t293');              }
6018                    last INSCOPE;            } # INSCOPE
6019                  }            unless (defined $i) {
6020                } # INSCOPE              !!!cp ('t294');
6021                unless (defined $i) {              ## Ignore the token
6022                  !!!cp ('t294');              !!!nack ('t294.1');
6023                  ## Ignore the token              !!!next-token;
6024                  !!!next-token;              next B;
6025                  redo B;            }
               }  
6026                                
6027                ## As if </select>            ## As if </select>
6028                ## have an element in table scope            ## have an element in table scope
6029                undef $i;            undef $i;
6030                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6031                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6032                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6033                    !!!cp ('t295');                !!!cp ('t295');
6034                    $i = $_;                $i = $_;
6035                    last INSCOPE;                last INSCOPE;
6036                  } elsif ({              } elsif ($node->[1] & TABLE_SCOPING_EL) {
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
6037  ## ISSUE: Can this state be reached?  ## ISSUE: Can this state be reached?
6038                    !!!cp ('t296');                !!!cp ('t296');
6039                    last INSCOPE;                last INSCOPE;
6040                  }              }
6041                } # INSCOPE            } # INSCOPE
6042                unless (defined $i) {            unless (defined $i) {
6043                  !!!cp ('t297');              !!!cp ('t297');
6044  ## TODO: The following error type is correct?  ## TODO: The following error type is correct?
6045                  !!!parse-error (type => 'unmatched end tag:select');              !!!parse-error (type => 'unmatched end tag:select', token => $token);
6046                  ## Ignore the </select> token              ## Ignore the </select> token
6047                  !!!next-token; ## TODO: ok?              !!!nack ('t297.1');
6048                  redo B;              !!!next-token; ## TODO: ok?
6049                }              next B;
6050              }
6051                                
6052                !!!cp ('t298');            !!!cp ('t298');
6053                splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6054    
6055                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6056    
6057                ## reprocess            !!!ack-later;
6058                redo B;            ## reprocess
6059              next B;
6060          } else {          } else {
6061            !!!cp ('t299');            !!!cp ('t299');
6062            !!!parse-error (type => 'in select:/'.$token->{tag_name});            !!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token);
6063            ## Ignore the token            ## Ignore the token
6064              !!!nack ('t299.3');
6065            !!!next-token;            !!!next-token;
6066            redo B;            next B;
6067          }          }
6068          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6069            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6070                    @{$self->{open_elements}} == 1) { # redundant, maybe
6071              !!!cp ('t299.1');
6072              !!!parse-error (type => 'in body:#eof', token => $token);
6073            } else {
6074              !!!cp ('t299.2');
6075            }
6076    
6077            ## Stop parsing.
6078            last B;
6079        } else {        } else {
6080          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6081        }        }
# Line 5125  sub _tree_construction_main ($) { Line 6091  sub _tree_construction_main ($) {
6091            unless (length $token->{data}) {            unless (length $token->{data}) {
6092              !!!cp ('t300');              !!!cp ('t300');
6093              !!!next-token;              !!!next-token;
6094              redo B;              next B;
6095            }            }
6096          }          }
6097                    
6098          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6099            !!!cp ('t301');            !!!cp ('t301');
6100            !!!parse-error (type => 'after html:#character');            !!!parse-error (type => 'after html:#character', token => $token);
6101    
6102            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6103          } else {          } else {
# Line 5139  sub _tree_construction_main ($) { Line 6105  sub _tree_construction_main ($) {
6105          }          }
6106                    
6107          ## "after body" insertion mode          ## "after body" insertion mode
6108          !!!parse-error (type => 'after body:#character');          !!!parse-error (type => 'after body:#character', token => $token);
6109    
6110          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6111          ## reprocess          ## reprocess
6112          redo B;          next B;
6113        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6114          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6115            !!!cp ('t303');            !!!cp ('t303');
6116            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
6117                        
6118            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
6119          } else {          } else {
# Line 5155  sub _tree_construction_main ($) { Line 6121  sub _tree_construction_main ($) {
6121          }          }
6122    
6123          ## "after body" insertion mode          ## "after body" insertion mode
6124          !!!parse-error (type => 'after body:'.$token->{tag_name});          !!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token);
6125    
6126          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6127            !!!ack-later;
6128          ## reprocess          ## reprocess
6129          redo B;          next B;
6130        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6131          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6132            !!!cp ('t305');            !!!cp ('t305');
6133            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
6134                        
6135            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6136            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
# Line 5175  sub _tree_construction_main ($) { Line 6142  sub _tree_construction_main ($) {
6142          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
6143            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
6144              !!!cp ('t307');              !!!cp ('t307');
6145              !!!parse-error (type => 'unmatched end tag:html');              !!!parse-error (type => 'unmatched end tag:html', token => $token);
6146              ## Ignore the token              ## Ignore the token
6147              !!!next-token;              !!!next-token;
6148              redo B;              next B;
6149            } else {            } else {
6150              !!!cp ('t308');              !!!cp ('t308');
6151              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
6152              !!!next-token;              !!!next-token;
6153              redo B;              next B;
6154            }            }
6155          } else {          } else {
6156            !!!cp ('t309');            !!!cp ('t309');
6157            !!!parse-error (type => 'after body:/'.$token->{tag_name});            !!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token);
6158    
6159            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
6160            ## reprocess            ## reprocess
6161            redo B;            next B;
6162          }          }
6163          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6164            !!!cp ('t309.2');
6165            ## Stop parsing
6166            last B;
6167        } else {        } else {
6168          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6169        }        }
# Line 5204  sub _tree_construction_main ($) { Line 6175  sub _tree_construction_main ($) {
6175            unless (length $token->{data}) {            unless (length $token->{data}) {
6176              !!!cp ('t310');              !!!cp ('t310');
6177              !!!next-token;              !!!next-token;
6178              redo B;              next B;
6179            }            }
6180          }          }
6181                    
6182          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
6183            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6184              !!!cp ('t311');              !!!cp ('t311');
6185              !!!parse-error (type => 'in frameset:#character');              !!!parse-error (type => 'in frameset:#character', token => $token);
6186            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6187              !!!cp ('t312');              !!!cp ('t312');
6188              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
6189            } else { # "after html frameset"            } else { # "after html frameset"
6190              !!!cp ('t313');              !!!cp ('t313');
6191              !!!parse-error (type => 'after html:#character');              !!!parse-error (type => 'after html:#character', token => $token);
6192    
6193              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6194              ## Reprocess in the "after frameset" insertion mode.              ## Reprocess in the "after frameset" insertion mode.
6195              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
6196            }            }
6197                        
6198            ## Ignore the token.            ## Ignore the token.
# Line 5232  sub _tree_construction_main ($) { Line 6203  sub _tree_construction_main ($) {
6203              !!!cp ('t315');              !!!cp ('t315');
6204              !!!next-token;              !!!next-token;
6205            }            }
6206            redo B;            next B;
6207          }          }
6208                    
6209          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
6210        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6211          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
6212            !!!cp ('t316');            !!!cp ('t316');
6213            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
6214    
6215            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
6216            ## Process in the "after frameset" insertion mode.            ## Process in the "after frameset" insertion mode.
# Line 5250  sub _tree_construction_main ($) { Line 6221  sub _tree_construction_main ($) {
6221          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6222              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6223            !!!cp ('t318');            !!!cp ('t318');
6224            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6225              !!!nack ('t318.1');
6226            !!!next-token;            !!!next-token;
6227            redo B;            next B;
6228          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
6229                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
6230            !!!cp ('t319');            !!!cp ('t319');
6231            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6232            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6233              !!!ack ('t319.1');
6234            !!!next-token;            !!!next-token;
6235            redo B;            next B;
6236          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
6237            !!!cp ('t320');            !!!cp ('t320');
6238            ## NOTE: As if in body.            ## NOTE: As if in body.
6239            $parse_rcdata->(CDATA_CONTENT_MODEL);            $parse_rcdata->(CDATA_CONTENT_MODEL);
6240            redo B;            next B;
6241          } else {          } else {
6242            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6243              !!!cp ('t321');              !!!cp ('t321');
6244              !!!parse-error (type => 'in frameset:'.$token->{tag_name});              !!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token);
6245            } else {            } else {
6246              !!!cp ('t322');              !!!cp ('t322');
6247              !!!parse-error (type => 'after frameset:'.$token->{tag_name});              !!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token);
6248            }            }
6249            ## Ignore the token            ## Ignore the token
6250              !!!nack ('t322.1');
6251            !!!next-token;            !!!next-token;
6252            redo B;            next B;
6253          }          }
6254        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6255          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
6256            !!!cp ('t323');            !!!cp ('t323');
6257            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
6258    
6259            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
6260            ## Process in the "after frameset" insertion mode.            ## Process in the "after frameset" insertion mode.
# Line 5290  sub _tree_construction_main ($) { Line 6264  sub _tree_construction_main ($) {
6264    
6265          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6266              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6267            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6268                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
6269              !!!cp ('t325');              !!!cp ('t325');
6270              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6271              ## Ignore the token              ## Ignore the token
6272              !!!next-token;              !!!next-token;
6273            } else {            } else {
# Line 5303  sub _tree_construction_main ($) { Line 6277  sub _tree_construction_main ($) {
6277            }            }
6278    
6279            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
6280                $self->{open_elements}->[-1]->[1] ne 'frameset') {                not ($self->{open_elements}->[-1]->[1] & FRAMESET_EL)) {
6281              !!!cp ('t327');              !!!cp ('t327');
6282              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6283            } else {            } else {
6284              !!!cp ('t328');              !!!cp ('t328');
6285            }            }
6286            redo B;            next B;
6287          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
6288                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
6289            !!!cp ('t329');            !!!cp ('t329');
6290            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
6291            !!!next-token;            !!!next-token;
6292            redo B;            next B;
6293          } else {          } else {
6294            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6295              !!!cp ('t330');              !!!cp ('t330');
6296              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});              !!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token);
6297            } else {            } else {
6298              !!!cp ('t331');              !!!cp ('t331');
6299              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});              !!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token);
6300            }            }
6301            ## Ignore the token            ## Ignore the token
6302            !!!next-token;            !!!next-token;
6303            redo B;            next B;
6304            }
6305          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6306            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6307                    @{$self->{open_elements}} == 1) { # redundant, maybe
6308              !!!cp ('t331.1');
6309              !!!parse-error (type => 'in body:#eof', token => $token);
6310            } else {
6311              !!!cp ('t331.2');
6312          }          }
6313            
6314            ## Stop parsing
6315            last B;
6316        } else {        } else {
6317          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6318        }        }
# Line 5343  sub _tree_construction_main ($) { Line 6328  sub _tree_construction_main ($) {
6328          !!!cp ('t332');          !!!cp ('t332');
6329          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6330          $script_start_tag->();          $script_start_tag->();
6331          redo B;          next B;
6332        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
6333          !!!cp ('t333');          !!!cp ('t333');
6334          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6335          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
6336          redo B;          next B;
6337        } elsif ({        } elsif ({
6338                  base => 1, link => 1,                  base => 1, link => 1,
6339                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6340          !!!cp ('t334');          !!!cp ('t334');
6341          ## 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
6342          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6343          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
6344            !!!ack ('t334.1');
6345          !!!next-token;          !!!next-token;
6346          redo B;          next B;
6347        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
6348          ## 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
6349          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6350          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.
6351    
6352          unless ($self->{confident}) {          unless ($self->{confident}) {
6353            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) {
6354              !!!cp ('t335');              !!!cp ('t335');
6355                ## NOTE: Whether the encoding is supported or not is handled
6356                ## in the {change_encoding} callback.
6357              $self->{change_encoding}              $self->{change_encoding}
6358                  ->($self, $token->{attributes}->{charset}->{value});                  ->($self, $token->{attributes}->{charset}->{value}, $token);
6359                            
6360              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
6361                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
6362                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
6363                                           ->{has_reference});                                           ->{has_reference});
6364            } elsif ($token->{attributes}->{content}) {            } elsif ($token->{attributes}->{content}) {
             ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
6365              if ($token->{attributes}->{content}->{value}              if ($token->{attributes}->{content}->{value}
6366                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
6367                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
6368                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
6369                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
6370                !!!cp ('t336');                !!!cp ('t336');
6371                  ## NOTE: Whether the encoding is supported or not is handled
6372                  ## in the {change_encoding} callback.
6373                $self->{change_encoding}                $self->{change_encoding}
6374                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
6375                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
6376                    ->set_user_data (manakai_has_reference =>                    ->set_user_data (manakai_has_reference =>
6377                                         $token->{attributes}->{content}                                         $token->{attributes}->{content}
# Line 5406  sub _tree_construction_main ($) { Line 6395  sub _tree_construction_main ($) {
6395            }            }
6396          }          }
6397    
6398            !!!ack ('t338.1');
6399          !!!next-token;          !!!next-token;
6400          redo B;          next B;
6401        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
6402          !!!cp ('t341');          !!!cp ('t341');
6403          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6404          $parse_rcdata->(RCDATA_CONTENT_MODEL);          $parse_rcdata->(RCDATA_CONTENT_MODEL);
6405          redo B;          next B;
6406        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
6407          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body:body', token => $token);
6408                                
6409          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
6410              $self->{open_elements}->[1]->[1] ne 'body') {              not ($self->{open_elements}->[1]->[1] & BODY_EL)) {
6411            !!!cp ('t342');            !!!cp ('t342');
6412            ## Ignore the token            ## Ignore the token
6413          } else {          } else {
# Line 5431  sub _tree_construction_main ($) { Line 6421  sub _tree_construction_main ($) {
6421              }              }
6422            }            }
6423          }          }
6424            !!!nack ('t343.1');
6425          !!!next-token;          !!!next-token;
6426          redo B;          next B;
6427        } elsif ({        } elsif ({
6428                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6429                  div => 1, dl => 1, fieldset => 1,                  div => 1, dl => 1, fieldset => 1,
6430                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6431                  menu => 1, ol => 1, p => 1, ul => 1,                  menu => 1, ol => 1, p => 1, ul => 1,
6432                  pre => 1, listing => 1,                  pre => 1, listing => 1,
6433                    form => 1,
6434                    table => 1,
6435                    hr => 1,
6436                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6437            if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
6438              !!!cp ('t350');
6439              !!!parse-error (type => 'in form:form', token => $token);
6440              ## Ignore the token
6441              !!!nack ('t350.1');
6442              !!!next-token;
6443              next B;
6444            }
6445    
6446          ## has a p element in scope          ## has a p element in scope
6447          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6448            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6449              !!!cp ('t344');              !!!cp ('t344');
6450              !!!back-token;              !!!back-token; # <form>
6451              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6452              redo B;                        line => $token->{line}, column => $token->{column}};
6453            } elsif ({              next B;
6454                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($_->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6455              !!!cp ('t345');              !!!cp ('t345');
6456              last INSCOPE;              last INSCOPE;
6457            }            }
6458          } # INSCOPE          } # INSCOPE
6459                        
6460          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6461          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
6462              !!!nack ('t346.1');
6463            !!!next-token;            !!!next-token;
6464            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
6465              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
# Line 5470  sub _tree_construction_main ($) { Line 6472  sub _tree_construction_main ($) {
6472            } else {            } else {
6473              !!!cp ('t348');              !!!cp ('t348');
6474            }            }
6475          } else {          } elsif ($token->{tag_name} eq 'form') {
6476            !!!cp ('t347');            !!!cp ('t347.1');
6477              $self->{form_element} = $self->{open_elements}->[-1]->[0];
6478    
6479              !!!nack ('t347.2');
6480            !!!next-token;            !!!next-token;
6481          }          } elsif ($token->{tag_name} eq 'table') {
6482          redo B;            !!!cp ('t382');
6483        } elsif ($token->{tag_name} eq 'form') {            push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
6484          if (defined $self->{form_element}) {            
6485            !!!cp ('t350');            $self->{insertion_mode} = IN_TABLE_IM;
6486            !!!parse-error (type => 'in form:form');  
6487            ## Ignore the token            !!!nack ('t382.1');
6488              !!!next-token;
6489            } elsif ($token->{tag_name} eq 'hr') {
6490              !!!cp ('t386');
6491              pop @{$self->{open_elements}};
6492            
6493              !!!nack ('t386.1');
6494            !!!next-token;            !!!next-token;
           redo B;  
6495          } else {          } else {
6496            ## 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];  
6497            !!!next-token;            !!!next-token;
           redo B;  
6498          }          }
6499        } elsif ($token->{tag_name} eq 'li') {          next B;
6500          } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {
6501          ## has a p element in scope          ## has a p element in scope
6502          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6503            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6504              !!!cp ('t353');              !!!cp ('t353');
6505              !!!back-token;              !!!back-token; # <x>
6506              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6507              redo B;                        line => $token->{line}, column => $token->{column}};
6508            } elsif ({              next B;
6509                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($_->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6510              !!!cp ('t354');              !!!cp ('t354');
6511              last INSCOPE;              last INSCOPE;
6512            }            }
# Line 5524  sub _tree_construction_main ($) { Line 6515  sub _tree_construction_main ($) {
6515          ## Step 1          ## Step 1
6516          my $i = -1;          my $i = -1;
6517          my $node = $self->{open_elements}->[$i];          my $node = $self->{open_elements}->[$i];
6518            my $li_or_dtdd = {li => {li => 1},
6519                              dt => {dt => 1, dd => 1},
6520                              dd => {dt => 1, dd => 1}}->{$token->{tag_name}};
6521          LI: {          LI: {
6522            ## Step 2            ## Step 2
6523            if ($node->[1] eq 'li') {            if ($li_or_dtdd->{$node->[0]->manakai_local_name}) {
6524              if ($i != -1) {              if ($i != -1) {
6525                !!!cp ('t355');                !!!cp ('t355');
6526                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'not closed',
6527                                $self->{open_elements}->[-1]->[1]);                                value => $self->{open_elements}->[-1]->[0]
6528                                      ->manakai_local_name,
6529                                  token => $token);
6530              } else {              } else {
6531                !!!cp ('t356');                !!!cp ('t356');
6532              }              }
# Line 5541  sub _tree_construction_main ($) { Line 6537  sub _tree_construction_main ($) {
6537            }            }
6538                        
6539            ## Step 3            ## Step 3
6540            if (not $formatting_category->{$node->[1]} and            if (not ($node->[1] & FORMATTING_EL) and
6541                #not $phrasing_category->{$node->[1]} and                #not $phrasing_category->{$node->[1]} and
6542                ($special_category->{$node->[1]} or                ($node->[1] & SPECIAL_EL or
6543                 $scoping_category->{$node->[1]}) and                 $node->[1] & SCOPING_EL) and
6544                $node->[1] ne 'address' and $node->[1] ne 'div') {                not ($node->[1] & ADDRESS_EL) and
6545                  not ($node->[1] & DIV_EL)) {
6546              !!!cp ('t358');              !!!cp ('t358');
6547              last LI;              last LI;
6548            }            }
# Line 5557  sub _tree_construction_main ($) { Line 6554  sub _tree_construction_main ($) {
6554            redo LI;            redo LI;
6555          } # LI          } # LI
6556                        
6557          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6558          !!!next-token;          !!!nack ('t359.1');
         redo 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});  
6559          !!!next-token;          !!!next-token;
6560          redo B;          next B;
6561        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
6562          ## has a p element in scope          ## has a p element in scope
6563          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6564            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6565              !!!cp ('t367');              !!!cp ('t367');
6566              !!!back-token;              !!!back-token; # <plaintext>
6567              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6568              redo B;                        line => $token->{line}, column => $token->{column}};
6569            } elsif ({              next B;
6570                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($_->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
6571              !!!cp ('t368');              !!!cp ('t368');
6572              last INSCOPE;              last INSCOPE;
6573            }            }
6574          } # INSCOPE          } # INSCOPE
6575                        
6576          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6577                        
6578          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
6579                        
6580            !!!nack ('t368.1');
6581          !!!next-token;          !!!next-token;
6582          redo B;          next B;
6583        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
6584          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
6585            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
6586            if ($node->[1] eq 'a') {            if ($node->[1] & A_EL) {
6587              !!!cp ('t371');              !!!cp ('t371');
6588              !!!parse-error (type => 'in a:a');              !!!parse-error (type => 'in a:a', token => $token);
6589                            
6590              !!!back-token;              !!!back-token; # <a>
6591              $token = {type => END_TAG_TOKEN, tag_name => 'a'};              $token = {type => END_TAG_TOKEN, tag_name => 'a',
6592              $formatting_end_tag->($token->{tag_name});                        line => $token->{line}, column => $token->{column}};
6593                $formatting_end_tag->($token);
6594                            
6595              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
6596                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
# Line 5673  sub _tree_construction_main ($) { Line 6615  sub _tree_construction_main ($) {
6615                        
6616          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6617    
6618          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6619          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
6620    
6621            !!!nack ('t374.1');
6622          !!!next-token;          !!!next-token;
6623          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;  
6624        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
6625          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6626    
6627          ## has a |nobr| element in scope          ## has a |nobr| element in scope
6628          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6629            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6630            if ($node->[1] eq 'nobr') {            if ($node->[1] & NOBR_EL) {
6631              !!!cp ('t376');              !!!cp ('t376');
6632              !!!parse-error (type => 'in nobr:nobr');              !!!parse-error (type => 'in nobr:nobr', token => $token);
6633              !!!back-token;              !!!back-token; # <nobr>
6634              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
6635              redo B;                        line => $token->{line}, column => $token->{column}};
6636            } elsif ({              next B;
6637                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($node->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
6638              !!!cp ('t377');              !!!cp ('t377');
6639              last INSCOPE;              last INSCOPE;
6640            }            }
6641          } # INSCOPE          } # INSCOPE
6642                    
6643          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6644          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
6645                    
6646            !!!nack ('t377.1');
6647          !!!next-token;          !!!next-token;
6648          redo B;          next B;
6649        } elsif ($token->{tag_name} eq 'button') {        } elsif ($token->{tag_name} eq 'button') {
6650          ## has a button element in scope          ## has a button element in scope
6651          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6652            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6653            if ($node->[1] eq 'button') {            if ($node->[1] & BUTTON_EL) {
6654              !!!cp ('t378');              !!!cp ('t378');
6655              !!!parse-error (type => 'in button:button');              !!!parse-error (type => 'in button:button', token => $token);
6656              !!!back-token;              !!!back-token; # <button>
6657              $token = {type => END_TAG_TOKEN, tag_name => 'button'};              $token = {type => END_TAG_TOKEN, tag_name => 'button',
6658              redo B;                        line => $token->{line}, column => $token->{column}};
6659            } elsif ({              next B;
6660                      table => 1, caption => 1, td => 1, th => 1,            } elsif ($node->[1] & SCOPING_EL) {
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
6661              !!!cp ('t379');              !!!cp ('t379');
6662              last INSCOPE;              last INSCOPE;
6663            }            }
# Line 5738  sub _tree_construction_main ($) { Line 6665  sub _tree_construction_main ($) {
6665                        
6666          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6667                        
6668          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6669    
6670          ## TODO: associate with $self->{form_element} if defined          ## TODO: associate with $self->{form_element} if defined
6671    
6672          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
6673    
6674            !!!nack ('t379.1');
6675          !!!next-token;          !!!next-token;
6676          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;  
6677        } elsif ({        } elsif ({
6678                  area => 1, basefont => 1, bgsound => 1, br => 1,                  xmp => 1,
6679                  embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                  iframe => 1,
6680                  image => 1,                  noembed => 1,
6681                    noframes => 1,
6682                    noscript => 0, ## TODO: 1 if scripting is enabled
6683                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6684          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'xmp') {
6685            !!!cp ('t384');            !!!cp ('t381');
6686            !!!parse-error (type => 'image');            $reconstruct_active_formatting_elements->($insert_to_current);
           $token->{tag_name} = 'img';  
6687          } else {          } else {
6688            !!!cp ('t385');            !!!cp ('t399');
6689          }          }
6690            ## NOTE: There is an "as if in body" code clone.
6691          ## NOTE: There is an "as if <br>" code clone.          $parse_rcdata->(CDATA_CONTENT_MODEL);
6692          $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;  
6693        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
6694          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex', token => $token);
6695                    
6696          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
6697            !!!cp ('t389');            !!!cp ('t389');
6698            ## Ignore the token            ## Ignore the token
6699              !!!nack ('t389'); ## NOTE: Not acknowledged.
6700            !!!next-token;            !!!next-token;
6701            redo B;            next B;
6702          } else {          } else {
6703            my $at = $token->{attributes};            my $at = $token->{attributes};
6704            my $form_attrs;            my $form_attrs;
# Line 5856  sub _tree_construction_main ($) { Line 6709  sub _tree_construction_main ($) {
6709            delete $at->{prompt};            delete $at->{prompt};
6710            my @tokens = (            my @tokens = (
6711                          {type => START_TAG_TOKEN, tag_name => 'form',                          {type => START_TAG_TOKEN, tag_name => 'form',
6712                           attributes => $form_attrs},                           attributes => $form_attrs,
6713                          {type => START_TAG_TOKEN, tag_name => 'hr'},                           line => $token->{line}, column => $token->{column}},
6714                          {type => START_TAG_TOKEN, tag_name => 'p'},                          {type => START_TAG_TOKEN, tag_name => 'hr',
6715                          {type => START_TAG_TOKEN, tag_name => 'label'},                           line => $token->{line}, column => $token->{column}},
6716                            {type => START_TAG_TOKEN, tag_name => 'p',
6717                             line => $token->{line}, column => $token->{column}},
6718                            {type => START_TAG_TOKEN, tag_name => 'label',
6719                             line => $token->{line}, column => $token->{column}},
6720                         );                         );
6721            if ($prompt_attr) {            if ($prompt_attr) {
6722              !!!cp ('t390');              !!!cp ('t390');
6723              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
6724                               #line => $token->{line}, column => $token->{column},
6725                              };
6726            } else {            } else {
6727              !!!cp ('t391');              !!!cp ('t391');
6728              push @tokens, {type => CHARACTER_TOKEN,              push @tokens, {type => CHARACTER_TOKEN,
6729                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD                             data => 'This is a searchable index. Insert your search keywords here: ',
6730                               #line => $token->{line}, column => $token->{column},
6731                              }; # SHOULD
6732              ## TODO: make this configurable              ## TODO: make this configurable
6733            }            }
6734            push @tokens,            push @tokens,
6735                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at},                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at,
6736                             line => $token->{line}, column => $token->{column}},
6737                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
6738                          {type => END_TAG_TOKEN, tag_name => 'label'},                          {type => END_TAG_TOKEN, tag_name => 'label',
6739                          {type => END_TAG_TOKEN, tag_name => 'p'},                           line => $token->{line}, column => $token->{column}},
6740                          {type => START_TAG_TOKEN, tag_name => 'hr'},                          {type => END_TAG_TOKEN, tag_name => 'p',
6741                          {type => END_TAG_TOKEN, tag_name => 'form'};                           line => $token->{line}, column => $token->{column}},
6742            $token = shift @tokens;                          {type => START_TAG_TOKEN, tag_name => 'hr',
6743                             line => $token->{line}, column => $token->{column}},
6744                            {type => END_TAG_TOKEN, tag_name => 'form',
6745                             line => $token->{line}, column => $token->{column}};
6746              !!!nack ('t391.1'); ## NOTE: Not acknowledged.
6747            !!!back-token (@tokens);            !!!back-token (@tokens);
6748            redo B;            !!!next-token;
6749              next B;
6750          }          }
6751        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
6752          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
6753          my $el;          my $el;
6754          !!!create-element ($el, $token->{tag_name}, $token->{attributes});          !!!create-element ($el, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
6755                    
6756          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
6757          $self->{content_model} = RCDATA_CONTENT_MODEL;          $self->{content_model} = RCDATA_CONTENT_MODEL;
# Line 5893  sub _tree_construction_main ($) { Line 6760  sub _tree_construction_main ($) {
6760          $insert->($el);          $insert->($el);
6761                    
6762          my $text = '';          my $text = '';
6763            !!!nack ('t392.1');
6764          !!!next-token;          !!!next-token;
6765          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
6766            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
# Line 5923  sub _tree_construction_main ($) { Line 6791  sub _tree_construction_main ($) {
6791            ## Ignore the token            ## Ignore the token
6792          } else {          } else {
6793            !!!cp ('t398');            !!!cp ('t398');
6794            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
6795          }          }
6796          !!!next-token;          !!!next-token;
6797          redo B;          next B;
6798        } elsif ({        } elsif ($token->{tag_name} eq 'math' or
6799                  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');  
6800          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
6801    
6802          ## TODO: associate with $self->{form_element} if defined          ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
6803    
6804            ## "adjust foreign attributes" - done in insert-element-f
6805            
6806            !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
6807                    
6808          $self->{insertion_mode} = IN_SELECT_IM;          if ($self->{self_closing}) {
6809              pop @{$self->{open_elements}};
6810              !!!ack ('t398.1');
6811            } else {
6812              !!!cp ('t398.2');
6813              $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
6814              ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
6815              ## mode, "in body" (not "in foreign content") secondary insertion
6816              ## mode, maybe.
6817            }
6818    
6819          !!!next-token;          !!!next-token;
6820          redo B;          next B;
6821        } elsif ({        } elsif ({
6822                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
6823                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 5955  sub _tree_construction_main ($) { Line 6825  sub _tree_construction_main ($) {
6825                  thead => 1, tr => 1,                  thead => 1, tr => 1,
6826                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6827          !!!cp ('t401');          !!!cp ('t401');
6828          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token);
6829          ## Ignore the token          ## Ignore the token
6830            !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
6831          !!!next-token;          !!!next-token;
6832          redo B;          next B;
6833                    
6834          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
6835        } else {        } else {
6836          !!!cp ('t402');          if ($token->{tag_name} eq 'image') {
6837              !!!cp ('t384');
6838              !!!parse-error (type => 'image', token => $token);
6839              $token->{tag_name} = 'img';
6840            } else {
6841              !!!cp ('t385');
6842            }
6843    
6844            ## NOTE: There is an "as if <br>" code clone.
6845          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6846                    
6847          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6848    
6849            if ({
6850                 applet => 1, marquee => 1, object => 1,
6851                }->{$token->{tag_name}}) {
6852              !!!cp ('t380');
6853              push @$active_formatting_elements, ['#marker', ''];
6854              !!!nack ('t380.1');
6855            } elsif ({
6856                      b => 1, big => 1, em => 1, font => 1, i => 1,
6857                      s => 1, small => 1, strile => 1,
6858                      strong => 1, tt => 1, u => 1,
6859                     }->{$token->{tag_name}}) {
6860              !!!cp ('t375');
6861              push @$active_formatting_elements, $self->{open_elements}->[-1];
6862              !!!nack ('t375.1');
6863            } elsif ($token->{tag_name} eq 'input') {
6864              !!!cp ('t388');
6865              ## TODO: associate with $self->{form_element} if defined
6866              pop @{$self->{open_elements}};
6867              !!!ack ('t388.2');
6868            } elsif ({
6869                      area => 1, basefont => 1, bgsound => 1, br => 1,
6870                      embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
6871                      #image => 1,
6872                     }->{$token->{tag_name}}) {
6873              !!!cp ('t388.1');
6874              pop @{$self->{open_elements}};
6875              !!!ack ('t388.3');
6876            } elsif ($token->{tag_name} eq 'select') {
6877              ## TODO: associate with $self->{form_element} if defined
6878            
6879              if ($self->{insertion_mode} & TABLE_IMS or
6880                  $self->{insertion_mode} & BODY_TABLE_IMS or
6881                  $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
6882                !!!cp ('t400.1');
6883                $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
6884              } else {
6885                !!!cp ('t400.2');
6886                $self->{insertion_mode} = IN_SELECT_IM;
6887              }
6888              !!!nack ('t400.3');
6889            } else {
6890              !!!nack ('t402');
6891            }
6892                    
6893          !!!next-token;          !!!next-token;
6894          redo B;          next B;
6895        }        }
6896      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
6897        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
6898          if (@{$self->{open_elements}} > 1 and          ## has a |body| element in scope
6899              $self->{open_elements}->[1]->[1] eq 'body') {          my $i;
6900            for (@{$self->{open_elements}}) {          INSCOPE: {
6901              unless ({            for (reverse @{$self->{open_elements}}) {
6902                         dd => 1, dt => 1, li => 1, p => 1, td => 1,              if ($_->[1] & BODY_EL) {
6903                         th => 1, tr => 1, body => 1, html => 1,                !!!cp ('t405');
6904                       tbody => 1, tfoot => 1, thead => 1,                $i = $_;
6905                      }->{$_->[1]}) {                last INSCOPE;
6906                !!!cp ('t403');              } elsif ($_->[1] & SCOPING_EL) {
6907                !!!parse-error (type => 'not closed:'.$_->[1]);                !!!cp ('t405.1');
6908              } else {                last;
               !!!cp ('t404');  
6909              }              }
6910            }            }
6911    
6912            $self->{insertion_mode} = AFTER_BODY_IM;            !!!parse-error (type => 'start tag not allowed',
6913            !!!next-token;                            value => $token->{tag_name}, token => $token);
6914            redo B;            ## NOTE: Ignore the token.
         } else {  
           !!!cp ('t405');  
           !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
           ## Ignore the token  
6915            !!!next-token;            !!!next-token;
6916            redo B;            next B;
6917            } # INSCOPE
6918    
6919            for (@{$self->{open_elements}}) {
6920              unless ($_->[1] & ALL_END_TAG_OPTIONAL_EL) {
6921                !!!cp ('t403');
6922                !!!parse-error (type => 'not closed',
6923                                value => $_->[0]->manakai_local_name,
6924                                token => $token);
6925                last;
6926              } else {
6927                !!!cp ('t404');
6928              }
6929          }          }
6930    
6931            $self->{insertion_mode} = AFTER_BODY_IM;
6932            !!!next-token;
6933            next B;
6934        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
6935          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
6936            ## up-to-date, though it has same effect as speced.
6937            if (@{$self->{open_elements}} > 1 and
6938                $self->{open_elements}->[1]->[1] & BODY_EL) {
6939            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
6940            if ($self->{open_elements}->[-1]->[1] ne 'body') {            unless ($self->{open_elements}->[-1]->[1] & BODY_EL) {
6941              !!!cp ('t406');              !!!cp ('t406');
6942              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!parse-error (type => 'not closed',
6943                                value => $self->{open_elements}->[1]->[0]
6944                                    ->manakai_local_name,
6945                                token => $token);
6946            } else {            } else {
6947              !!!cp ('t407');              !!!cp ('t407');
6948            }            }
6949            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6950            ## reprocess            ## reprocess
6951            redo B;            next B;
6952          } else {          } else {
6953            !!!cp ('t408');            !!!cp ('t408');
6954            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6955            ## Ignore the token            ## Ignore the token
6956            !!!next-token;            !!!next-token;
6957            redo B;            next B;
6958          }          }
6959        } elsif ({        } elsif ({
6960                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6961                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1, listing => 1,
6962                  menu => 1, ol => 1, pre => 1, ul => 1,                  menu => 1, ol => 1, pre => 1, ul => 1,
6963                  dd => 1, dt => 1, li => 1,                  dd => 1, dt => 1, li => 1,
6964                  button => 1, marquee => 1, object => 1,                  applet => 1, button => 1, marquee => 1, object => 1,
6965                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6966          ## has an element in scope          ## has an element in scope
6967          my $i;          my $i;
6968          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6969            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6970            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6971              !!!cp ('t410');              !!!cp ('t410');
6972              $i = $_;              $i = $_;
6973              last INSCOPE;              last INSCOPE;
6974            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
6975              !!!cp ('t411');              !!!cp ('t411');
6976              last INSCOPE;              last INSCOPE;
6977            }            }
# Line 6042  sub _tree_construction_main ($) { Line 6979  sub _tree_construction_main ($) {
6979    
6980          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
6981            !!!cp ('t413');            !!!cp ('t413');
6982            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6983          } else {          } else {
6984            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
6985            while ({            while ({
# Line 6050  sub _tree_construction_main ($) { Line 6987  sub _tree_construction_main ($) {
6987                    dt => ($token->{tag_name} ne 'dt'),                    dt => ($token->{tag_name} ne 'dt'),
6988                    li => ($token->{tag_name} ne 'li'),                    li => ($token->{tag_name} ne 'li'),
6989                    p => 1,                    p => 1,
6990                   }->{$self->{open_elements}->[-1]->[1]}) {                   }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
6991              !!!cp ('t409');              !!!cp ('t409');
6992              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6993            }            }
6994    
6995            ## Step 2.            ## Step 2.
6996            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
6997                      ne $token->{tag_name}) {
6998              !!!cp ('t412');              !!!cp ('t412');
6999              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed',
7000                                value => $self->{open_elements}->[-1]->[0]
7001                                    ->manakai_local_name,
7002                                token => $token);
7003            } else {            } else {
7004              !!!cp ('t414');              !!!cp ('t414');
7005            }            }
# Line 6069  sub _tree_construction_main ($) { Line 7010  sub _tree_construction_main ($) {
7010            ## Step 4.            ## Step 4.
7011            $clear_up_to_marker->()            $clear_up_to_marker->()
7012                if {                if {
7013                  button => 1, marquee => 1, object => 1,                  applet => 1, button => 1, marquee => 1, object => 1,
7014                }->{$token->{tag_name}};                }->{$token->{tag_name}};
7015          }          }
7016          !!!next-token;          !!!next-token;
7017          redo B;          next B;
7018        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
7019          undef $self->{form_element};          undef $self->{form_element};
7020    
# Line 6081  sub _tree_construction_main ($) { Line 7022  sub _tree_construction_main ($) {
7022          my $i;          my $i;
7023          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7024            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7025            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & FORM_EL) {
7026              !!!cp ('t418');              !!!cp ('t418');
7027              $i = $_;              $i = $_;
7028              last INSCOPE;              last INSCOPE;
7029            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7030              !!!cp ('t419');              !!!cp ('t419');
7031              last INSCOPE;              last INSCOPE;
7032            }            }
# Line 6096  sub _tree_construction_main ($) { Line 7034  sub _tree_construction_main ($) {
7034    
7035          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7036            !!!cp ('t421');            !!!cp ('t421');
7037            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7038          } else {          } else {
7039            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7040            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7041              !!!cp ('t417');              !!!cp ('t417');
7042              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7043            }            }
7044                        
7045            ## Step 2.            ## Step 2.
7046            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7047                      ne $token->{tag_name}) {
7048              !!!cp ('t417.1');              !!!cp ('t417.1');
7049              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed',
7050                                value => $self->{open_elements}->[-1]->[0]
7051                                    ->manakai_local_name,
7052                                token => $token);
7053            } else {            } else {
7054              !!!cp ('t420');              !!!cp ('t420');
7055            }              }  
# Line 6119  sub _tree_construction_main ($) { Line 7059  sub _tree_construction_main ($) {
7059          }          }
7060    
7061          !!!next-token;          !!!next-token;
7062          redo B;          next B;
7063        } elsif ({        } elsif ({
7064                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
7065                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 6127  sub _tree_construction_main ($) { Line 7067  sub _tree_construction_main ($) {
7067          my $i;          my $i;
7068          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7069            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7070            if ({            if ($node->[1] & HEADING_EL) {
                h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
               }->{$node->[1]}) {  
7071              !!!cp ('t423');              !!!cp ('t423');
7072              $i = $_;              $i = $_;
7073              last INSCOPE;              last INSCOPE;
7074            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7075              !!!cp ('t424');              !!!cp ('t424');
7076              last INSCOPE;              last INSCOPE;
7077            }            }
# Line 6144  sub _tree_construction_main ($) { Line 7079  sub _tree_construction_main ($) {
7079    
7080          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
7081            !!!cp ('t425.1');            !!!cp ('t425.1');
7082            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7083          } else {          } else {
7084            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
7085            while ({            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                   dd => 1, dt => 1, li => 1, p => 1,  
                  }->{$self->{open_elements}->[-1]->[1]}) {  
7086              !!!cp ('t422');              !!!cp ('t422');
7087              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
7088            }            }
7089                        
7090            ## Step 2.            ## Step 2.
7091            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7092                      ne $token->{tag_name}) {
7093              !!!cp ('t425');              !!!cp ('t425');
7094              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7095            } else {            } else {
7096              !!!cp ('t426');              !!!cp ('t426');
7097            }            }
# Line 6167  sub _tree_construction_main ($) { Line 7101  sub _tree_construction_main ($) {
7101          }          }
7102                    
7103          !!!next-token;          !!!next-token;
7104          redo B;          next B;
7105        } elsif ($token->{tag_name} eq 'p') {        } elsif ($token->{tag_name} eq 'p') {
7106          ## has an element in scope          ## has an element in scope
7107          my $i;          my $i;
7108          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7109            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7110            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & P_EL) {
7111              !!!cp ('t410.1');              !!!cp ('t410.1');
7112              $i = $_;              $i = $_;
7113              last INSCOPE;              last INSCOPE;
7114            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7115              !!!cp ('t411.1');              !!!cp ('t411.1');
7116              last INSCOPE;              last INSCOPE;
7117            }            }
7118          } # INSCOPE          } # INSCOPE
7119    
7120          if (defined $i) {          if (defined $i) {
7121            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7122                      ne $token->{tag_name}) {
7123              !!!cp ('t412.1');              !!!cp ('t412.1');
7124              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed',
7125                                value => $self->{open_elements}->[-1]->[0]
7126                                    ->manakai_local_name,
7127                                token => $token);
7128            } else {            } else {
7129              !!!cp ('t414.1');              !!!cp ('t414.1');
7130            }            }
# Line 6197  sub _tree_construction_main ($) { Line 7132  sub _tree_construction_main ($) {
7132            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
7133          } else {          } else {
7134            !!!cp ('t413.1');            !!!cp ('t413.1');
7135            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7136    
7137            !!!cp ('t415.1');            !!!cp ('t415.1');
7138            ## As if <p>, then reprocess the current token            ## As if <p>, then reprocess the current token
7139            my $el;            my $el;
7140            !!!create-element ($el, 'p');            !!!create-element ($el, $HTML_NS, 'p',, $token);
7141            $insert->($el);            $insert->($el);
7142            ## NOTE: Not inserted into |$self->{open_elements}|.            ## NOTE: Not inserted into |$self->{open_elements}|.
7143          }          }
7144    
7145          !!!next-token;          !!!next-token;
7146          redo B;          next B;
7147        } elsif ({        } elsif ({
7148                  a => 1,                  a => 1,
7149                  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 7151  sub _tree_construction_main ($) {
7151                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
7152                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7153          !!!cp ('t427');          !!!cp ('t427');
7154          $formatting_end_tag->($token->{tag_name});          $formatting_end_tag->($token);
7155          redo B;          next B;
7156        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
7157          !!!cp ('t428');          !!!cp ('t428');
7158          !!!parse-error (type => 'unmatched end tag:br');          !!!parse-error (type => 'unmatched end tag:br', token => $token);
7159    
7160          ## As if <br>          ## As if <br>
7161          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7162                    
7163          my $el;          my $el;
7164          !!!create-element ($el, 'br');          !!!create-element ($el, $HTML_NS, 'br',, $token);
7165          $insert->($el);          $insert->($el);
7166                    
7167          ## Ignore the token.          ## Ignore the token.
7168          !!!next-token;          !!!next-token;
7169          redo B;          next B;
7170        } elsif ({        } elsif ({
7171                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7172                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 6245  sub _tree_construction_main ($) { Line 7180  sub _tree_construction_main ($) {
7180                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
7181                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7182          !!!cp ('t429');          !!!cp ('t429');
7183          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7184          ## Ignore the token          ## Ignore the token
7185          !!!next-token;          !!!next-token;
7186          redo B;          next B;
7187                    
7188          ## ISSUE: Issue on HTML5 new elements in spec          ## ISSUE: Issue on HTML5 new elements in spec
7189                    
# Line 6259  sub _tree_construction_main ($) { Line 7194  sub _tree_construction_main ($) {
7194    
7195          ## Step 2          ## Step 2
7196          S2: {          S2: {
7197            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7198              ## Step 1              ## Step 1
7199              ## generate implied end tags              ## generate implied end tags
7200              while ({              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
                     dd => 1, dt => 1, li => 1, p => 1,  
                    }->{$self->{open_elements}->[-1]->[1]}) {  
7201                !!!cp ('t430');                !!!cp ('t430');
7202                ## ISSUE: Can this case be reached?                ## ISSUE: Can this case be reached?
7203                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
7204              }              }
7205                    
7206              ## Step 2              ## Step 2
7207              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7208                        ne $token->{tag_name}) {
7209                !!!cp ('t431');                !!!cp ('t431');
7210                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
7211                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
7212                                  value => $self->{open_elements}->[-1]->[0]
7213                                      ->manakai_local_name,
7214                                  token => $token);
7215              } else {              } else {
7216                !!!cp ('t432');                !!!cp ('t432');
7217              }              }
# Line 6286  sub _tree_construction_main ($) { Line 7223  sub _tree_construction_main ($) {
7223              last S2;              last S2;
7224            } else {            } else {
7225              ## Step 3              ## Step 3
7226              if (not $formatting_category->{$node->[1]} and              if (not ($node->[1] & FORMATTING_EL) and
7227                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
7228                  ($special_category->{$node->[1]} or                  ($node->[1] & SPECIAL_EL or
7229                   $scoping_category->{$node->[1]})) {                   $node->[1] & SCOPING_EL)) {
7230                !!!cp ('t433');                !!!cp ('t433');
7231                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
7232                ## Ignore the token                ## Ignore the token
7233                !!!next-token;                !!!next-token;
7234                last S2;                last S2;
# Line 6307  sub _tree_construction_main ($) { Line 7244  sub _tree_construction_main ($) {
7244            ## Step 5;            ## Step 5;
7245            redo S2;            redo S2;
7246          } # S2          } # S2
7247          redo B;          next B;
7248        }        }
7249      }      }
7250      redo B;      next B;
7251      } continue { # B
7252        if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
7253          ## NOTE: The code below is executed in cases where it does not have
7254          ## to be, but it it is harmless even in those cases.
7255          ## has an element in scope
7256          INSCOPE: {
7257            for (reverse 0..$#{$self->{open_elements}}) {
7258              my $node = $self->{open_elements}->[$_];
7259              if ($node->[1] & FOREIGN_EL) {
7260                last INSCOPE;
7261              } elsif ($node->[1] & SCOPING_EL) {
7262                last;
7263              }
7264            }
7265            
7266            ## NOTE: No foreign element in scope.
7267            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
7268          } # INSCOPE
7269        }
7270    } # B    } # B
7271    
7272    ## Stop parsing # MUST    ## Stop parsing # MUST
# Line 6356  sub set_inner_html ($$$) { Line 7312  sub set_inner_html ($$$) {
7312    
7313      ## Step 8 # MUST      ## Step 8 # MUST
7314      my $i = 0;      my $i = 0;
7315      my $line = 1;      $p->{line_prev} = $p->{line} = 1;
7316      my $column = 0;      $p->{column_prev} = $p->{column} = 0;
7317      $p->{set_next_char} = sub {      $p->{set_next_char} = sub {
7318        my $self = shift;        my $self = shift;
7319    
# Line 6366  sub set_inner_html ($$$) { Line 7322  sub set_inner_html ($$$) {
7322    
7323        $self->{next_char} = -1 and return if $i >= length $$s;        $self->{next_char} = -1 and return if $i >= length $$s;
7324        $self->{next_char} = ord substr $$s, $i++, 1;        $self->{next_char} = ord substr $$s, $i++, 1;
7325        $column++;  
7326          ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
7327          $p->{column}++;
7328    
7329        if ($self->{next_char} == 0x000A) { # LF        if ($self->{next_char} == 0x000A) { # LF
7330          $line++;          $p->{line}++;
7331          $column = 0;          $p->{column} = 0;
7332          !!!cp ('i1');          !!!cp ('i1');
7333        } elsif ($self->{next_char} == 0x000D) { # CR        } elsif ($self->{next_char} == 0x000D) { # CR
7334          $i++ if substr ($$s, $i, 1) eq "\x0A";          $i++ if substr ($$s, $i, 1) eq "\x0A";
7335          $self->{next_char} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
7336          $line++;          $p->{line}++;
7337          $column = 0;          $p->{column} = 0;
7338          !!!cp ('i2');          !!!cp ('i2');
7339        } elsif ($self->{next_char} > 0x10FFFF) {        } elsif ($self->{next_char} > 0x10FFFF) {
7340          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
# Line 6385  sub set_inner_html ($$$) { Line 7343  sub set_inner_html ($$$) {
7343          !!!cp ('i4');          !!!cp ('i4');
7344          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
7345          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
7346          } elsif ($self->{next_char} <= 0x0008 or
7347                   (0x000E <= $self->{next_char} and
7348                    $self->{next_char} <= 0x001F) or
7349                   (0x007F <= $self->{next_char} and
7350                    $self->{next_char} <= 0x009F) or
7351                   (0xD800 <= $self->{next_char} and
7352                    $self->{next_char} <= 0xDFFF) or
7353                   (0xFDD0 <= $self->{next_char} and
7354                    $self->{next_char} <= 0xFDDF) or
7355                   {
7356                    0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
7357                    0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
7358                    0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
7359                    0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
7360                    0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
7361                    0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
7362                    0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
7363                    0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
7364                    0x10FFFE => 1, 0x10FFFF => 1,
7365                   }->{$self->{next_char}}) {
7366            !!!cp ('i4.1');
7367            !!!parse-error (type => 'control char', level => $self->{must_level});
7368    ## TODO: error type documentation
7369        }        }
7370      };      };
7371      $p->{prev_char} = [-1, -1, -1];      $p->{prev_char} = [-1, -1, -1];
# Line 6392  sub set_inner_html ($$$) { Line 7373  sub set_inner_html ($$$) {
7373            
7374      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
7375        my (%opt) = @_;        my (%opt) = @_;
7376        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";        my $line = $opt{line};
7377          my $column = $opt{column};
7378          if (defined $opt{token} and defined $opt{token}->{line}) {
7379            $line = $opt{token}->{line};
7380            $column = $opt{token}->{column};
7381          }
7382          warn "Parse error ($opt{type}) at line $line column $column\n";
7383      };      };
7384      $p->{parse_error} = sub {      $p->{parse_error} = sub {
7385        $ponerror->(@_, line => $line, column => $column);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
7386      };      };
7387            
7388      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
# Line 6419  sub set_inner_html ($$$) { Line 7406  sub set_inner_html ($$$) {
7406          unless defined $p->{content_model};          unless defined $p->{content_model};
7407          ## ISSUE: What is "the name of the element"? local name?          ## ISSUE: What is "the name of the element"? local name?
7408    
7409      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
7410          ## TODO: Foreign element OK?
7411    
7412      ## Step 3      ## Step 3
7413      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
# Line 6429  sub set_inner_html ($$$) { Line 7417  sub set_inner_html ($$$) {
7417      $doc->append_child ($root);      $doc->append_child ($root);
7418    
7419      ## Step 5 # MUST      ## Step 5 # MUST
7420      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, $el_category->{html}];
7421    
7422      undef $p->{head_element};      undef $p->{head_element};
7423    
# Line 6475  sub set_inner_html ($$$) { Line 7463  sub set_inner_html ($$$) {
7463      ## ISSUE: mutation events?      ## ISSUE: mutation events?
7464    
7465      $p->_terminate_tree_constructor;      $p->_terminate_tree_constructor;
7466    
7467        delete $p->{parse_error}; # delete loop
7468    } else {    } else {
7469      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";
7470    }    }

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24