/[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.77 by wakaba, Mon Mar 3 10:20:19 2008 UTC revision 1.154 by wakaba, Sat Aug 16 07:35:23 2008 UTC
# Line 8  use Error qw(:try); Line 8  use Error qw(:try);
8  ## doc.write ('');  ## doc.write ('');
9  ## alert (doc.compatMode);  ## alert (doc.compatMode);
10    
11  ## TODO: Control charcters and noncharacters are not allowed (HTML5 revision 1263)  require IO::Handle;
12  ## TODO: 1252 parse error (revision 1264)  
13  ## TODO: 8859-11 = 874 (revision 1271)  my $HTML_NS = q<http://www.w3.org/1999/xhtml>;
14    my $MML_NS = q<http://www.w3.org/1998/Math/MathML>;
15  my $permitted_slash_tag_name = {  my $SVG_NS = q<http://www.w3.org/2000/svg>;
16    base => 1,  my $XLINK_NS = q<http://www.w3.org/1999/xlink>;
17    link => 1,  my $XML_NS = q<http://www.w3.org/XML/1998/namespace>;
18    meta => 1,  my $XMLNS_NS = q<http://www.w3.org/2000/xmlns/>;
19    hr => 1,  
20    br => 1,  sub A_EL () { 0b1 }
21    img => 1,  sub ADDRESS_EL () { 0b10 }
22    embed => 1,  sub BODY_EL () { 0b100 }
23    param => 1,  sub BUTTON_EL () { 0b1000 }
24    area => 1,  sub CAPTION_EL () { 0b10000 }
25    col => 1,  sub DD_EL () { 0b100000 }
26    input => 1,  sub DIV_EL () { 0b1000000 }
27    sub DT_EL () { 0b10000000 }
28    sub FORM_EL () { 0b100000000 }
29    sub FORMATTING_EL () { 0b1000000000 }
30    sub FRAMESET_EL () { 0b10000000000 }
31    sub HEADING_EL () { 0b100000000000 }
32    sub HTML_EL () { 0b1000000000000 }
33    sub LI_EL () { 0b10000000000000 }
34    sub NOBR_EL () { 0b100000000000000 }
35    sub OPTION_EL () { 0b1000000000000000 }
36    sub OPTGROUP_EL () { 0b10000000000000000 }
37    sub P_EL () { 0b100000000000000000 }
38    sub SELECT_EL () { 0b1000000000000000000 }
39    sub TABLE_EL () { 0b10000000000000000000 }
40    sub TABLE_CELL_EL () { 0b100000000000000000000 }
41    sub TABLE_ROW_EL () { 0b1000000000000000000000 }
42    sub TABLE_ROW_GROUP_EL () { 0b10000000000000000000000 }
43    sub MISC_SCOPING_EL () { 0b100000000000000000000000 }
44    sub MISC_SPECIAL_EL () { 0b1000000000000000000000000 }
45    sub FOREIGN_EL () { 0b10000000000000000000000000 }
46    sub FOREIGN_FLOW_CONTENT_EL () { 0b100000000000000000000000000 }
47    sub MML_AXML_EL () { 0b1000000000000000000000000000 }
48    sub RUBY_EL () { 0b10000000000000000000000000000 }
49    sub RUBY_COMPONENT_EL () { 0b100000000000000000000000000000 }
50    
51    sub TABLE_ROWS_EL () {
52      TABLE_EL |
53      TABLE_ROW_EL |
54      TABLE_ROW_GROUP_EL
55    }
56    
57    ## NOTE: Used in "generate implied end tags" algorithm.
58    ## NOTE: There is a code where a modified version of END_TAG_OPTIONAL_EL
59    ## is used in "generate implied end tags" implementation (search for the
60    ## function mae).
61    sub END_TAG_OPTIONAL_EL () {
62      DD_EL |
63      DT_EL |
64      LI_EL |
65      P_EL |
66      RUBY_COMPONENT_EL
67    }
68    
69    ## NOTE: Used in </body> and EOF algorithms.
70    sub ALL_END_TAG_OPTIONAL_EL () {
71      DD_EL |
72      DT_EL |
73      LI_EL |
74      P_EL |
75    
76      BODY_EL |
77      HTML_EL |
78      TABLE_CELL_EL |
79      TABLE_ROW_EL |
80      TABLE_ROW_GROUP_EL
81    }
82    
83    sub SCOPING_EL () {
84      BUTTON_EL |
85      CAPTION_EL |
86      HTML_EL |
87      TABLE_EL |
88      TABLE_CELL_EL |
89      MISC_SCOPING_EL
90    }
91    
92    sub TABLE_SCOPING_EL () {
93      HTML_EL |
94      TABLE_EL
95    }
96    
97    sub TABLE_ROWS_SCOPING_EL () {
98      HTML_EL |
99      TABLE_ROW_GROUP_EL
100    }
101    
102    sub TABLE_ROW_SCOPING_EL () {
103      HTML_EL |
104      TABLE_ROW_EL
105    }
106    
107    sub SPECIAL_EL () {
108      ADDRESS_EL |
109      BODY_EL |
110      DIV_EL |
111    
112      DD_EL |
113      DT_EL |
114      LI_EL |
115      P_EL |
116    
117      FORM_EL |
118      FRAMESET_EL |
119      HEADING_EL |
120      OPTION_EL |
121      OPTGROUP_EL |
122      SELECT_EL |
123      TABLE_ROW_EL |
124      TABLE_ROW_GROUP_EL |
125      MISC_SPECIAL_EL
126    }
127    
128    my $el_category = {
129      a => A_EL | FORMATTING_EL,
130      address => ADDRESS_EL,
131      applet => MISC_SCOPING_EL,
132      area => MISC_SPECIAL_EL,
133      b => FORMATTING_EL,
134      base => MISC_SPECIAL_EL,
135      basefont => MISC_SPECIAL_EL,
136      bgsound => MISC_SPECIAL_EL,
137      big => FORMATTING_EL,
138      blockquote => MISC_SPECIAL_EL,
139      body => BODY_EL,
140      br => MISC_SPECIAL_EL,
141      button => BUTTON_EL,
142      caption => CAPTION_EL,
143      center => MISC_SPECIAL_EL,
144      col => MISC_SPECIAL_EL,
145      colgroup => MISC_SPECIAL_EL,
146      dd => DD_EL,
147      dir => MISC_SPECIAL_EL,
148      div => DIV_EL,
149      dl => MISC_SPECIAL_EL,
150      dt => DT_EL,
151      em => FORMATTING_EL,
152      embed => MISC_SPECIAL_EL,
153      fieldset => MISC_SPECIAL_EL,
154      font => FORMATTING_EL,
155      form => FORM_EL,
156      frame => MISC_SPECIAL_EL,
157      frameset => FRAMESET_EL,
158      h1 => HEADING_EL,
159      h2 => HEADING_EL,
160      h3 => HEADING_EL,
161      h4 => HEADING_EL,
162      h5 => HEADING_EL,
163      h6 => HEADING_EL,
164      head => MISC_SPECIAL_EL,
165      hr => MISC_SPECIAL_EL,
166      html => HTML_EL,
167      i => FORMATTING_EL,
168      iframe => MISC_SPECIAL_EL,
169      img => MISC_SPECIAL_EL,
170      input => MISC_SPECIAL_EL,
171      isindex => MISC_SPECIAL_EL,
172      li => LI_EL,
173      link => MISC_SPECIAL_EL,
174      listing => MISC_SPECIAL_EL,
175      marquee => MISC_SCOPING_EL,
176      menu => MISC_SPECIAL_EL,
177      meta => MISC_SPECIAL_EL,
178      nobr => NOBR_EL | FORMATTING_EL,
179      noembed => MISC_SPECIAL_EL,
180      noframes => MISC_SPECIAL_EL,
181      noscript => MISC_SPECIAL_EL,
182      object => MISC_SCOPING_EL,
183      ol => MISC_SPECIAL_EL,
184      optgroup => OPTGROUP_EL,
185      option => OPTION_EL,
186      p => P_EL,
187      param => MISC_SPECIAL_EL,
188      plaintext => MISC_SPECIAL_EL,
189      pre => MISC_SPECIAL_EL,
190      rp => RUBY_COMPONENT_EL,
191      rt => RUBY_COMPONENT_EL,
192      ruby => RUBY_EL,
193      s => FORMATTING_EL,
194      script => MISC_SPECIAL_EL,
195      select => SELECT_EL,
196      small => FORMATTING_EL,
197      spacer => MISC_SPECIAL_EL,
198      strike => FORMATTING_EL,
199      strong => FORMATTING_EL,
200      style => MISC_SPECIAL_EL,
201      table => TABLE_EL,
202      tbody => TABLE_ROW_GROUP_EL,
203      td => TABLE_CELL_EL,
204      textarea => MISC_SPECIAL_EL,
205      tfoot => TABLE_ROW_GROUP_EL,
206      th => TABLE_CELL_EL,
207      thead => TABLE_ROW_GROUP_EL,
208      title => MISC_SPECIAL_EL,
209      tr => TABLE_ROW_EL,
210      tt => FORMATTING_EL,
211      u => FORMATTING_EL,
212      ul => MISC_SPECIAL_EL,
213      wbr => MISC_SPECIAL_EL,
214    };
215    
216    my $el_category_f = {
217      $MML_NS => {
218        'annotation-xml' => MML_AXML_EL,
219        mi => FOREIGN_FLOW_CONTENT_EL,
220        mo => FOREIGN_FLOW_CONTENT_EL,
221        mn => FOREIGN_FLOW_CONTENT_EL,
222        ms => FOREIGN_FLOW_CONTENT_EL,
223        mtext => FOREIGN_FLOW_CONTENT_EL,
224      },
225      $SVG_NS => {
226        foreignObject => FOREIGN_FLOW_CONTENT_EL,
227        desc => FOREIGN_FLOW_CONTENT_EL,
228        title => FOREIGN_FLOW_CONTENT_EL,
229      },
230      ## NOTE: In addition, FOREIGN_EL is set to non-HTML elements.
231    };
232    
233    my $svg_attr_name = {
234      attributename => 'attributeName',
235      attributetype => 'attributeType',
236      basefrequency => 'baseFrequency',
237      baseprofile => 'baseProfile',
238      calcmode => 'calcMode',
239      clippathunits => 'clipPathUnits',
240      contentscripttype => 'contentScriptType',
241      contentstyletype => 'contentStyleType',
242      diffuseconstant => 'diffuseConstant',
243      edgemode => 'edgeMode',
244      externalresourcesrequired => 'externalResourcesRequired',
245      filterres => 'filterRes',
246      filterunits => 'filterUnits',
247      glyphref => 'glyphRef',
248      gradienttransform => 'gradientTransform',
249      gradientunits => 'gradientUnits',
250      kernelmatrix => 'kernelMatrix',
251      kernelunitlength => 'kernelUnitLength',
252      keypoints => 'keyPoints',
253      keysplines => 'keySplines',
254      keytimes => 'keyTimes',
255      lengthadjust => 'lengthAdjust',
256      limitingconeangle => 'limitingConeAngle',
257      markerheight => 'markerHeight',
258      markerunits => 'markerUnits',
259      markerwidth => 'markerWidth',
260      maskcontentunits => 'maskContentUnits',
261      maskunits => 'maskUnits',
262      numoctaves => 'numOctaves',
263      pathlength => 'pathLength',
264      patterncontentunits => 'patternContentUnits',
265      patterntransform => 'patternTransform',
266      patternunits => 'patternUnits',
267      pointsatx => 'pointsAtX',
268      pointsaty => 'pointsAtY',
269      pointsatz => 'pointsAtZ',
270      preservealpha => 'preserveAlpha',
271      preserveaspectratio => 'preserveAspectRatio',
272      primitiveunits => 'primitiveUnits',
273      refx => 'refX',
274      refy => 'refY',
275      repeatcount => 'repeatCount',
276      repeatdur => 'repeatDur',
277      requiredextensions => 'requiredExtensions',
278      requiredfeatures => 'requiredFeatures',
279      specularconstant => 'specularConstant',
280      specularexponent => 'specularExponent',
281      spreadmethod => 'spreadMethod',
282      startoffset => 'startOffset',
283      stddeviation => 'stdDeviation',
284      stitchtiles => 'stitchTiles',
285      surfacescale => 'surfaceScale',
286      systemlanguage => 'systemLanguage',
287      tablevalues => 'tableValues',
288      targetx => 'targetX',
289      targety => 'targetY',
290      textlength => 'textLength',
291      viewbox => 'viewBox',
292      viewtarget => 'viewTarget',
293      xchannelselector => 'xChannelSelector',
294      ychannelselector => 'yChannelSelector',
295      zoomandpan => 'zoomAndPan',
296  };  };
297    
298    my $foreign_attr_xname = {
299      'xlink:actuate' => [$XLINK_NS, ['xlink', 'actuate']],
300      'xlink:arcrole' => [$XLINK_NS, ['xlink', 'arcrole']],
301      'xlink:href' => [$XLINK_NS, ['xlink', 'href']],
302      'xlink:role' => [$XLINK_NS, ['xlink', 'role']],
303      'xlink:show' => [$XLINK_NS, ['xlink', 'show']],
304      'xlink:title' => [$XLINK_NS, ['xlink', 'title']],
305      'xlink:type' => [$XLINK_NS, ['xlink', 'type']],
306      'xml:base' => [$XML_NS, ['xml', 'base']],
307      'xml:lang' => [$XML_NS, ['xml', 'lang']],
308      'xml:space' => [$XML_NS, ['xml', 'space']],
309      'xmlns' => [$XMLNS_NS, [undef, 'xmlns']],
310      'xmlns:xlink' => [$XMLNS_NS, ['xmlns', 'xlink']],
311    };
312    
313    ## ISSUE: xmlns:xlink="non-xlink-ns" is not an error.
314    
315  my $c1_entity_char = {  my $c1_entity_char = {
316    0x80 => 0x20AC,    0x80 => 0x20AC,
317    0x81 => 0xFFFD,    0x81 => 0xFFFD,
# Line 61  my $c1_entity_char = { Line 347  my $c1_entity_char = {
347    0x9F => 0x0178,    0x9F => 0x0178,
348  }; # $c1_entity_char  }; # $c1_entity_char
349    
 my $special_category = {  
   address => 1, area => 1, base => 1, basefont => 1, bgsound => 1,  
   blockquote => 1, body => 1, br => 1, center => 1, col => 1, colgroup => 1,  
   dd => 1, dir => 1, div => 1, dl => 1, dt => 1, embed => 1, fieldset => 1,  
   form => 1, frame => 1, frameset => 1, h1 => 1, h2 => 1, h3 => 1,  
   h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, iframe => 1, image => 1,  
   img => 1, input => 1, isindex => 1, li => 1, link => 1, listing => 1,  
   menu => 1, meta => 1, noembed => 1, noframes => 1, noscript => 1,  
   ol => 1, optgroup => 1, option => 1, p => 1, param => 1, plaintext => 1,  
   pre => 1, script => 1, select => 1, spacer => 1, style => 1, tbody => 1,  
   textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,  
 };  
 my $scoping_category = {  
   button => 1, caption => 1, html => 1, marquee => 1, object => 1,  
   table => 1, td => 1, th => 1,  
 };  
 my $formatting_category = {  
   a => 1, b => 1, big => 1, em => 1, font => 1, i => 1, nobr => 1,  
   s => 1, small => 1, strile => 1, strong => 1, tt => 1, u => 1,  
 };  
 # $phrasing_category: all other elements  
   
350  sub parse_byte_string ($$$$;$) {  sub parse_byte_string ($$$$;$) {
351      my $self = shift;
352      my $charset_name = shift;
353      open my $input, '<', ref $_[0] ? $_[0] : \($_[0]);
354      return $self->parse_byte_stream ($charset_name, $input, @_[1..$#_]);
355    } # parse_byte_string
356    
357    sub parse_byte_stream ($$$$;$) {
358    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
359    my $charset = shift;    my $charset_name = shift;
360    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;  
   }  
361    
362    $self->{change_encoding} = sub {    my $onerror = $_[2] || sub {
363      my $self = shift;      my (%opt) = @_;
364      my $charset = lc shift;      warn "Parse error ($opt{type})\n";
365      ## TODO: if $charset is supported    };
366      ## TODO: normalize charset name    $self->{parse_error} = $onerror; # updated later by parse_char_string
367    
368      ## "Change the encoding" algorithm:    ## HTML5 encoding sniffing algorithm
369      require Message::Charset::Info;
370      ## Step 1        my $charset;
371      if ($charset eq 'utf-16') { ## ISSUE: UTF-16BE -> UTF-8? UTF-16LE -> UTF-8?    my $buffer;
372        $charset = 'utf-8';    my ($char_stream, $e_status);
373    
374      SNIFFING: {
375    
376        ## Step 1
377        if (defined $charset_name) {
378          $charset = Message::Charset::Info->get_by_iana_name ($charset_name);
379    
380          ## ISSUE: Unsupported encoding is not ignored according to the spec.
381          ($char_stream, $e_status) = $charset->get_decode_handle
382              ($byte_stream, allow_error_reporting => 1,
383               allow_fallback => 1);
384          if ($char_stream) {
385            $self->{confident} = 1;
386            last SNIFFING;
387          } else {
388            ## TODO: unsupported error
389          }
390      }      }
391    
392      ## Step 2      ## Step 2
393      if (defined $self->{input_encoding} and      my $byte_buffer = '';
394          $self->{input_encoding} eq $charset) {      for (1..1024) {
395          my $char = $byte_stream->getc;
396          last unless defined $char;
397          $byte_buffer .= $char;
398        } ## TODO: timeout
399    
400        ## Step 3
401        if ($byte_buffer =~ /^\xFE\xFF/) {
402          $charset = Message::Charset::Info->get_by_iana_name ('utf-16be');
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;        $self->{confident} = 1;
407        return;        last SNIFFING;
408        } elsif ($byte_buffer =~ /^\xFF\xFE/) {
409          $charset = Message::Charset::Info->get_by_iana_name ('utf-16le');
410          ($char_stream, $e_status) = $charset->get_decode_handle
411              ($byte_stream, allow_error_reporting => 1,
412               allow_fallback => 1, byte_buffer => \$byte_buffer);
413          $self->{confident} = 1;
414          last SNIFFING;
415        } elsif ($byte_buffer =~ /^\xEF\xBB\xBF/) {
416          $charset = Message::Charset::Info->get_by_iana_name ('utf-8');
417          ($char_stream, $e_status) = $charset->get_decode_handle
418              ($byte_stream, allow_error_reporting => 1,
419               allow_fallback => 1, byte_buffer => \$byte_buffer);
420          $self->{confident} = 1;
421          last SNIFFING;
422      }      }
423    
424      !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.      ## Step 4
425          ':'.$charset, level => 'w');      ## TODO: <meta charset>
426    
427      ## Step 3      ## Step 5
428      # if (can) {      ## TODO: from history
       ## change the encoding on the fly.  
       #$self->{confident} = 1;  
       #return;  
     # }  
429    
430      ## Step 4      ## Step 6
431      throw Whatpm::HTML::RestartParser (charset => $charset);      require Whatpm::Charset::UniversalCharDet;
432        $charset_name = Whatpm::Charset::UniversalCharDet->detect_byte_string
433            ($byte_buffer);
434        if (defined $charset_name) {
435          $charset = Message::Charset::Info->get_by_iana_name ($charset_name);
436    
437          ## ISSUE: Unsupported encoding is not ignored according to the spec.
438          require Whatpm::Charset::DecodeHandle;
439          $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
440              ($byte_stream);
441          ($char_stream, $e_status) = $charset->get_decode_handle
442              ($buffer, allow_error_reporting => 1,
443               allow_fallback => 1, byte_buffer => \$byte_buffer);
444          if ($char_stream) {
445            $buffer->{buffer} = $byte_buffer;
446            !!!parse-error (type => 'sniffing:chardet',
447                            text => $charset_name,
448                            level => $self->{level}->{info},
449                            layer => 'encode',
450                            line => 1, column => 1);
451            $self->{confident} = 0;
452            last SNIFFING;
453          }
454        }
455    
456        ## Step 7: default
457        ## TODO: Make this configurable.
458        $charset = Message::Charset::Info->get_by_iana_name ('windows-1252');
459            ## NOTE: We choose |windows-1252| here, since |utf-8| should be
460            ## detectable in the step 6.
461        require Whatpm::Charset::DecodeHandle;
462        $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
463            ($byte_stream);
464        ($char_stream, $e_status)
465            = $charset->get_decode_handle ($buffer,
466                                           allow_error_reporting => 1,
467                                           allow_fallback => 1,
468                                           byte_buffer => \$byte_buffer);
469        $buffer->{buffer} = $byte_buffer;
470        !!!parse-error (type => 'sniffing:default',
471                        text => 'windows-1252',
472                        level => $self->{level}->{info},
473                        line => 1, column => 1,
474                        layer => 'encode');
475        $self->{confident} = 0;
476      } # SNIFFING
477    
478      $self->{input_encoding} = $charset->get_iana_name;
479      if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
480        !!!parse-error (type => 'chardecode:fallback',
481                        text => $self->{input_encoding},
482                        level => $self->{level}->{uncertain},
483                        line => 1, column => 1,
484                        layer => 'encode');
485      } elsif (not ($e_status &
486                    Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL())) {
487        !!!parse-error (type => 'chardecode:no error',
488                        text => $self->{input_encoding},
489                        level => $self->{level}->{uncertain},
490                        line => 1, column => 1,
491                        layer => 'encode');
492      }
493    
494      $self->{change_encoding} = sub {
495        my $self = shift;
496        $charset_name = shift;
497        my $token = shift;
498    
499        $charset = Message::Charset::Info->get_by_iana_name ($charset_name);
500        ($char_stream, $e_status) = $charset->get_decode_handle
501            ($byte_stream, allow_error_reporting => 1, allow_fallback => 1,
502             byte_buffer => \ $buffer->{buffer});
503        
504        if ($char_stream) { # if supported
505          ## "Change the encoding" algorithm:
506    
507          ## Step 1    
508          if ($charset->{category} &
509              Message::Charset::Info::CHARSET_CATEGORY_UTF16 ()) {
510            $charset = Message::Charset::Info->get_by_iana_name ('utf-8');
511            ($char_stream, $e_status) = $charset->get_decode_handle
512                ($byte_stream,
513                 byte_buffer => \ $buffer->{buffer});
514          }
515          $charset_name = $charset->get_iana_name;
516          
517          ## Step 2
518          if (defined $self->{input_encoding} and
519              $self->{input_encoding} eq $charset_name) {
520            !!!parse-error (type => 'charset label:matching',
521                            text => $charset_name,
522                            level => $self->{level}->{info});
523            $self->{confident} = 1;
524            return;
525          }
526    
527          !!!parse-error (type => 'charset label detected',
528                          text => $self->{input_encoding},
529                          value => $charset_name,
530                          level => $self->{level}->{warn},
531                          token => $token);
532          
533          ## Step 3
534          # if (can) {
535            ## change the encoding on the fly.
536            #$self->{confident} = 1;
537            #return;
538          # }
539          
540          ## Step 4
541          throw Whatpm::HTML::RestartParser ();
542        }
543    }; # $self->{change_encoding}    }; # $self->{change_encoding}
544    
545      my $char_onerror = sub {
546        my (undef, $type, %opt) = @_;
547        !!!parse-error (layer => 'encode',
548                        %opt, type => $type,
549                        line => $self->{line}, column => $self->{column} + 1);
550        if ($opt{octets}) {
551          ${$opt{octets}} = "\x{FFFD}"; # relacement character
552        }
553      };
554      $char_stream->onerror ($char_onerror);
555    
556    my @args = @_; shift @args; # $s    my @args = @_; shift @args; # $s
557    my $return;    my $return;
558    try {    try {
559      $return = $self->parse_char_string ($s, @args);        $return = $self->parse_char_stream ($char_stream, @args);  
560    } catch Whatpm::HTML::RestartParser with {    } catch Whatpm::HTML::RestartParser with {
561      my $charset = shift->{charset};      ## NOTE: Invoked after {change_encoding}.
562      $s = \ (Encode::decode ($charset, $$bytes_s));      
563      $self->{input_encoding} = $charset; ## TODO: normalize      $self->{input_encoding} = $charset->get_iana_name;
564        if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
565          !!!parse-error (type => 'chardecode:fallback',
566                          text => $self->{input_encoding},
567                          level => $self->{level}->{uncertain},
568                          line => 1, column => 1,
569                          layer => 'encode');
570        } elsif (not ($e_status &
571                      Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL())) {
572          !!!parse-error (type => 'chardecode:no error',
573                          text => $self->{input_encoding},
574                          level => $self->{level}->{uncertain},
575                          line => 1, column => 1,
576                          layer => 'encode');
577        }
578      $self->{confident} = 1;      $self->{confident} = 1;
579      $return = $self->parse_char_string ($s, @args);      $char_stream->onerror ($char_onerror);
580        $return = $self->parse_char_stream ($char_stream, @args);
581    };    };
582    return $return;    return $return;
583  } # parse_byte_string  } # parse_byte_stream
584    
585  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM
586  ## 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 591  sub parse_byte_string ($$$$;$) {
591  ## 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
592  ## strip the BOM and never strip any ZWNBSP.  ## strip the BOM and never strip any ZWNBSP.
593    
594  *parse_char_string = \&parse_string;  sub parse_char_string ($$$;$) {
595      my $self = shift;
596      require utf8;
597      my $s = ref $_[0] ? $_[0] : \($_[0]);
598      open my $input, '<' . (utf8::is_utf8 ($$s) ? ':utf8' : ''), $s;
599      return $self->parse_char_stream ($input, @_[1..$#_]);
600    } # parse_char_string
601    *parse_string = \&parse_char_string;
602    
603  sub parse_string ($$$;$) {  sub parse_char_stream ($$$;$) {
604    my $self = ref $_[0] ? shift : shift->new;    my $self = ref $_[0] ? shift : shift->new;
605    my $s = ref $_[0] ? $_[0] : \($_[0]);    my $input = $_[0];
606    $self->{document} = $_[1];    $self->{document} = $_[1];
607    @{$self->{document}->child_nodes} = ();    @{$self->{document}->child_nodes} = ();
608    
# Line 177  sub parse_string ($$$;$) { Line 613  sub parse_string ($$$;$) {
613        if defined $self->{input_encoding};        if defined $self->{input_encoding};
614    
615    my $i = 0;    my $i = 0;
616    my $line = 1;    $self->{line_prev} = $self->{line} = 1;
617    my $column = 0;    $self->{column_prev} = $self->{column} = 0;
618    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
619      my $self = shift;      my $self = shift;
620    
621      pop @{$self->{prev_char}};      pop @{$self->{prev_char}};
622      unshift @{$self->{prev_char}}, $self->{next_char};      unshift @{$self->{prev_char}}, $self->{next_char};
623    
624      $self->{next_char} = -1 and return if $i >= length $$s;      my $char;
625      $self->{next_char} = ord substr $$s, $i++, 1;      if (defined $self->{next_next_char}) {
626      $column++;        $char = $self->{next_next_char};
627          delete $self->{next_next_char};
628        } else {
629          $char = $input->getc;
630        }
631        $self->{next_char} = -1 and return unless defined $char;
632        $self->{next_char} = ord $char;
633    
634        ($self->{line_prev}, $self->{column_prev})
635            = ($self->{line}, $self->{column});
636        $self->{column}++;
637            
638      if ($self->{next_char} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
639        $line++;        !!!cp ('j1');
640        $column = 0;        $self->{line}++;
641          $self->{column} = 0;
642      } elsif ($self->{next_char} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
643        $i++ if substr ($$s, $i, 1) eq "\x0A";        !!!cp ('j2');
644          my $next = $input->getc;
645          if (defined $next and $next ne "\x0A") {
646            $self->{next_next_char} = $next;
647          }
648        $self->{next_char} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
649        $line++;        $self->{line}++;
650        $column = 0;        $self->{column} = 0;
651      } elsif ($self->{next_char} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
652          !!!cp ('j3');
653        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
654      } elsif ($self->{next_char} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
655          !!!cp ('j4');
656        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
657        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
658        } elsif ($self->{next_char} <= 0x0008 or
659                 (0x000E <= $self->{next_char} and $self->{next_char} <= 0x001F) or
660                 (0x007F <= $self->{next_char} and $self->{next_char} <= 0x009F) or
661                 (0xD800 <= $self->{next_char} and $self->{next_char} <= 0xDFFF) or
662                 (0xFDD0 <= $self->{next_char} and $self->{next_char} <= 0xFDDF) or
663                 {
664                  0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
665                  0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
666                  0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
667                  0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
668                  0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
669                  0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
670                  0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
671                  0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
672                  0x10FFFE => 1, 0x10FFFF => 1,
673                 }->{$self->{next_char}}) {
674          !!!cp ('j5');
675          if ($self->{next_char} < 0x10000) {
676            !!!parse-error (type => 'control char',
677                            text => (sprintf 'U+%04X', $self->{next_char}));
678          } else {
679            !!!parse-error (type => 'control char',
680                            text => (sprintf 'U-%08X', $self->{next_char}));
681          }
682      }      }
683    };    };
684    $self->{prev_char} = [-1, -1, -1];    $self->{prev_char} = [-1, -1, -1];
# Line 209  sub parse_string ($$$;$) { Line 686  sub parse_string ($$$;$) {
686    
687    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
688      my (%opt) = @_;      my (%opt) = @_;
689      warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";      my $line = $opt{token} ? $opt{token}->{line} : $opt{line};
690        my $column = $opt{token} ? $opt{token}->{column} : $opt{column};
691        warn "Parse error ($opt{type}) at line $line column $column\n";
692    };    };
693    $self->{parse_error} = sub {    $self->{parse_error} = sub {
694      $onerror->(@_, line => $line, column => $column);      $onerror->(line => $self->{line}, column => $self->{column}, @_);
695    };    };
696    
697    $self->_initialize_tokenizer;    $self->_initialize_tokenizer;
# Line 220  sub parse_string ($$$;$) { Line 699  sub parse_string ($$$;$) {
699    $self->_construct_tree;    $self->_construct_tree;
700    $self->_terminate_tree_constructor;    $self->_terminate_tree_constructor;
701    
702      delete $self->{parse_error}; # remove loop
703    
704    return $self->{document};    return $self->{document};
705  } # parse_string  } # parse_char_stream
706    
707  sub new ($) {  sub new ($) {
708    my $class = shift;    my $class = shift;
709    my $self = bless {}, $class;    my $self = bless {
710        level => {must => 'm',
711                  warn => 'w',
712                  info => 'i',
713                  uncertain => 'u'},
714      }, $class;
715    $self->{set_next_char} = sub {    $self->{set_next_char} = sub {
716      $self->{next_char} = -1;      $self->{next_char} = -1;
717    };    };
# Line 287  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO Line 773  sub DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUO
773  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }  sub AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE () { 31 }
774  sub BOGUS_DOCTYPE_STATE () { 32 }  sub BOGUS_DOCTYPE_STATE () { 32 }
775  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }  sub AFTER_ATTRIBUTE_VALUE_QUOTED_STATE () { 33 }
776    sub SELF_CLOSING_START_TAG_STATE () { 34 }
777    sub CDATA_BLOCK_STATE () { 35 }
778    
779  sub DOCTYPE_TOKEN () { 1 }  sub DOCTYPE_TOKEN () { 1 }
780  sub COMMENT_TOKEN () { 2 }  sub COMMENT_TOKEN () { 2 }
# Line 303  sub TABLE_IMS ()      { 0b1000000 } Line 791  sub TABLE_IMS ()      { 0b1000000 }
791  sub ROW_IMS ()        { 0b10000000 }  sub ROW_IMS ()        { 0b10000000 }
792  sub BODY_AFTER_IMS () { 0b100000000 }  sub BODY_AFTER_IMS () { 0b100000000 }
793  sub FRAME_IMS ()      { 0b1000000000 }  sub FRAME_IMS ()      { 0b1000000000 }
794    sub SELECT_IMS ()     { 0b10000000000 }
795    sub IN_FOREIGN_CONTENT_IM () { 0b100000000000 }
796        ## NOTE: "in foreign content" insertion mode is special; it is combined
797        ## with the secondary insertion mode.  In this parser, they are stored
798        ## together in the bit-or'ed form.
799    
800    ## NOTE: "initial" and "before html" insertion modes have no constants.
801    
802    ## NOTE: "after after body" insertion mode.
803  sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }  sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
804    
805    ## NOTE: "after after frameset" insertion mode.
806  sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }  sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
807    
808  sub IN_HEAD_IM () { HEAD_IMS | 0b00 }  sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
809  sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }  sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
810  sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }  sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
# Line 319  sub IN_TABLE_IM () { TABLE_IMS } Line 818  sub IN_TABLE_IM () { TABLE_IMS }
818  sub AFTER_BODY_IM () { BODY_AFTER_IMS }  sub AFTER_BODY_IM () { BODY_AFTER_IMS }
819  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
820  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
821  sub IN_SELECT_IM () { 0b01 }  sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
822    sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
823  sub IN_COLUMN_GROUP_IM () { 0b10 }  sub IN_COLUMN_GROUP_IM () { 0b10 }
824    
825  ## Implementations MUST act as if state machine in the spec  ## Implementations MUST act as if state machine in the spec
# Line 332  sub _initialize_tokenizer ($) { Line 832  sub _initialize_tokenizer ($) {
832    undef $self->{current_attribute};    undef $self->{current_attribute};
833    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
834    undef $self->{last_attribute_value_state};    undef $self->{last_attribute_value_state};
835      delete $self->{self_closing};
836    $self->{char} = [];    $self->{char} = [];
837    # $self->{next_char}    # $self->{next_char}
838    !!!next-input-character;    !!!next-input-character;
# Line 352  sub _initialize_tokenizer ($) { Line 853  sub _initialize_tokenizer ($) {
853  ##        ->{value}  ##        ->{value}
854  ##        ->{has_reference} == 1 or 0  ##        ->{has_reference} == 1 or 0
855  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)  ##   ->{data} (COMMENT_TOKEN, CHARACTER_TOKEN)
856    ## NOTE: The "self-closing flag" is hold as |$self->{self_closing}|.
857    ##     |->{self_closing}| is used to save the value of |$self->{self_closing}|
858    ##     while the token is pushed back to the stack.
859    
860  ## Emitted token MUST immediately be handled by the tree construction state.  ## Emitted token MUST immediately be handled by the tree construction state.
861    
# Line 378  sub _initialize_tokenizer ($) { Line 882  sub _initialize_tokenizer ($) {
882    
883  sub _get_next_token ($) {  sub _get_next_token ($) {
884    my $self = shift;    my $self = shift;
885    
886      if ($self->{self_closing}) {
887        !!!parse-error (type => 'nestc', token => $self->{current_token});
888        ## NOTE: The |self_closing| flag is only set by start tag token.
889        ## In addition, when a start tag token is emitted, it is always set to
890        ## |current_token|.
891        delete $self->{self_closing};
892      }
893    
894    if (@{$self->{token}}) {    if (@{$self->{token}}) {
895        $self->{self_closing} = $self->{token}->[0]->{self_closing};
896      return shift @{$self->{token}};      return shift @{$self->{token}};
897    }    }
898    
# Line 441  sub _get_next_token ($) { Line 955  sub _get_next_token ($) {
955          #          #
956        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
957          !!!cp (11);          !!!cp (11);
958          !!!emit ({type => END_OF_FILE_TOKEN});          !!!emit ({type => END_OF_FILE_TOKEN,
959                      line => $self->{line}, column => $self->{column}});
960          last A; ## TODO: ok?          last A; ## TODO: ok?
961        } else {        } else {
962          !!!cp (12);          !!!cp (12);
963        }        }
964        # Anything else        # Anything else
965        my $token = {type => CHARACTER_TOKEN,        my $token = {type => CHARACTER_TOKEN,
966                     data => chr $self->{next_char}};                     data => chr $self->{next_char},
967                       line => $self->{line}, column => $self->{column},
968                      };
969        ## Stay in the data state        ## Stay in the data state
970        !!!next-input-character;        !!!next-input-character;
971    
# Line 457  sub _get_next_token ($) { Line 974  sub _get_next_token ($) {
974        redo A;        redo A;
975      } elsif ($self->{state} == ENTITY_DATA_STATE) {      } elsif ($self->{state} == ENTITY_DATA_STATE) {
976        ## (cannot happen in CDATA state)        ## (cannot happen in CDATA state)
977    
978          my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
979                
980        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);
981    
# Line 465  sub _get_next_token ($) { Line 984  sub _get_next_token ($) {
984    
985        unless (defined $token) {        unless (defined $token) {
986          !!!cp (13);          !!!cp (13);
987          !!!emit ({type => CHARACTER_TOKEN, data => '&'});          !!!emit ({type => CHARACTER_TOKEN, data => '&',
988                      line => $l, column => $c,
989                     });
990        } else {        } else {
991          !!!cp (14);          !!!cp (14);
992          !!!emit ($token);          !!!emit ($token);
# Line 484  sub _get_next_token ($) { Line 1005  sub _get_next_token ($) {
1005            ## reconsume            ## reconsume
1006            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1007    
1008            !!!emit ({type => CHARACTER_TOKEN, data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<',
1009                        line => $self->{line_prev},
1010                        column => $self->{column_prev},
1011                       });
1012    
1013            redo A;            redo A;
1014          }          }
# Line 504  sub _get_next_token ($) { Line 1028  sub _get_next_token ($) {
1028            !!!cp (19);            !!!cp (19);
1029            $self->{current_token}            $self->{current_token}
1030              = {type => START_TAG_TOKEN,              = {type => START_TAG_TOKEN,
1031                 tag_name => chr ($self->{next_char} + 0x0020)};                 tag_name => chr ($self->{next_char} + 0x0020),
1032                   line => $self->{line_prev},
1033                   column => $self->{column_prev}};
1034            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
1035            !!!next-input-character;            !!!next-input-character;
1036            redo A;            redo A;
# Line 512  sub _get_next_token ($) { Line 1038  sub _get_next_token ($) {
1038                   $self->{next_char} <= 0x007A) { # a..z                   $self->{next_char} <= 0x007A) { # a..z
1039            !!!cp (20);            !!!cp (20);
1040            $self->{current_token} = {type => START_TAG_TOKEN,            $self->{current_token} = {type => START_TAG_TOKEN,
1041                              tag_name => chr ($self->{next_char})};                                      tag_name => chr ($self->{next_char}),
1042                                        line => $self->{line_prev},
1043                                        column => $self->{column_prev}};
1044            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
1045            !!!next-input-character;            !!!next-input-character;
1046            redo A;            redo A;
1047          } elsif ($self->{next_char} == 0x003E) { # >          } elsif ($self->{next_char} == 0x003E) { # >
1048            !!!cp (21);            !!!cp (21);
1049            !!!parse-error (type => 'empty start tag');            !!!parse-error (type => 'empty start tag',
1050                              line => $self->{line_prev},
1051                              column => $self->{column_prev});
1052            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1053            !!!next-input-character;            !!!next-input-character;
1054    
1055            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});            !!!emit ({type => CHARACTER_TOKEN, data => '<>',
1056                        line => $self->{line_prev},
1057                        column => $self->{column_prev},
1058                       });
1059    
1060            redo A;            redo A;
1061          } elsif ($self->{next_char} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
1062            !!!cp (22);            !!!cp (22);
1063            !!!parse-error (type => 'pio');            !!!parse-error (type => 'pio',
1064                              line => $self->{line_prev},
1065                              column => $self->{column_prev});
1066            $self->{state} = BOGUS_COMMENT_STATE;            $self->{state} = BOGUS_COMMENT_STATE;
1067              $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1068                                        line => $self->{line_prev},
1069                                        column => $self->{column_prev},
1070                                       };
1071            ## $self->{next_char} is intentionally left as is            ## $self->{next_char} is intentionally left as is
1072            redo A;            redo A;
1073          } else {          } else {
1074            !!!cp (23);            !!!cp (23);
1075            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago',
1076                              line => $self->{line_prev},
1077                              column => $self->{column_prev});
1078            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1079            ## reconsume            ## reconsume
1080    
1081            !!!emit ({type => CHARACTER_TOKEN, data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<',
1082                        line => $self->{line_prev},
1083                        column => $self->{column_prev},
1084                       });
1085    
1086            redo A;            redo A;
1087          }          }
# Line 545  sub _get_next_token ($) { Line 1089  sub _get_next_token ($) {
1089          die "$0: $self->{content_model} in tag open";          die "$0: $self->{content_model} in tag open";
1090        }        }
1091      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
1092          my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"
1093        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
1094          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
1095    
1096            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
1097            my @next_char;            my @next_char;
1098            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 563  sub _get_next_token ($) { Line 1109  sub _get_next_token ($) {
1109                !!!back-next-input-character (@next_char);                !!!back-next-input-character (@next_char);
1110                $self->{state} = DATA_STATE;                $self->{state} = DATA_STATE;
1111    
1112                !!!emit ({type => CHARACTER_TOKEN, data => '</'});                !!!emit ({type => CHARACTER_TOKEN, data => '</',
1113                            line => $l, column => $c,
1114                           });
1115        
1116                redo A;                redo A;
1117              }              }
# Line 582  sub _get_next_token ($) { Line 1130  sub _get_next_token ($) {
1130              $self->{next_char} = shift @next_char; # reconsume              $self->{next_char} = shift @next_char; # reconsume
1131              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
1132              $self->{state} = DATA_STATE;              $self->{state} = DATA_STATE;
1133              !!!emit ({type => CHARACTER_TOKEN, data => '</'});              !!!emit ({type => CHARACTER_TOKEN, data => '</',
1134                          line => $l, column => $c,
1135                         });
1136              redo A;              redo A;
1137            } else {            } else {
1138              !!!cp (27);              !!!cp (27);
# Line 595  sub _get_next_token ($) { Line 1145  sub _get_next_token ($) {
1145            !!!cp (28);            !!!cp (28);
1146            # next-input-character is already done            # next-input-character is already done
1147            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1148            !!!emit ({type => CHARACTER_TOKEN, data => '</'});            !!!emit ({type => CHARACTER_TOKEN, data => '</',
1149                        line => $l, column => $c,
1150                       });
1151            redo A;            redo A;
1152          }          }
1153        }        }
# Line 603  sub _get_next_token ($) { Line 1155  sub _get_next_token ($) {
1155        if (0x0041 <= $self->{next_char} and        if (0x0041 <= $self->{next_char} and
1156            $self->{next_char} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
1157          !!!cp (29);          !!!cp (29);
1158          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token}
1159                            tag_name => chr ($self->{next_char} + 0x0020)};              = {type => END_TAG_TOKEN,
1160                   tag_name => chr ($self->{next_char} + 0x0020),
1161                   line => $l, column => $c};
1162          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
1163          !!!next-input-character;          !!!next-input-character;
1164          redo A;          redo A;
# Line 612  sub _get_next_token ($) { Line 1166  sub _get_next_token ($) {
1166                 $self->{next_char} <= 0x007A) { # a..z                 $self->{next_char} <= 0x007A) { # a..z
1167          !!!cp (30);          !!!cp (30);
1168          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token} = {type => END_TAG_TOKEN,
1169                            tag_name => chr ($self->{next_char})};                                    tag_name => chr ($self->{next_char}),
1170                                      line => $l, column => $c};
1171          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
1172          !!!next-input-character;          !!!next-input-character;
1173          redo A;          redo A;
1174        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1175          !!!cp (31);          !!!cp (31);
1176          !!!parse-error (type => 'empty end tag');          !!!parse-error (type => 'empty end tag',
1177                            line => $self->{line_prev}, ## "<" in "</>"
1178                            column => $self->{column_prev} - 1);
1179          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1180          !!!next-input-character;          !!!next-input-character;
1181          redo A;          redo A;
# Line 628  sub _get_next_token ($) { Line 1185  sub _get_next_token ($) {
1185          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1186          # reconsume          # reconsume
1187    
1188          !!!emit ({type => CHARACTER_TOKEN, data => '</'});          !!!emit ({type => CHARACTER_TOKEN, data => '</',
1189                      line => $l, column => $c,
1190                     });
1191    
1192          redo A;          redo A;
1193        } else {        } else {
1194          !!!cp (33);          !!!cp (33);
1195          !!!parse-error (type => 'bogus end tag');          !!!parse-error (type => 'bogus end tag');
1196          $self->{state} = BOGUS_COMMENT_STATE;          $self->{state} = BOGUS_COMMENT_STATE;
1197            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1198                                      line => $self->{line_prev}, # "<" of "</"
1199                                      column => $self->{column_prev} - 1,
1200                                     };
1201          ## $self->{next_char} is intentionally left as is          ## $self->{next_char} is intentionally left as is
1202          redo A;          redo A;
1203        }        }
# Line 651  sub _get_next_token ($) { Line 1214  sub _get_next_token ($) {
1214        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1215          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1216            !!!cp (35);            !!!cp (35);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1217            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1218          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1219            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1220            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
1221              !!!cp (36);            #  ## NOTE: This should never be reached.
1222              !!!parse-error (type => 'end tag attribute');            #  !!! cp (36);
1223            } else {            #  !!! parse-error (type => 'end tag attribute');
1224              #} else {
1225              !!!cp (37);              !!!cp (37);
1226            }            #}
1227          } else {          } else {
1228            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1229          }          }
# Line 683  sub _get_next_token ($) { Line 1245  sub _get_next_token ($) {
1245          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1246          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1247            !!!cp (39);            !!!cp (39);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1248            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1249          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1250            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1251            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
1252              !!!cp (40);            #  ## NOTE: This state should never be reached.
1253              !!!parse-error (type => 'end tag attribute');            #  !!! cp (40);
1254            } else {            #  !!! parse-error (type => 'end tag attribute');
1255              #} else {
1256              !!!cp (41);              !!!cp (41);
1257            }            #}
1258          } else {          } else {
1259            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
1260          }          }
# Line 704  sub _get_next_token ($) { Line 1265  sub _get_next_token ($) {
1265    
1266          redo A;          redo A;
1267        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1268            !!!cp (42);
1269            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1270          !!!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  
1271          redo A;          redo A;
1272        } else {        } else {
1273          !!!cp (44);          !!!cp (44);
# Line 739  sub _get_next_token ($) { Line 1290  sub _get_next_token ($) {
1290        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1291          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1292            !!!cp (46);            !!!cp (46);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1293            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1294          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1295            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 762  sub _get_next_token ($) { Line 1311  sub _get_next_token ($) {
1311        } elsif (0x0041 <= $self->{next_char} and        } elsif (0x0041 <= $self->{next_char} and
1312                 $self->{next_char} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1313          !!!cp (49);          !!!cp (49);
1314          $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),          $self->{current_attribute}
1315                                value => ''};              = {name => chr ($self->{next_char} + 0x0020),
1316                   value => '',
1317                   line => $self->{line}, column => $self->{column}};
1318          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1319          !!!next-input-character;          !!!next-input-character;
1320          redo A;          redo A;
1321        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1322            !!!cp (50);
1323            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1324          !!!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  
1325          redo A;          redo A;
1326        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1327          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1328          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1329            !!!cp (52);            !!!cp (52);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1330            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1331          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1332            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 817  sub _get_next_token ($) { Line 1356  sub _get_next_token ($) {
1356          } else {          } else {
1357            !!!cp (56);            !!!cp (56);
1358          }          }
1359          $self->{current_attribute} = {name => chr ($self->{next_char}),          $self->{current_attribute}
1360                                value => ''};              = {name => chr ($self->{next_char}),
1361                   value => '',
1362                   line => $self->{line}, column => $self->{column}};
1363          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1364          !!!next-input-character;          !!!next-input-character;
1365          redo A;          redo A;
# Line 828  sub _get_next_token ($) { Line 1369  sub _get_next_token ($) {
1369          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
1370              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
1371            !!!cp (57);            !!!cp (57);
1372            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});            !!!parse-error (type => 'duplicate attribute', text => $self->{current_attribute}->{name}, line => $self->{current_attribute}->{line}, column => $self->{current_attribute}->{column});
1373            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
1374          } else {          } else {
1375            !!!cp (58);            !!!cp (58);
# Line 857  sub _get_next_token ($) { Line 1398  sub _get_next_token ($) {
1398          $before_leave->();          $before_leave->();
1399          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1400            !!!cp (61);            !!!cp (61);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1401            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1402          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1403            !!!cp (62);            !!!cp (62);
# Line 883  sub _get_next_token ($) { Line 1422  sub _get_next_token ($) {
1422          !!!next-input-character;          !!!next-input-character;
1423          redo A;          redo A;
1424        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1425            !!!cp (64);
1426          $before_leave->();          $before_leave->();
1427            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1428          !!!next-input-character;          !!!next-input-character;
         if ($self->{next_char} == 0x003E and # >  
             $self->{current_token}->{type} == START_TAG_TOKEN and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           !!!cp (64);  
           #  
         } else {  
           !!!cp (65);  
           !!!parse-error (type => 'nestc');  
         }  
         $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;  
         # next-input-character is already done  
1429          redo A;          redo A;
1430        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1431          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1432          $before_leave->();          $before_leave->();
1433          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1434            !!!cp (66);            !!!cp (66);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1435            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1436          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1437            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 912  sub _get_next_token ($) { Line 1439  sub _get_next_token ($) {
1439              !!!cp (67);              !!!cp (67);
1440              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1441            } else {            } else {
1442                ## NOTE: This state should never be reached.
1443              !!!cp (68);              !!!cp (68);
1444            }            }
1445          } else {          } else {
# Line 954  sub _get_next_token ($) { Line 1482  sub _get_next_token ($) {
1482        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1483          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1484            !!!cp (73);            !!!cp (73);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1485            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1486          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1487            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 963  sub _get_next_token ($) { Line 1489  sub _get_next_token ($) {
1489              !!!cp (74);              !!!cp (74);
1490              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1491            } else {            } else {
1492                ## NOTE: This state should never be reached.
1493              !!!cp (75);              !!!cp (75);
1494            }            }
1495          } else {          } else {
# Line 977  sub _get_next_token ($) { Line 1504  sub _get_next_token ($) {
1504        } elsif (0x0041 <= $self->{next_char} and        } elsif (0x0041 <= $self->{next_char} and
1505                 $self->{next_char} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1506          !!!cp (76);          !!!cp (76);
1507          $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),          $self->{current_attribute}
1508                                value => ''};              = {name => chr ($self->{next_char} + 0x0020),
1509                   value => '',
1510                   line => $self->{line}, column => $self->{column}};
1511          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1512          !!!next-input-character;          !!!next-input-character;
1513          redo A;          redo A;
1514        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1515            !!!cp (77);
1516            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1517          !!!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  
1518          redo A;          redo A;
1519        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
1520          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1521          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1522            !!!cp (79);            !!!cp (79);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1523            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1524          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1525            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1011  sub _get_next_token ($) { Line 1527  sub _get_next_token ($) {
1527              !!!cp (80);              !!!cp (80);
1528              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1529            } else {            } else {
1530                ## NOTE: This state should never be reached.
1531              !!!cp (81);              !!!cp (81);
1532            }            }
1533          } else {          } else {
# Line 1024  sub _get_next_token ($) { Line 1541  sub _get_next_token ($) {
1541          redo A;          redo A;
1542        } else {        } else {
1543          !!!cp (82);          !!!cp (82);
1544          $self->{current_attribute} = {name => chr ($self->{next_char}),          $self->{current_attribute}
1545                                value => ''};              = {name => chr ($self->{next_char}),
1546                   value => '',
1547                   line => $self->{line}, column => $self->{column}};
1548          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1549          !!!next-input-character;          !!!next-input-character;
1550          redo A;                  redo A;        
# Line 1058  sub _get_next_token ($) { Line 1577  sub _get_next_token ($) {
1577        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1578          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1579            !!!cp (87);            !!!cp (87);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1580            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1581          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1582            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1067  sub _get_next_token ($) { Line 1584  sub _get_next_token ($) {
1584              !!!cp (88);              !!!cp (88);
1585              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1586            } else {            } else {
1587                ## NOTE: This state should never be reached.
1588              !!!cp (89);              !!!cp (89);
1589            }            }
1590          } else {          } else {
# Line 1082  sub _get_next_token ($) { Line 1600  sub _get_next_token ($) {
1600          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1601          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1602            !!!cp (90);            !!!cp (90);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1603            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1604          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1605            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1091  sub _get_next_token ($) { Line 1607  sub _get_next_token ($) {
1607              !!!cp (91);              !!!cp (91);
1608              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1609            } else {            } else {
1610                ## NOTE: This state should never be reached.
1611              !!!cp (92);              !!!cp (92);
1612            }            }
1613          } else {          } else {
# Line 1130  sub _get_next_token ($) { Line 1647  sub _get_next_token ($) {
1647          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1648          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1649            !!!cp (97);            !!!cp (97);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1650            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1651          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1652            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1139  sub _get_next_token ($) { Line 1654  sub _get_next_token ($) {
1654              !!!cp (98);              !!!cp (98);
1655              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1656            } else {            } else {
1657                ## NOTE: This state should never be reached.
1658              !!!cp (99);              !!!cp (99);
1659            }            }
1660          } else {          } else {
# Line 1173  sub _get_next_token ($) { Line 1689  sub _get_next_token ($) {
1689          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1690          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1691            !!!cp (103);            !!!cp (103);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1692            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1693          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1694            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1182  sub _get_next_token ($) { Line 1696  sub _get_next_token ($) {
1696              !!!cp (104);              !!!cp (104);
1697              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1698            } else {            } else {
1699                ## NOTE: This state should never be reached.
1700              !!!cp (105);              !!!cp (105);
1701            }            }
1702          } else {          } else {
# Line 1219  sub _get_next_token ($) { Line 1734  sub _get_next_token ($) {
1734        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1735          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1736            !!!cp (109);            !!!cp (109);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1737            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1738          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1739            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1228  sub _get_next_token ($) { Line 1741  sub _get_next_token ($) {
1741              !!!cp (110);              !!!cp (110);
1742              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1743            } else {            } else {
1744                ## NOTE: This state should never be reached.
1745              !!!cp (111);              !!!cp (111);
1746            }            }
1747          } else {          } else {
# Line 1243  sub _get_next_token ($) { Line 1757  sub _get_next_token ($) {
1757          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1758          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1759            !!!cp (112);            !!!cp (112);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1760            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1761          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1762            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1252  sub _get_next_token ($) { Line 1764  sub _get_next_token ($) {
1764              !!!cp (113);              !!!cp (113);
1765              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1766            } else {            } else {
1767                ## NOTE: This state should never be reached.
1768              !!!cp (114);              !!!cp (114);
1769            }            }
1770          } else {          } else {
# Line 1314  sub _get_next_token ($) { Line 1827  sub _get_next_token ($) {
1827        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1828          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1829            !!!cp (119);            !!!cp (119);
           $self->{current_token}->{first_start_tag}  
               = not defined $self->{last_emitted_start_tag_name};  
1830            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1831          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1832            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
# Line 1323  sub _get_next_token ($) { Line 1834  sub _get_next_token ($) {
1834              !!!cp (120);              !!!cp (120);
1835              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1836            } else {            } else {
1837                ## NOTE: This state should never be reached.
1838              !!!cp (121);              !!!cp (121);
1839            }            }
1840          } else {          } else {
# Line 1335  sub _get_next_token ($) { Line 1847  sub _get_next_token ($) {
1847    
1848          redo A;          redo A;
1849        } elsif ($self->{next_char} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1850            !!!cp (122);
1851            $self->{state} = SELF_CLOSING_START_TAG_STATE;
1852          !!!next-input-character;          !!!next-input-character;
1853          if ($self->{next_char} == 0x003E and # >          redo A;
1854              $self->{current_token}->{type} == START_TAG_TOKEN and        } elsif ($self->{next_char} == -1) {
1855              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {          !!!parse-error (type => 'unclosed tag');
1856            # permitted slash          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1857            !!!cp (122);            !!!cp (122.3);
1858            #            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1859            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1860              if ($self->{current_token}->{attributes}) {
1861                !!!cp (122.1);
1862                !!!parse-error (type => 'end tag attribute');
1863              } else {
1864                ## NOTE: This state should never be reached.
1865                !!!cp (122.2);
1866              }
1867          } else {          } else {
1868            !!!cp (123);            die "$0: $self->{current_token}->{type}: Unknown token type";
           !!!parse-error (type => 'nestc');  
1869          }          }
1870          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = DATA_STATE;
1871          # next-input-character is already done          ## Reconsume.
1872            !!!emit ($self->{current_token}); # start tag or end tag
1873          redo A;          redo A;
1874        } else {        } else {
1875          !!!cp (124);          !!!cp ('124.1');
1876          !!!parse-error (type => 'no space between attributes');          !!!parse-error (type => 'no space between attributes');
1877          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1878          ## reconsume          ## reconsume
1879          redo A;          redo A;
1880        }        }
1881        } elsif ($self->{state} == SELF_CLOSING_START_TAG_STATE) {
1882          if ($self->{next_char} == 0x003E) { # >
1883            if ($self->{current_token}->{type} == END_TAG_TOKEN) {
1884              !!!cp ('124.2');
1885              !!!parse-error (type => 'nestc', token => $self->{current_token});
1886              ## TODO: Different type than slash in start tag
1887              $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1888              if ($self->{current_token}->{attributes}) {
1889                !!!cp ('124.4');
1890                !!!parse-error (type => 'end tag attribute');
1891              } else {
1892                !!!cp ('124.5');
1893              }
1894              ## TODO: Test |<title></title/>|
1895            } else {
1896              !!!cp ('124.3');
1897              $self->{self_closing} = 1;
1898            }
1899    
1900            $self->{state} = DATA_STATE;
1901            !!!next-input-character;
1902    
1903            !!!emit ($self->{current_token}); # start tag or end tag
1904    
1905            redo A;
1906          } elsif ($self->{next_char} == -1) {
1907            !!!parse-error (type => 'unclosed tag');
1908            if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1909              !!!cp (124.7);
1910              $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1911            } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1912              if ($self->{current_token}->{attributes}) {
1913                !!!cp (124.5);
1914                !!!parse-error (type => 'end tag attribute');
1915              } else {
1916                ## NOTE: This state should never be reached.
1917                !!!cp (124.6);
1918              }
1919            } else {
1920              die "$0: $self->{current_token}->{type}: Unknown token type";
1921            }
1922            $self->{state} = DATA_STATE;
1923            ## Reconsume.
1924            !!!emit ($self->{current_token}); # start tag or end tag
1925            redo A;
1926          } else {
1927            !!!cp ('124.4');
1928            !!!parse-error (type => 'nestc');
1929            ## TODO: This error type is wrong.
1930            $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1931            ## Reconsume.
1932            redo A;
1933          }
1934      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
1935        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1936                
1937        my $token = {type => COMMENT_TOKEN, data => ''};        ## NOTE: Set by the previous state
1938          #my $token = {type => COMMENT_TOKEN, data => ''};
1939    
1940        BC: {        BC: {
1941          if ($self->{next_char} == 0x003E) { # >          if ($self->{next_char} == 0x003E) { # >
# Line 1367  sub _get_next_token ($) { Line 1943  sub _get_next_token ($) {
1943            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1944            !!!next-input-character;            !!!next-input-character;
1945    
1946            !!!emit ($token);            !!!emit ($self->{current_token}); # comment
1947    
1948            redo A;            redo A;
1949          } elsif ($self->{next_char} == -1) {          } elsif ($self->{next_char} == -1) {
# Line 1375  sub _get_next_token ($) { Line 1951  sub _get_next_token ($) {
1951            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1952            ## reconsume            ## reconsume
1953    
1954            !!!emit ($token);            !!!emit ($self->{current_token}); # comment
1955    
1956            redo A;            redo A;
1957          } else {          } else {
1958            !!!cp (126);            !!!cp (126);
1959            $token->{data} .= chr ($self->{next_char});            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1960            !!!next-input-character;            !!!next-input-character;
1961            redo BC;            redo BC;
1962          }          }
# Line 1390  sub _get_next_token ($) { Line 1966  sub _get_next_token ($) {
1966      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
1967        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1968    
1969          my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1);
1970    
1971        my @next_char;        my @next_char;
1972        push @next_char, $self->{next_char};        push @next_char, $self->{next_char};
1973                
# Line 1398  sub _get_next_token ($) { Line 1976  sub _get_next_token ($) {
1976          push @next_char, $self->{next_char};          push @next_char, $self->{next_char};
1977          if ($self->{next_char} == 0x002D) { # -          if ($self->{next_char} == 0x002D) { # -
1978            !!!cp (127);            !!!cp (127);
1979            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1980                                        line => $l, column => $c,
1981                                       };
1982            $self->{state} = COMMENT_START_STATE;            $self->{state} = COMMENT_START_STATE;
1983            !!!next-input-character;            !!!next-input-character;
1984            redo A;            redo A;
# Line 1434  sub _get_next_token ($) { Line 2014  sub _get_next_token ($) {
2014                      !!!cp (129);                      !!!cp (129);
2015                      ## TODO: What a stupid code this is!                      ## TODO: What a stupid code this is!
2016                      $self->{state} = DOCTYPE_STATE;                      $self->{state} = DOCTYPE_STATE;
2017                        $self->{current_token} = {type => DOCTYPE_TOKEN,
2018                                                  quirks => 1,
2019                                                  line => $l, column => $c,
2020                                                 };
2021                      !!!next-input-character;                      !!!next-input-character;
2022                      redo A;                      redo A;
2023                    } else {                    } else {
# Line 1454  sub _get_next_token ($) { Line 2038  sub _get_next_token ($) {
2038          } else {          } else {
2039            !!!cp (135);            !!!cp (135);
2040          }          }
2041          } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM and
2042                   $self->{open_elements}->[-1]->[1] & FOREIGN_EL and
2043                   $self->{next_char} == 0x005B) { # [
2044            !!!next-input-character;
2045            push @next_char, $self->{next_char};
2046            if ($self->{next_char} == 0x0043) { # C
2047              !!!next-input-character;
2048              push @next_char, $self->{next_char};
2049              if ($self->{next_char} == 0x0044) { # D
2050                !!!next-input-character;
2051                push @next_char, $self->{next_char};
2052                if ($self->{next_char} == 0x0041) { # A
2053                  !!!next-input-character;
2054                  push @next_char, $self->{next_char};
2055                  if ($self->{next_char} == 0x0054) { # T
2056                    !!!next-input-character;
2057                    push @next_char, $self->{next_char};
2058                    if ($self->{next_char} == 0x0041) { # A
2059                      !!!next-input-character;
2060                      push @next_char, $self->{next_char};
2061                      if ($self->{next_char} == 0x005B) { # [
2062                        !!!cp (135.1);
2063                        $self->{state} = CDATA_BLOCK_STATE;
2064                        !!!next-input-character;
2065                        redo A;
2066                      } else {
2067                        !!!cp (135.2);
2068                      }
2069                    } else {
2070                      !!!cp (135.3);
2071                    }
2072                  } else {
2073                    !!!cp (135.4);                
2074                  }
2075                } else {
2076                  !!!cp (135.5);
2077                }
2078              } else {
2079                !!!cp (135.6);
2080              }
2081            } else {
2082              !!!cp (135.7);
2083            }
2084        } else {        } else {
2085          !!!cp (136);          !!!cp (136);
2086        }        }
# Line 1462  sub _get_next_token ($) { Line 2089  sub _get_next_token ($) {
2089        $self->{next_char} = shift @next_char;        $self->{next_char} = shift @next_char;
2090        !!!back-next-input-character (@next_char);        !!!back-next-input-character (@next_char);
2091        $self->{state} = BOGUS_COMMENT_STATE;        $self->{state} = BOGUS_COMMENT_STATE;
2092          $self->{current_token} = {type => COMMENT_TOKEN, data => '',
2093                                    line => $l, column => $c,
2094                                   };
2095        redo A;        redo A;
2096                
2097        ## ISSUE: typos in spec: chacacters, is is a parse error        ## ISSUE: typos in spec: chacacters, is is a parse error
# Line 1585  sub _get_next_token ($) { Line 2215  sub _get_next_token ($) {
2215          redo A;          redo A;
2216        } elsif ($self->{next_char} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
2217          !!!cp (152);          !!!cp (152);
2218          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment',
2219                            line => $self->{line_prev},
2220                            column => $self->{column_prev});
2221          $self->{current_token}->{data} .= '-'; # comment          $self->{current_token}->{data} .= '-'; # comment
2222          ## Stay in the state          ## Stay in the state
2223          !!!next-input-character;          !!!next-input-character;
# Line 1601  sub _get_next_token ($) { Line 2233  sub _get_next_token ($) {
2233          redo A;          redo A;
2234        } else {        } else {
2235          !!!cp (154);          !!!cp (154);
2236          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment',
2237                            line => $self->{line_prev},
2238                            column => $self->{column_prev});
2239          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment
2240          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
2241          !!!next-input-character;          !!!next-input-character;
# Line 1640  sub _get_next_token ($) { Line 2274  sub _get_next_token ($) {
2274          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2275          !!!next-input-character;          !!!next-input-character;
2276    
2277          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});          !!!emit ($self->{current_token}); # DOCTYPE (quirks)
2278    
2279          redo A;          redo A;
2280        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
# Line 1649  sub _get_next_token ($) { Line 2283  sub _get_next_token ($) {
2283          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2284          ## reconsume          ## reconsume
2285    
2286          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});          !!!emit ($self->{current_token}); # DOCTYPE (quirks)
2287    
2288          redo A;          redo A;
2289        } else {        } else {
2290          !!!cp (160);          !!!cp (160);
2291          $self->{current_token}          $self->{current_token}->{name} = chr $self->{next_char};
2292              = {type => DOCTYPE_TOKEN,          delete $self->{current_token}->{quirks};
                name => chr ($self->{next_char}),  
                #quirks => 0,  
               };  
2293  ## ISSUE: "Set the token's name name to the" in the spec  ## ISSUE: "Set the token's name name to the" in the spec
2294          $self->{state} = DOCTYPE_NAME_STATE;          $self->{state} = DOCTYPE_NAME_STATE;
2295          !!!next-input-character;          !!!next-input-character;
# Line 2049  sub _get_next_token ($) { Line 2680  sub _get_next_token ($) {
2680          redo A;          redo A;
2681        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2682          !!!cp (208);          !!!cp (208);
2683          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2684    
2685          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2686          !!!next-input-character;          !!!next-input-character;
# Line 2085  sub _get_next_token ($) { Line 2716  sub _get_next_token ($) {
2716          redo A;          redo A;
2717        } elsif ($self->{next_char} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2718          !!!cp (212);          !!!cp (212);
2719          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2720    
2721          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2722          !!!next-input-character;          !!!next-input-character;
# Line 2133  sub _get_next_token ($) { Line 2764  sub _get_next_token ($) {
2764        } elsif ($self->{next_char} == -1) {        } elsif ($self->{next_char} == -1) {
2765          !!!cp (217);          !!!cp (217);
2766          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
   
2767          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2768          ## reconsume          ## reconsume
2769    
# Line 2174  sub _get_next_token ($) { Line 2804  sub _get_next_token ($) {
2804          !!!next-input-character;          !!!next-input-character;
2805          redo A;          redo A;
2806        }        }
2807        } elsif ($self->{state} == CDATA_BLOCK_STATE) {
2808          my $s = '';
2809          
2810          my ($l, $c) = ($self->{line}, $self->{column});
2811    
2812          CS: while ($self->{next_char} != -1) {
2813            if ($self->{next_char} == 0x005D) { # ]
2814              !!!next-input-character;
2815              if ($self->{next_char} == 0x005D) { # ]
2816                !!!next-input-character;
2817                MDC: {
2818                  if ($self->{next_char} == 0x003E) { # >
2819                    !!!cp (221.1);
2820                    !!!next-input-character;
2821                    last CS;
2822                  } elsif ($self->{next_char} == 0x005D) { # ]
2823                    !!!cp (221.2);
2824                    $s .= ']';
2825                    !!!next-input-character;
2826                    redo MDC;
2827                  } else {
2828                    !!!cp (221.3);
2829                    $s .= ']]';
2830                    #
2831                  }
2832                } # MDC
2833              } else {
2834                !!!cp (221.4);
2835                $s .= ']';
2836                #
2837              }
2838            } else {
2839              !!!cp (221.5);
2840              #
2841            }
2842            $s .= chr $self->{next_char};
2843            !!!next-input-character;
2844          } # CS
2845    
2846          $self->{state} = DATA_STATE;
2847          ## next-input-character done or EOF, which is reconsumed.
2848    
2849          if (length $s) {
2850            !!!cp (221.6);
2851            !!!emit ({type => CHARACTER_TOKEN, data => $s,
2852                      line => $l, column => $c});
2853          } else {
2854            !!!cp (221.7);
2855          }
2856    
2857          redo A;
2858    
2859          ## ISSUE: "text tokens" in spec.
2860          ## TODO: Streaming support
2861      } else {      } else {
2862        die "$0: $self->{state}: Unknown state";        die "$0: $self->{state}: Unknown state";
2863      }      }
# Line 2185  sub _get_next_token ($) { Line 2869  sub _get_next_token ($) {
2869  sub _tokenize_attempt_to_consume_an_entity ($$$) {  sub _tokenize_attempt_to_consume_an_entity ($$$) {
2870    my ($self, $in_attr, $additional) = @_;    my ($self, $in_attr, $additional) = @_;
2871    
2872      my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
2873    
2874    if ({    if ({
2875         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2876         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
2877         $additional => 1,         $additional => 1,
2878        }->{$self->{next_char}}) {        }->{$self->{next_char}}) {
2879        !!!cp (1001);
2880      ## Don't consume      ## Don't consume
2881      ## No error      ## No error
2882      return undef;      return undef;
# Line 2203  sub _tokenize_attempt_to_consume_an_enti Line 2890  sub _tokenize_attempt_to_consume_an_enti
2890          !!!next-input-character;          !!!next-input-character;
2891          if (0x0030 <= $self->{next_char} and          if (0x0030 <= $self->{next_char} and
2892              $self->{next_char} <= 0x0039) { # 0..9              $self->{next_char} <= 0x0039) { # 0..9
2893              !!!cp (1002);
2894            $code ||= 0;            $code ||= 0;
2895            $code *= 0x10;            $code *= 0x10;
2896            $code += $self->{next_char} - 0x0030;            $code += $self->{next_char} - 0x0030;
2897            redo X;            redo X;
2898          } elsif (0x0061 <= $self->{next_char} and          } elsif (0x0061 <= $self->{next_char} and
2899                   $self->{next_char} <= 0x0066) { # a..f                   $self->{next_char} <= 0x0066) { # a..f
2900              !!!cp (1003);
2901            $code ||= 0;            $code ||= 0;
2902            $code *= 0x10;            $code *= 0x10;
2903            $code += $self->{next_char} - 0x0060 + 9;            $code += $self->{next_char} - 0x0060 + 9;
2904            redo X;            redo X;
2905          } elsif (0x0041 <= $self->{next_char} and          } elsif (0x0041 <= $self->{next_char} and
2906                   $self->{next_char} <= 0x0046) { # A..F                   $self->{next_char} <= 0x0046) { # A..F
2907              !!!cp (1004);
2908            $code ||= 0;            $code ||= 0;
2909            $code *= 0x10;            $code *= 0x10;
2910            $code += $self->{next_char} - 0x0040 + 9;            $code += $self->{next_char} - 0x0040 + 9;
2911            redo X;            redo X;
2912          } elsif (not defined $code) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2913            !!!parse-error (type => 'bare hcro');            !!!cp (1005);
2914              !!!parse-error (type => 'bare hcro', line => $l, column => $c);
2915            !!!back-next-input-character ($x_char, $self->{next_char});            !!!back-next-input-character ($x_char, $self->{next_char});
2916            $self->{next_char} = 0x0023; # #            $self->{next_char} = 0x0023; # #
2917            return undef;            return undef;
2918          } elsif ($self->{next_char} == 0x003B) { # ;          } elsif ($self->{next_char} == 0x003B) { # ;
2919              !!!cp (1006);
2920            !!!next-input-character;            !!!next-input-character;
2921          } else {          } else {
2922            !!!parse-error (type => 'no refc');            !!!cp (1007);
2923              !!!parse-error (type => 'no refc', line => $l, column => $c);
2924          }          }
2925    
2926          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2927            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);            !!!cp (1008);
2928              !!!parse-error (type => 'invalid character reference',
2929                              text => (sprintf 'U+%04X', $code),
2930                              line => $l, column => $c);
2931            $code = 0xFFFD;            $code = 0xFFFD;
2932          } elsif ($code > 0x10FFFF) {          } elsif ($code > 0x10FFFF) {
2933            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);            !!!cp (1009);
2934              !!!parse-error (type => 'invalid character reference',
2935                              text => (sprintf 'U-%08X', $code),
2936                              line => $l, column => $c);
2937            $code = 0xFFFD;            $code = 0xFFFD;
2938          } elsif ($code == 0x000D) {          } elsif ($code == 0x000D) {
2939            !!!parse-error (type => 'CR character reference');            !!!cp (1010);
2940              !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2941            $code = 0x000A;            $code = 0x000A;
2942          } elsif (0x80 <= $code and $code <= 0x9F) {          } elsif (0x80 <= $code and $code <= 0x9F) {
2943            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);            !!!cp (1011);
2944              !!!parse-error (type => 'C1 character reference', text => (sprintf 'U+%04X', $code), line => $l, column => $c);
2945            $code = $c1_entity_char->{$code};            $code = $c1_entity_char->{$code};
2946          }          }
2947    
2948          return {type => CHARACTER_TOKEN, data => chr $code,          return {type => CHARACTER_TOKEN, data => chr $code,
2949                  has_reference => 1};                  has_reference => 1,
2950                    line => $l, column => $c,
2951                   };
2952        } # X        } # X
2953      } elsif (0x0030 <= $self->{next_char} and      } elsif (0x0030 <= $self->{next_char} and
2954               $self->{next_char} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
# Line 2254  sub _tokenize_attempt_to_consume_an_enti Line 2957  sub _tokenize_attempt_to_consume_an_enti
2957                
2958        while (0x0030 <= $self->{next_char} and        while (0x0030 <= $self->{next_char} and
2959                  $self->{next_char} <= 0x0039) { # 0..9                  $self->{next_char} <= 0x0039) { # 0..9
2960            !!!cp (1012);
2961          $code *= 10;          $code *= 10;
2962          $code += $self->{next_char} - 0x0030;          $code += $self->{next_char} - 0x0030;
2963                    
# Line 2261  sub _tokenize_attempt_to_consume_an_enti Line 2965  sub _tokenize_attempt_to_consume_an_enti
2965        }        }
2966    
2967        if ($self->{next_char} == 0x003B) { # ;        if ($self->{next_char} == 0x003B) { # ;
2968            !!!cp (1013);
2969          !!!next-input-character;          !!!next-input-character;
2970        } else {        } else {
2971          !!!parse-error (type => 'no refc');          !!!cp (1014);
2972            !!!parse-error (type => 'no refc', line => $l, column => $c);
2973        }        }
2974    
2975        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2976          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);          !!!cp (1015);
2977            !!!parse-error (type => 'invalid character reference',
2978                            text => (sprintf 'U+%04X', $code),
2979                            line => $l, column => $c);
2980          $code = 0xFFFD;          $code = 0xFFFD;
2981        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
2982          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);          !!!cp (1016);
2983            !!!parse-error (type => 'invalid character reference',
2984                            text => (sprintf 'U-%08X', $code),
2985                            line => $l, column => $c);
2986          $code = 0xFFFD;          $code = 0xFFFD;
2987        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
2988          !!!parse-error (type => 'CR character reference');          !!!cp (1017);
2989            !!!parse-error (type => 'CR character reference',
2990                            line => $l, column => $c);
2991          $code = 0x000A;          $code = 0x000A;
2992        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
2993          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);          !!!cp (1018);
2994            !!!parse-error (type => 'C1 character reference',
2995                            text => (sprintf 'U+%04X', $code),
2996                            line => $l, column => $c);
2997          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
2998        }        }
2999                
3000        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1,
3001                  line => $l, column => $c,
3002                 };
3003      } else {      } else {
3004        !!!parse-error (type => 'bare nero');        !!!cp (1019);
3005          !!!parse-error (type => 'bare nero', line => $l, column => $c);
3006        !!!back-next-input-character ($self->{next_char});        !!!back-next-input-character ($self->{next_char});
3007        $self->{next_char} = 0x0023; # #        $self->{next_char} = 0x0023; # #
3008        return undef;        return undef;
# Line 2299  sub _tokenize_attempt_to_consume_an_enti Line 3019  sub _tokenize_attempt_to_consume_an_enti
3019      require Whatpm::_NamedEntityList;      require Whatpm::_NamedEntityList;
3020      our $EntityChar;      our $EntityChar;
3021    
3022      while (length $entity_name < 10 and      while (length $entity_name < 30 and
3023             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
3024             ((0x0041 <= $self->{next_char} and # a             ((0x0041 <= $self->{next_char} and # a
3025               $self->{next_char} <= 0x005A) or # x               $self->{next_char} <= 0x005A) or # x
# Line 2311  sub _tokenize_attempt_to_consume_an_enti Line 3031  sub _tokenize_attempt_to_consume_an_enti
3031        $entity_name .= chr $self->{next_char};        $entity_name .= chr $self->{next_char};
3032        if (defined $EntityChar->{$entity_name}) {        if (defined $EntityChar->{$entity_name}) {
3033          if ($self->{next_char} == 0x003B) { # ;          if ($self->{next_char} == 0x003B) { # ;
3034              !!!cp (1020);
3035            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
3036            $match = 1;            $match = 1;
3037            !!!next-input-character;            !!!next-input-character;
3038            last;            last;
3039          } else {          } else {
3040              !!!cp (1021);
3041            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
3042            $match = -1;            $match = -1;
3043            !!!next-input-character;            !!!next-input-character;
3044          }          }
3045        } else {        } else {
3046            !!!cp (1022);
3047          $value .= chr $self->{next_char};          $value .= chr $self->{next_char};
3048          $match *= 2;          $match *= 2;
3049          !!!next-input-character;          !!!next-input-character;
# Line 2328  sub _tokenize_attempt_to_consume_an_enti Line 3051  sub _tokenize_attempt_to_consume_an_enti
3051      }      }
3052            
3053      if ($match > 0) {      if ($match > 0) {
3054        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};        !!!cp (1023);
3055          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
3056                  line => $l, column => $c,
3057                 };
3058      } elsif ($match < 0) {      } elsif ($match < 0) {
3059        !!!parse-error (type => 'no refc');        !!!parse-error (type => 'no refc', line => $l, column => $c);
3060        if ($in_attr and $match < -1) {        if ($in_attr and $match < -1) {
3061          return {type => CHARACTER_TOKEN, data => '&'.$entity_name};          !!!cp (1024);
3062        } else {          return {type => CHARACTER_TOKEN, data => '&'.$entity_name,
3063          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};                  line => $l, column => $c,
3064                   };
3065          } else {
3066            !!!cp (1025);
3067            return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
3068                    line => $l, column => $c,
3069                   };
3070        }        }
3071      } else {      } else {
3072        !!!parse-error (type => 'bare ero');        !!!cp (1026);
3073          !!!parse-error (type => 'bare ero', line => $l, column => $c);
3074        ## NOTE: "No characters are consumed" in the spec.        ## NOTE: "No characters are consumed" in the spec.
3075        return {type => CHARACTER_TOKEN, data => '&'.$value};        return {type => CHARACTER_TOKEN, data => '&'.$value,
3076                  line => $l, column => $c,
3077                 };
3078      }      }
3079    } else {    } else {
3080        !!!cp (1027);
3081      ## no characters are consumed      ## no characters are consumed
3082      !!!parse-error (type => 'bare ero');      !!!parse-error (type => 'bare ero', line => $l, column => $c);
3083      return undef;      return undef;
3084    }    }
3085  } # _tokenize_attempt_to_consume_an_entity  } # _tokenize_attempt_to_consume_an_entity
# Line 2355  sub _initialize_tree_constructor ($) { Line 3091  sub _initialize_tree_constructor ($) {
3091    ## TODO: Turn mutation events off # MUST    ## TODO: Turn mutation events off # MUST
3092    ## TODO: Turn loose Document option (manakai extension) on    ## TODO: Turn loose Document option (manakai extension) on
3093    $self->{document}->manakai_is_html (1); # MUST    $self->{document}->manakai_is_html (1); # MUST
3094      $self->{document}->set_user_data (manakai_source_line => 1);
3095      $self->{document}->set_user_data (manakai_source_column => 1);
3096  } # _initialize_tree_constructor  } # _initialize_tree_constructor
3097    
3098  sub _terminate_tree_constructor ($) {  sub _terminate_tree_constructor ($) {
# Line 2381  sub _construct_tree ($) { Line 3119  sub _construct_tree ($) {
3119        
3120    !!!next-token;    !!!next-token;
3121    
   $self->{insertion_mode} = BEFORE_HEAD_IM;  
3122    undef $self->{form_element};    undef $self->{form_element};
3123    undef $self->{head_element};    undef $self->{head_element};
3124    $self->{open_elements} = [];    $self->{open_elements} = [];
3125    undef $self->{inner_html_node};    undef $self->{inner_html_node};
3126    
3127      ## NOTE: The "initial" insertion mode.
3128    $self->_tree_construction_initial; # MUST    $self->_tree_construction_initial; # MUST
3129    
3130      ## NOTE: The "before html" insertion mode.
3131    $self->_tree_construction_root_element;    $self->_tree_construction_root_element;
3132      $self->{insertion_mode} = BEFORE_HEAD_IM;
3133    
3134      ## NOTE: The "before head" insertion mode and so on.
3135    $self->_tree_construction_main;    $self->_tree_construction_main;
3136  } # _construct_tree  } # _construct_tree
3137    
3138  sub _tree_construction_initial ($) {  sub _tree_construction_initial ($) {
3139    my $self = shift;    my $self = shift;
3140    
3141      ## NOTE: "initial" insertion mode
3142    
3143    INITIAL: {    INITIAL: {
3144      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
3145        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
# Line 2405  sub _tree_construction_initial ($) { Line 3151  sub _tree_construction_initial ($) {
3151        if (not defined $token->{name} or # <!DOCTYPE>        if (not defined $token->{name} or # <!DOCTYPE>
3152            defined $token->{public_identifier} or            defined $token->{public_identifier} or
3153            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
3154          !!!parse-error (type => 'not HTML5');          !!!cp ('t1');
3155            !!!parse-error (type => 'not HTML5', token => $token);
3156        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
3157            !!!cp ('t2');
3158          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
3159          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
3160          } else {
3161            !!!cp ('t3');
3162        }        }
3163                
3164        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
3165          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
3166          ## NOTE: Default value for both |public_id| and |system_id| attributes
3167          ## are empty strings, so that we don't set any value in missing cases.
3168        $doctype->public_id ($token->{public_identifier})        $doctype->public_id ($token->{public_identifier})
3169            if defined $token->{public_identifier};            if defined $token->{public_identifier};
3170        $doctype->system_id ($token->{system_identifier})        $doctype->system_id ($token->{system_identifier})
# Line 2422  sub _tree_construction_initial ($) { Line 3174  sub _tree_construction_initial ($) {
3174        $self->{document}->append_child ($doctype);        $self->{document}->append_child ($doctype);
3175                
3176        if ($token->{quirks} or $doctype_name ne 'HTML') {        if ($token->{quirks} or $doctype_name ne 'HTML') {
3177            !!!cp ('t4');
3178          $self->{document}->manakai_compat_mode ('quirks');          $self->{document}->manakai_compat_mode ('quirks');
3179        } elsif (defined $token->{public_identifier}) {        } elsif (defined $token->{public_identifier}) {
3180          my $pubid = $token->{public_identifier};          my $pubid = $token->{public_identifier};
3181          $pubid =~ tr/a-z/A-z/;          $pubid =~ tr/a-z/A-z/;
3182          if ({          my $prefix = [
3183            "+//SILMARIL//DTD HTML PRO V0R11 19970101//EN" => 1,            "+//SILMARIL//DTD HTML PRO V0R11 19970101//",
3184            "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,            "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
3185            "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,            "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
3186            "-//IETF//DTD HTML 2.0 LEVEL 1//EN" => 1,            "-//IETF//DTD HTML 2.0 LEVEL 1//",
3187            "-//IETF//DTD HTML 2.0 LEVEL 2//EN" => 1,            "-//IETF//DTD HTML 2.0 LEVEL 2//",
3188            "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//",
3189            "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//",
3190            "-//IETF//DTD HTML 2.0 STRICT//EN" => 1,            "-//IETF//DTD HTML 2.0 STRICT//",
3191            "-//IETF//DTD HTML 2.0//EN" => 1,            "-//IETF//DTD HTML 2.0//",
3192            "-//IETF//DTD HTML 2.1E//EN" => 1,            "-//IETF//DTD HTML 2.1E//",
3193            "-//IETF//DTD HTML 3.0//EN" => 1,            "-//IETF//DTD HTML 3.0//",
3194            "-//IETF//DTD HTML 3.0//EN//" => 1,            "-//IETF//DTD HTML 3.2 FINAL//",
3195            "-//IETF//DTD HTML 3.2 FINAL//EN" => 1,            "-//IETF//DTD HTML 3.2//",
3196            "-//IETF//DTD HTML 3.2//EN" => 1,            "-//IETF//DTD HTML 3//",
3197            "-//IETF//DTD HTML 3//EN" => 1,            "-//IETF//DTD HTML LEVEL 0//",
3198            "-//IETF//DTD HTML LEVEL 0//EN" => 1,            "-//IETF//DTD HTML LEVEL 1//",
3199            "-//IETF//DTD HTML LEVEL 0//EN//2.0" => 1,            "-//IETF//DTD HTML LEVEL 2//",
3200            "-//IETF//DTD HTML LEVEL 1//EN" => 1,            "-//IETF//DTD HTML LEVEL 3//",
3201            "-//IETF//DTD HTML LEVEL 1//EN//2.0" => 1,            "-//IETF//DTD HTML STRICT LEVEL 0//",
3202            "-//IETF//DTD HTML LEVEL 2//EN" => 1,            "-//IETF//DTD HTML STRICT LEVEL 1//",
3203            "-//IETF//DTD HTML LEVEL 2//EN//2.0" => 1,            "-//IETF//DTD HTML STRICT LEVEL 2//",
3204            "-//IETF//DTD HTML LEVEL 3//EN" => 1,            "-//IETF//DTD HTML STRICT LEVEL 3//",
3205            "-//IETF//DTD HTML LEVEL 3//EN//3.0" => 1,            "-//IETF//DTD HTML STRICT//",
3206            "-//IETF//DTD HTML STRICT LEVEL 0//EN" => 1,            "-//IETF//DTD HTML//",
3207            "-//IETF//DTD HTML STRICT LEVEL 0//EN//2.0" => 1,            "-//METRIUS//DTD METRIUS PRESENTATIONAL//",
3208            "-//IETF//DTD HTML STRICT LEVEL 1//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//",
3209            "-//IETF//DTD HTML STRICT LEVEL 1//EN//2.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//",
3210            "-//IETF//DTD HTML STRICT LEVEL 2//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//",
3211            "-//IETF//DTD HTML STRICT LEVEL 2//EN//2.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//",
3212            "-//IETF//DTD HTML STRICT LEVEL 3//EN" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//",
3213            "-//IETF//DTD HTML STRICT LEVEL 3//EN//3.0" => 1,            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//",
3214            "-//IETF//DTD HTML STRICT//EN" => 1,            "-//NETSCAPE COMM. CORP.//DTD HTML//",
3215            "-//IETF//DTD HTML STRICT//EN//2.0" => 1,            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//",
3216            "-//IETF//DTD HTML STRICT//EN//3.0" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//",
3217            "-//IETF//DTD HTML//EN" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//",
3218            "-//IETF//DTD HTML//EN//2.0" => 1,            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//",
3219            "-//IETF//DTD HTML//EN//3.0" => 1,            "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//",
3220            "-//METRIUS//DTD METRIUS PRESENTATIONAL//EN" => 1,            "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//",
3221            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//EN" => 1,            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//",
3222            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//EN" => 1,            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//",
3223            "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//",
3224            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//EN" => 1,            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//",
3225            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//EN" => 1,            "-//W3C//DTD HTML 3 1995-03-24//",
3226            "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//EN" => 1,            "-//W3C//DTD HTML 3.2 DRAFT//",
3227            "-//NETSCAPE COMM. CORP.//DTD HTML//EN" => 1,            "-//W3C//DTD HTML 3.2 FINAL//",
3228            "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,            "-//W3C//DTD HTML 3.2//",
3229            "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,            "-//W3C//DTD HTML 3.2S DRAFT//",
3230            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,            "-//W3C//DTD HTML 4.0 FRAMESET//",
3231            "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//EN" => 1,            "-//W3C//DTD HTML 4.0 TRANSITIONAL//",
3232            "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//EN" => 1,            "-//W3C//DTD HTML EXPERIMETNAL 19960712//",
3233            "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//EN" => 1,            "-//W3C//DTD HTML EXPERIMENTAL 970421//",
3234            "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,            "-//W3C//DTD W3 HTML//",
3235            "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,            "-//W3O//DTD W3 HTML 3.0//",
3236            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,            "-//WEBTECHS//DTD MOZILLA HTML 2.0//",
3237            "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//EN" => 1,            "-//WEBTECHS//DTD MOZILLA HTML//",
3238            "-//W3C//DTD HTML 3 1995-03-24//EN" => 1,          ]; # $prefix
3239            "-//W3C//DTD HTML 3.2 DRAFT//EN" => 1,          my $match;
3240            "-//W3C//DTD HTML 3.2 FINAL//EN" => 1,          for (@$prefix) {
3241            "-//W3C//DTD HTML 3.2//EN" => 1,            if (substr ($prefix, 0, length $_) eq $_) {
3242            "-//W3C//DTD HTML 3.2S DRAFT//EN" => 1,              $match = 1;
3243            "-//W3C//DTD HTML 4.0 FRAMESET//EN" => 1,              last;
3244            "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN" => 1,            }
3245            "-//W3C//DTD HTML EXPERIMETNAL 19960712//EN" => 1,          }
3246            "-//W3C//DTD HTML EXPERIMENTAL 970421//EN" => 1,          if ($match or
3247            "-//W3C//DTD W3 HTML//EN" => 1,              $pubid eq "-//W3O//DTD W3 HTML STRICT 3.0//EN//" or
3248            "-//W3O//DTD W3 HTML 3.0//EN" => 1,              $pubid eq "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" or
3249            "-//W3O//DTD W3 HTML 3.0//EN//" => 1,              $pubid eq "HTML") {
3250            "-//W3O//DTD W3 HTML STRICT 3.0//EN//" => 1,            !!!cp ('t5');
           "-//WEBTECHS//DTD MOZILLA HTML 2.0//EN" => 1,  
           "-//WEBTECHS//DTD MOZILLA HTML//EN" => 1,  
           "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,  
           "HTML" => 1,  
         }->{$pubid}) {  
3251            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
3252          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or          } elsif ($pubid =~ m[^-//W3C//DTD HTML 4.01 FRAMESET//] or
3253                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {                   $pubid =~ m[^-//W3C//DTD HTML 4.01 TRANSITIONAL//]) {
3254            if (defined $token->{system_identifier}) {            if (defined $token->{system_identifier}) {
3255                !!!cp ('t6');
3256              $self->{document}->manakai_compat_mode ('quirks');              $self->{document}->manakai_compat_mode ('quirks');
3257            } else {            } else {
3258                !!!cp ('t7');
3259              $self->{document}->manakai_compat_mode ('limited quirks');              $self->{document}->manakai_compat_mode ('limited quirks');
3260            }            }
3261          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 Frameset//EN" or          } elsif ($pubid =~ m[^-//W3C//DTD XHTML 1.0 FRAMESET//] or
3262                   $pubid eq "-//W3C//DTD XHTML 1.0 Transitional//EN") {                   $pubid =~ m[^-//W3C//DTD XHTML 1.0 TRANSITIONAL//]) {
3263              !!!cp ('t8');
3264            $self->{document}->manakai_compat_mode ('limited quirks');            $self->{document}->manakai_compat_mode ('limited quirks');
3265            } else {
3266              !!!cp ('t9');
3267          }          }
3268          } else {
3269            !!!cp ('t10');
3270        }        }
3271        if (defined $token->{system_identifier}) {        if (defined $token->{system_identifier}) {
3272          my $sysid = $token->{system_identifier};          my $sysid = $token->{system_identifier};
3273          $sysid =~ tr/A-Z/a-z/;          $sysid =~ tr/A-Z/a-z/;
3274          if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {          if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
3275              ## NOTE: Ensure that |PUBLIC "(limited quirks)" "(quirks)"| is
3276              ## marked as quirks.
3277            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
3278              !!!cp ('t11');
3279            } else {
3280              !!!cp ('t12');
3281          }          }
3282          } else {
3283            !!!cp ('t13');
3284        }        }
3285                
3286        ## Go to the root element phase.        ## Go to the "before html" insertion mode.
3287        !!!next-token;        !!!next-token;
3288        return;        return;
3289      } elsif ({      } elsif ({
# Line 2529  sub _tree_construction_initial ($) { Line 3291  sub _tree_construction_initial ($) {
3291                END_TAG_TOKEN, 1,                END_TAG_TOKEN, 1,
3292                END_OF_FILE_TOKEN, 1,                END_OF_FILE_TOKEN, 1,
3293               }->{$token->{type}}) {               }->{$token->{type}}) {
3294        !!!parse-error (type => 'no DOCTYPE');        !!!cp ('t14');
3295          !!!parse-error (type => 'no DOCTYPE', token => $token);
3296        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3297        ## Go to the root element phase        ## Go to the "before html" insertion mode.
3298        ## reprocess        ## reprocess
3299          !!!ack-later;
3300        return;        return;
3301      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
3302        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D        if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
3303          ## Ignore the token          ## Ignore the token
3304    
3305          unless (length $token->{data}) {          unless (length $token->{data}) {
3306            ## Stay in the phase            !!!cp ('t15');
3307              ## Stay in the insertion mode.
3308            !!!next-token;            !!!next-token;
3309            redo INITIAL;            redo INITIAL;
3310            } else {
3311              !!!cp ('t16');
3312          }          }
3313          } else {
3314            !!!cp ('t17');
3315        }        }
3316    
3317        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
3318        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
3319        ## Go to the root element phase        ## Go to the "before html" insertion mode.
3320        ## reprocess        ## reprocess
3321        return;        return;
3322      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
3323          !!!cp ('t18');
3324        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
3325        $self->{document}->append_child ($comment);        $self->{document}->append_child ($comment);
3326                
3327        ## Stay in the phase.        ## Stay in the insertion mode.
3328        !!!next-token;        !!!next-token;
3329        redo INITIAL;        redo INITIAL;
3330      } else {      } else {
3331        die "$0: $token->{type}: Unknown token type";        die "$0: $token->{type}: Unknown token type";
3332      }      }
3333    } # INITIAL    } # INITIAL
3334    
3335      die "$0: _tree_construction_initial: This should be never reached";
3336  } # _tree_construction_initial  } # _tree_construction_initial
3337    
3338  sub _tree_construction_root_element ($) {  sub _tree_construction_root_element ($) {
3339    my $self = shift;    my $self = shift;
3340    
3341      ## NOTE: "before html" insertion mode.
3342        
3343    B: {    B: {
3344        if ($token->{type} == DOCTYPE_TOKEN) {        if ($token->{type} == DOCTYPE_TOKEN) {
3345          !!!parse-error (type => 'in html:#DOCTYPE');          !!!cp ('t19');
3346            !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
3347          ## Ignore the token          ## Ignore the token
3348          ## Stay in the phase          ## Stay in the insertion mode.
3349          !!!next-token;          !!!next-token;
3350          redo B;          redo B;
3351        } elsif ($token->{type} == COMMENT_TOKEN) {        } elsif ($token->{type} == COMMENT_TOKEN) {
3352            !!!cp ('t20');
3353          my $comment = $self->{document}->create_comment ($token->{data});          my $comment = $self->{document}->create_comment ($token->{data});
3354          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
3355          ## Stay in the phase          ## Stay in the insertion mode.
3356          !!!next-token;          !!!next-token;
3357          redo B;          redo B;
3358        } elsif ($token->{type} == CHARACTER_TOKEN) {        } elsif ($token->{type} == CHARACTER_TOKEN) {
# Line 2584  sub _tree_construction_root_element ($) Line 3360  sub _tree_construction_root_element ($)
3360            ## Ignore the token.            ## Ignore the token.
3361    
3362            unless (length $token->{data}) {            unless (length $token->{data}) {
3363              ## Stay in the phase              !!!cp ('t21');
3364                ## Stay in the insertion mode.
3365              !!!next-token;              !!!next-token;
3366              redo B;              redo B;
3367              } else {
3368                !!!cp ('t22');
3369            }            }
3370            } else {
3371              !!!cp ('t23');
3372          }          }
3373    
3374          $self->{application_cache_selection}->(undef);          $self->{application_cache_selection}->(undef);
3375    
3376          #          #
3377        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
3378          if ($token->{tag_name} eq 'html' and          if ($token->{tag_name} eq 'html') {
3379              $token->{attributes}->{manifest}) {            my $root_element;
3380            $self->{application_cache_selection}            !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
3381                 ->($token->{attributes}->{manifest}->{value});            $self->{document}->append_child ($root_element);
3382            ## ISSUE: No relative reference resolution?            push @{$self->{open_elements}},
3383                  [$root_element, $el_category->{html}];
3384    
3385              if ($token->{attributes}->{manifest}) {
3386                !!!cp ('t24');
3387                $self->{application_cache_selection}
3388                    ->($token->{attributes}->{manifest}->{value});
3389                ## ISSUE: Spec is unclear on relative references.
3390                ## According to Hixie (#whatwg 2008-03-19), it should be
3391                ## resolved against the base URI of the document in HTML
3392                ## or xml:base of the element in XHTML.
3393              } else {
3394                !!!cp ('t25');
3395                $self->{application_cache_selection}->(undef);
3396              }
3397    
3398              !!!nack ('t25c');
3399    
3400              !!!next-token;
3401              return; ## Go to the "before head" insertion mode.
3402          } else {          } else {
3403            $self->{application_cache_selection}->(undef);            !!!cp ('t25.1');
3404              #
3405          }          }
   
         ## ISSUE: There is an issue in the spec  
         #  
3406        } elsif ({        } elsif ({
3407                  END_TAG_TOKEN, 1,                  END_TAG_TOKEN, 1,
3408                  END_OF_FILE_TOKEN, 1,                  END_OF_FILE_TOKEN, 1,
3409                 }->{$token->{type}}) {                 }->{$token->{type}}) {
3410          $self->{application_cache_selection}->(undef);          !!!cp ('t26');
   
         ## ISSUE: There is an issue in the spec  
3411          #          #
3412        } else {        } else {
3413          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
3414        }        }
3415    
3416        my $root_element; !!!create-element ($root_element, 'html');      my $root_element;
3417        $self->{document}->append_child ($root_element);      !!!create-element ($root_element, $HTML_NS, 'html',, $token);
3418        push @{$self->{open_elements}}, [$root_element, 'html'];      $self->{document}->append_child ($root_element);
3419        ## reprocess      push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
3420        #redo B;  
3421        return; ## Go to the main phase.      $self->{application_cache_selection}->(undef);
3422    
3423        ## NOTE: Reprocess the token.
3424        !!!ack-later;
3425        return; ## Go to the "before head" insertion mode.
3426    
3427        ## ISSUE: There is an issue in the spec
3428    } # B    } # B
3429    
3430      die "$0: _tree_construction_root_element: This should never be reached";
3431  } # _tree_construction_root_element  } # _tree_construction_root_element
3432    
3433  sub _reset_insertion_mode ($) {  sub _reset_insertion_mode ($) {
# Line 2638  sub _reset_insertion_mode ($) { Line 3442  sub _reset_insertion_mode ($) {
3442            
3443      ## Step 3      ## Step 3
3444      S3: {      S3: {
       ## ISSUE: Oops! "If node is the first node in the stack of open  
       ## elements, then set last to true. If the context element of the  
       ## HTML fragment parsing algorithm is neither a td element nor a  
       ## th element, then set node to the context element. (fragment case)":  
       ## The second "if" is in the scope of the first "if"!?  
3445        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
3446          $last = 1;          $last = 1;
3447          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
3448            if ($self->{inner_html_node}->[1] eq 'td' or            !!!cp ('t28');
3449                $self->{inner_html_node}->[1] eq 'th') {            $node = $self->{inner_html_node};
3450              #          } else {
3451            } else {            die "_reset_insertion_mode: t27";
             $node = $self->{inner_html_node};  
           }  
3452          }          }
3453        }        }
3454              
3455        ## Step 4..13        ## Step 4..14
3456        my $new_mode = {        my $new_mode;
3457          if ($node->[1] & FOREIGN_EL) {
3458            !!!cp ('t28.1');
3459            ## NOTE: Strictly spaking, the line below only applies to MathML and
3460            ## SVG elements.  Currently the HTML syntax supports only MathML and
3461            ## SVG elements as foreigners.
3462            $new_mode = IN_BODY_IM | IN_FOREIGN_CONTENT_IM;
3463          } elsif ($node->[1] & TABLE_CELL_EL) {
3464            if ($last) {
3465              !!!cp ('t28.2');
3466              #
3467            } else {
3468              !!!cp ('t28.3');
3469              $new_mode = IN_CELL_IM;
3470            }
3471          } else {
3472            !!!cp ('t28.4');
3473            $new_mode = {
3474                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
3475                        td => IN_CELL_IM,                        ## NOTE: |option| and |optgroup| do not set
3476                        th => IN_CELL_IM,                        ## insertion mode to "in select" by themselves.
3477                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
3478                        tbody => IN_TABLE_BODY_IM,                        tbody => IN_TABLE_BODY_IM,
3479                        thead => IN_TABLE_BODY_IM,                        thead => IN_TABLE_BODY_IM,
# Line 2670  sub _reset_insertion_mode ($) { Line 3484  sub _reset_insertion_mode ($) {
3484                        head => IN_BODY_IM, # not in head!                        head => IN_BODY_IM, # not in head!
3485                        body => IN_BODY_IM,                        body => IN_BODY_IM,
3486                        frameset => IN_FRAMESET_IM,                        frameset => IN_FRAMESET_IM,
3487                       }->{$node->[1]};                       }->{$node->[0]->manakai_local_name};
3488          }
3489        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
3490                
3491        ## Step 14        ## Step 15
3492        if ($node->[1] eq 'html') {        if ($node->[1] & HTML_EL) {
3493          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
3494              !!!cp ('t29');
3495            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
3496          } else {          } else {
3497              ## ISSUE: Can this state be reached?
3498              !!!cp ('t30');
3499            $self->{insertion_mode} = AFTER_HEAD_IM;            $self->{insertion_mode} = AFTER_HEAD_IM;
3500          }          }
3501          return;          return;
3502          } else {
3503            !!!cp ('t31');
3504        }        }
3505                
3506        ## Step 15        ## Step 16
3507        $self->{insertion_mode} = IN_BODY_IM and return if $last;        $self->{insertion_mode} = IN_BODY_IM and return if $last;
3508                
3509        ## Step 16        ## Step 17
3510        $i--;        $i--;
3511        $node = $self->{open_elements}->[$i];        $node = $self->{open_elements}->[$i];
3512                
3513        ## Step 17        ## Step 18
3514        redo S3;        redo S3;
3515      } # S3      } # S3
3516    
3517      die "$0: _reset_insertion_mode: This line should never be reached";
3518  } # _reset_insertion_mode  } # _reset_insertion_mode
3519    
3520  sub _tree_construction_main ($) {  sub _tree_construction_main ($) {
# Line 2714  sub _tree_construction_main ($) { Line 3536  sub _tree_construction_main ($) {
3536      return if $entry->[0] eq '#marker';      return if $entry->[0] eq '#marker';
3537      for (@{$self->{open_elements}}) {      for (@{$self->{open_elements}}) {
3538        if ($entry->[0] eq $_->[0]) {        if ($entry->[0] eq $_->[0]) {
3539            !!!cp ('t32');
3540          return;          return;
3541        }        }
3542      }      }
# Line 2728  sub _tree_construction_main ($) { Line 3551  sub _tree_construction_main ($) {
3551    
3552        ## Step 6        ## Step 6
3553        if ($entry->[0] eq '#marker') {        if ($entry->[0] eq '#marker') {
3554            !!!cp ('t33_1');
3555          #          #
3556        } else {        } else {
3557          my $in_open_elements;          my $in_open_elements;
3558          OE: for (@{$self->{open_elements}}) {          OE: for (@{$self->{open_elements}}) {
3559            if ($entry->[0] eq $_->[0]) {            if ($entry->[0] eq $_->[0]) {
3560                !!!cp ('t33');
3561              $in_open_elements = 1;              $in_open_elements = 1;
3562              last OE;              last OE;
3563            }            }
3564          }          }
3565          if ($in_open_elements) {          if ($in_open_elements) {
3566              !!!cp ('t34');
3567            #            #
3568          } else {          } else {
3569              ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
3570              !!!cp ('t35');
3571            redo S4;            redo S4;
3572          }          }
3573        }        }
# Line 2762  sub _tree_construction_main ($) { Line 3590  sub _tree_construction_main ($) {
3590    
3591        ## Step 11        ## Step 11
3592        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
3593            !!!cp ('t36');
3594          ## Step 7'          ## Step 7'
3595          $i++;          $i++;
3596          $entry = $active_formatting_elements->[$i];          $entry = $active_formatting_elements->[$i];
3597                    
3598          redo S7;          redo S7;
3599        }        }
3600    
3601          !!!cp ('t37');
3602      } # S7      } # S7
3603    }; # $reconstruct_active_formatting_elements    }; # $reconstruct_active_formatting_elements
3604    
3605    my $clear_up_to_marker = sub {    my $clear_up_to_marker = sub {
3606      for (reverse 0..$#$active_formatting_elements) {      for (reverse 0..$#$active_formatting_elements) {
3607        if ($active_formatting_elements->[$_]->[0] eq '#marker') {        if ($active_formatting_elements->[$_]->[0] eq '#marker') {
3608            !!!cp ('t38');
3609          splice @$active_formatting_elements, $_;          splice @$active_formatting_elements, $_;
3610          return;          return;
3611        }        }
3612      }      }
3613    
3614        !!!cp ('t39');
3615    }; # $clear_up_to_marker    }; # $clear_up_to_marker
3616    
3617    my $parse_rcdata = sub ($$) {    my $insert;
3618      my ($content_model_flag, $insert) = @_;  
3619      my $parse_rcdata = sub ($) {
3620        my ($content_model_flag) = @_;
3621    
3622      ## Step 1      ## Step 1
3623      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
3624      my $el;      my $el;
3625      !!!create-element ($el, $start_tag_name, $token->{attributes});      !!!create-element ($el, $HTML_NS, $start_tag_name, $token->{attributes}, $token);
3626    
3627      ## Step 2      ## Step 2
3628      $insert->($el); # /context node/->append_child ($el)      $insert->($el);
3629    
3630      ## Step 3      ## Step 3
3631      $self->{content_model} = $content_model_flag; # CDATA or RCDATA      $self->{content_model} = $content_model_flag; # CDATA or RCDATA
# Line 2797  sub _tree_construction_main ($) { Line 3633  sub _tree_construction_main ($) {
3633    
3634      ## Step 4      ## Step 4
3635      my $text = '';      my $text = '';
3636        !!!nack ('t40.1');
3637      !!!next-token;      !!!next-token;
3638      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
3639          !!!cp ('t40');
3640        $text .= $token->{data};        $text .= $token->{data};
3641        !!!next-token;        !!!next-token;
3642      }      }
3643    
3644      ## Step 5      ## Step 5
3645      if (length $text) {      if (length $text) {
3646          !!!cp ('t41');
3647        my $text = $self->{document}->create_text_node ($text);        my $text = $self->{document}->create_text_node ($text);
3648        $el->append_child ($text);        $el->append_child ($text);
3649      }      }
# Line 2813  sub _tree_construction_main ($) { Line 3652  sub _tree_construction_main ($) {
3652      $self->{content_model} = PCDATA_CONTENT_MODEL;      $self->{content_model} = PCDATA_CONTENT_MODEL;
3653    
3654      ## Step 7      ## Step 7
3655      if ($token->{type} == END_TAG_TOKEN and $token->{tag_name} eq $start_tag_name) {      if ($token->{type} == END_TAG_TOKEN and
3656            $token->{tag_name} eq $start_tag_name) {
3657          !!!cp ('t42');
3658        ## Ignore the token        ## Ignore the token
     } elsif ($content_model_flag == CDATA_CONTENT_MODEL) {  
       !!!parse-error (type => 'in CDATA:#'.$token->{type});  
     } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {  
       !!!parse-error (type => 'in RCDATA:#'.$token->{type});  
3659      } else {      } else {
3660        die "$0: $content_model_flag in parse_rcdata";        ## NOTE: An end-of-file token.
3661          if ($content_model_flag == CDATA_CONTENT_MODEL) {
3662            !!!cp ('t43');
3663            !!!parse-error (type => 'in CDATA:#eof', token => $token);
3664          } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
3665            !!!cp ('t44');
3666            !!!parse-error (type => 'in RCDATA:#eof', token => $token);
3667          } else {
3668            die "$0: $content_model_flag in parse_rcdata";
3669          }
3670      }      }
3671      !!!next-token;      !!!next-token;
3672    }; # $parse_rcdata    }; # $parse_rcdata
3673    
3674    my $script_start_tag = sub ($) {    my $script_start_tag = sub () {
     my $insert = $_[0];  
3675      my $script_el;      my $script_el;
3676      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
3677      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
3678    
3679      $self->{content_model} = CDATA_CONTENT_MODEL;      $self->{content_model} = CDATA_CONTENT_MODEL;
3680      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
3681            
3682      my $text = '';      my $text = '';
3683        !!!nack ('t45.1');
3684      !!!next-token;      !!!next-token;
3685      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
3686          !!!cp ('t45');
3687        $text .= $token->{data};        $text .= $token->{data};
3688        !!!next-token;        !!!next-token;
3689      } # stop if non-character token or tokenizer stops tokenising      } # stop if non-character token or tokenizer stops tokenising
3690      if (length $text) {      if (length $text) {
3691          !!!cp ('t46');
3692        $script_el->manakai_append_text ($text);        $script_el->manakai_append_text ($text);
3693      }      }
3694                                
# Line 2848  sub _tree_construction_main ($) { Line 3696  sub _tree_construction_main ($) {
3696    
3697      if ($token->{type} == END_TAG_TOKEN and      if ($token->{type} == END_TAG_TOKEN and
3698          $token->{tag_name} eq 'script') {          $token->{tag_name} eq 'script') {
3699          !!!cp ('t47');
3700        ## Ignore the token        ## Ignore the token
3701      } else {      } else {
3702        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!cp ('t48');
3703          !!!parse-error (type => 'in CDATA:#eof', token => $token);
3704        ## ISSUE: And ignore?        ## ISSUE: And ignore?
3705        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3706      }      }
3707            
3708      if (defined $self->{inner_html_node}) {      if (defined $self->{inner_html_node}) {
3709          !!!cp ('t49');
3710        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3711      } else {      } else {
3712          !!!cp ('t50');
3713        ## TODO: $old_insertion_point = current insertion point        ## TODO: $old_insertion_point = current insertion point
3714        ## TODO: insertion point = just before the next input character        ## TODO: insertion point = just before the next input character
3715    
# Line 2871  sub _tree_construction_main ($) { Line 3723  sub _tree_construction_main ($) {
3723      !!!next-token;      !!!next-token;
3724    }; # $script_start_tag    }; # $script_start_tag
3725    
3726      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
3727      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
3728      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3729    
3730    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3731      my $tag_name = shift;      my $end_tag_token = shift;
3732        my $tag_name = $end_tag_token->{tag_name};
3733    
3734        ## NOTE: The adoption agency algorithm (AAA).
3735    
3736      FET: {      FET: {
3737        ## Step 1        ## Step 1
3738        my $formatting_element;        my $formatting_element;
3739        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
3740        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3741          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[0] eq '#marker') {
3742              !!!cp ('t52');
3743              last AFE;
3744            } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
3745                         eq $tag_name) {
3746              !!!cp ('t51');
3747            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
3748            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
3749            last AFE;            last AFE;
         } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {  
           last AFE;  
3750          }          }
3751        } # AFE        } # AFE
3752        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3753          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!cp ('t53');
3754            !!!parse-error (type => 'unmatched end tag', text => $tag_name, token => $end_tag_token);
3755          ## Ignore the token          ## Ignore the token
3756          !!!next-token;          !!!next-token;
3757          return;          return;
# Line 2900  sub _tree_construction_main ($) { Line 3763  sub _tree_construction_main ($) {
3763          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3764          if ($node->[0] eq $formatting_element->[0]) {          if ($node->[0] eq $formatting_element->[0]) {
3765            if ($in_scope) {            if ($in_scope) {
3766                !!!cp ('t54');
3767              $formatting_element_i_in_open = $_;              $formatting_element_i_in_open = $_;
3768              last INSCOPE;              last INSCOPE;
3769            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3770              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t55');
3771                !!!parse-error (type => 'unmatched end tag',
3772                                text => $token->{tag_name},
3773                                token => $end_tag_token);
3774              ## Ignore the token              ## Ignore the token
3775              !!!next-token;              !!!next-token;
3776              return;              return;
3777            }            }
3778          } elsif ({          } elsif ($node->[1] & SCOPING_EL) {
3779                    table => 1, caption => 1, td => 1, th => 1,            !!!cp ('t56');
                   button => 1, marquee => 1, object => 1, html => 1,  
                  }->{$node->[1]}) {  
3780            $in_scope = 0;            $in_scope = 0;
3781          }          }
3782        } # INSCOPE        } # INSCOPE
3783        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3784          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!cp ('t57');
3785            !!!parse-error (type => 'unmatched end tag',
3786                            text => $token->{tag_name},
3787                            token => $end_tag_token);
3788          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3789          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3790          return;          return;
3791        }        }
3792        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3793          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!cp ('t58');
3794            !!!parse-error (type => 'not closed',
3795                            text => $self->{open_elements}->[-1]->[0]
3796                                ->manakai_local_name,
3797                            token => $end_tag_token);
3798        }        }
3799                
3800        ## Step 2        ## Step 2
# Line 2930  sub _tree_construction_main ($) { Line 3802  sub _tree_construction_main ($) {
3802        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
3803        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3804          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3805          if (not $formatting_category->{$node->[1]} and          if (not ($node->[1] & FORMATTING_EL) and
3806              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3807              ($special_category->{$node->[1]} or              ($node->[1] & SPECIAL_EL or
3808               $scoping_category->{$node->[1]})) {               $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
3809              !!!cp ('t59');
3810            $furthest_block = $node;            $furthest_block = $node;
3811            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
3812          } elsif ($node->[0] eq $formatting_element->[0]) {          } elsif ($node->[0] eq $formatting_element->[0]) {
3813              !!!cp ('t60');
3814            last OE;            last OE;
3815          }          }
3816        } # OE        } # OE
3817                
3818        ## Step 3        ## Step 3
3819        unless (defined $furthest_block) { # MUST        unless (defined $furthest_block) { # MUST
3820            !!!cp ('t61');
3821          splice @{$self->{open_elements}}, $formatting_element_i_in_open;          splice @{$self->{open_elements}}, $formatting_element_i_in_open;
3822          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
3823          !!!next-token;          !!!next-token;
# Line 2955  sub _tree_construction_main ($) { Line 3830  sub _tree_construction_main ($) {
3830        ## Step 5        ## Step 5
3831        my $furthest_block_parent = $furthest_block->[0]->parent_node;        my $furthest_block_parent = $furthest_block->[0]->parent_node;
3832        if (defined $furthest_block_parent) {        if (defined $furthest_block_parent) {
3833            !!!cp ('t62');
3834          $furthest_block_parent->remove_child ($furthest_block->[0]);          $furthest_block_parent->remove_child ($furthest_block->[0]);
3835        }        }
3836                
# Line 2977  sub _tree_construction_main ($) { Line 3853  sub _tree_construction_main ($) {
3853          S7S2: {          S7S2: {
3854            for (reverse 0..$#$active_formatting_elements) {            for (reverse 0..$#$active_formatting_elements) {
3855              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
3856                  !!!cp ('t63');
3857                $node_i_in_active = $_;                $node_i_in_active = $_;
3858                last S7S2;                last S7S2;
3859              }              }
# Line 2990  sub _tree_construction_main ($) { Line 3867  sub _tree_construction_main ($) {
3867                    
3868          ## Step 4          ## Step 4
3869          if ($last_node->[0] eq $furthest_block->[0]) {          if ($last_node->[0] eq $furthest_block->[0]) {
3870              !!!cp ('t64');
3871            $bookmark_prev_el = $node->[0];            $bookmark_prev_el = $node->[0];
3872          }          }
3873                    
3874          ## Step 5          ## Step 5
3875          if ($node->[0]->has_child_nodes ()) {          if ($node->[0]->has_child_nodes ()) {
3876              !!!cp ('t65');
3877            my $clone = [$node->[0]->clone_node (0), $node->[1]];            my $clone = [$node->[0]->clone_node (0), $node->[1]];
3878            $active_formatting_elements->[$node_i_in_active] = $clone;            $active_formatting_elements->[$node_i_in_active] = $clone;
3879            $self->{open_elements}->[$node_i_in_open] = $clone;            $self->{open_elements}->[$node_i_in_open] = $clone;
# Line 3012  sub _tree_construction_main ($) { Line 3891  sub _tree_construction_main ($) {
3891        } # S7          } # S7  
3892                
3893        ## Step 8        ## Step 8
3894        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
3895            my $foster_parent_element;
3896            my $next_sibling;
3897            OE: for (reverse 0..$#{$self->{open_elements}}) {
3898              if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
3899                                 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3900                                 if (defined $parent and $parent->node_type == 1) {
3901                                   !!!cp ('t65.1');
3902                                   $foster_parent_element = $parent;
3903                                   $next_sibling = $self->{open_elements}->[$_]->[0];
3904                                 } else {
3905                                   !!!cp ('t65.2');
3906                                   $foster_parent_element
3907                                     = $self->{open_elements}->[$_ - 1]->[0];
3908                                 }
3909                                 last OE;
3910                               }
3911                             } # OE
3912                             $foster_parent_element = $self->{open_elements}->[0]->[0]
3913                               unless defined $foster_parent_element;
3914            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
3915            $open_tables->[-1]->[1] = 1; # tainted
3916          } else {
3917            !!!cp ('t65.3');
3918            $common_ancestor_node->[0]->append_child ($last_node->[0]);
3919          }
3920                
3921        ## Step 9        ## Step 9
3922        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 3029  sub _tree_construction_main ($) { Line 3933  sub _tree_construction_main ($) {
3933        my $i;        my $i;
3934        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3935          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
3936              !!!cp ('t66');
3937            splice @$active_formatting_elements, $_, 1;            splice @$active_formatting_elements, $_, 1;
3938            $i-- and last AFE if defined $i;            $i-- and last AFE if defined $i;
3939          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
3940              !!!cp ('t67');
3941            $i = $_;            $i = $_;
3942          }          }
3943        } # AFE        } # AFE
# Line 3041  sub _tree_construction_main ($) { Line 3947  sub _tree_construction_main ($) {
3947        undef $i;        undef $i;
3948        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3949          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
3950              !!!cp ('t68');
3951            splice @{$self->{open_elements}}, $_, 1;            splice @{$self->{open_elements}}, $_, 1;
3952            $i-- and last OE if defined $i;            $i-- and last OE if defined $i;
3953          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
3954              !!!cp ('t69');
3955            $i = $_;            $i = $_;
3956          }          }
3957        } # OE        } # OE
# Line 3054  sub _tree_construction_main ($) { Line 3962  sub _tree_construction_main ($) {
3962      } # FET      } # FET
3963    }; # $formatting_end_tag    }; # $formatting_end_tag
3964    
3965    my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
3966      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
3967    }; # $insert_to_current    }; # $insert_to_current
3968    
3969    my $insert_to_foster = sub {    my $insert_to_foster = sub {
3970                         my $child = shift;      my $child = shift;
3971                         if ({      if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
3972                              table => 1, tbody => 1, tfoot => 1,        # MUST
3973                              thead => 1, tr => 1,        my $foster_parent_element;
3974                             }->{$self->{open_elements}->[-1]->[1]}) {        my $next_sibling;
3975                           # MUST        OE: for (reverse 0..$#{$self->{open_elements}}) {
3976                           my $foster_parent_element;          if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
                          my $next_sibling;  
                          OE: for (reverse 0..$#{$self->{open_elements}}) {  
                            if ($self->{open_elements}->[$_]->[1] eq 'table') {  
3977                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3978                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3979                                   !!!cp ('t70');
3980                                 $foster_parent_element = $parent;                                 $foster_parent_element = $parent;
3981                                 $next_sibling = $self->{open_elements}->[$_]->[0];                                 $next_sibling = $self->{open_elements}->[$_]->[0];
3982                               } else {                               } else {
3983                                   !!!cp ('t71');
3984                                 $foster_parent_element                                 $foster_parent_element
3985                                   = $self->{open_elements}->[$_ - 1]->[0];                                   = $self->{open_elements}->[$_ - 1]->[0];
3986                               }                               }
# Line 3084  sub _tree_construction_main ($) { Line 3991  sub _tree_construction_main ($) {
3991                             unless defined $foster_parent_element;                             unless defined $foster_parent_element;
3992                           $foster_parent_element->insert_before                           $foster_parent_element->insert_before
3993                             ($child, $next_sibling);                             ($child, $next_sibling);
3994                         } else {        $open_tables->[-1]->[1] = 1; # tainted
3995                           $self->{open_elements}->[-1]->[0]->append_child ($child);      } else {
3996                         }        !!!cp ('t72');
3997          $self->{open_elements}->[-1]->[0]->append_child ($child);
3998        }
3999    }; # $insert_to_foster    }; # $insert_to_foster
4000    
4001    my $insert;    B: while (1) {
   
   B: {  
4002      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
4003        !!!parse-error (type => 'DOCTYPE in the middle');        !!!cp ('t73');
4004          !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
4005        ## Ignore the token        ## Ignore the token
4006        ## Stay in the phase        ## Stay in the phase
4007        !!!next-token;        !!!next-token;
4008        redo B;        next B;
     } elsif ($token->{type} == END_OF_FILE_TOKEN) {  
       if ($self->{insertion_mode} & AFTER_HTML_IMS) {  
         #  
       } else {  
         ## Generate implied end tags  
         if ({  
              dd => 1, dt => 1, li => 1, p => 1, td => 1, th => 1, tr => 1,  
              tbody => 1, tfoot=> 1, thead => 1,  
             }->{$self->{open_elements}->[-1]->[1]}) {  
           !!!back-token;  
           $token = {type => END_TAG_TOKEN, tag_name => $self->{open_elements}->[-1]->[1]};  
           redo B;  
         }  
           
         if (@{$self->{open_elements}} > 2 or  
             (@{$self->{open_elements}} == 2 and $self->{open_elements}->[1]->[1] ne 'body')) {  
           !!!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') {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         }  
   
         ## ISSUE: There is an issue in the spec.  
       }  
   
       ## Stop parsing  
       last B;  
4009      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
4010               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
4011        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4012          ## Turn into the main phase          !!!cp ('t79');
4013          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html', text => 'html', token => $token);
4014          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
4015        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
4016          ## Turn into the main phase          !!!cp ('t80');
4017          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html', text => 'html', token => $token);
4018          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
4019          } else {
4020            !!!cp ('t81');
4021        }        }
4022    
4023  ## ISSUE: "aa<html>" is not a parse error.        !!!cp ('t82');
4024  ## ISSUE: "<html>" in fragment is not a parse error.        !!!parse-error (type => 'not first start tag', token => $token);
       unless ($token->{first_start_tag}) {  
         !!!parse-error (type => 'not first start tag');  
       }  
4025        my $top_el = $self->{open_elements}->[0]->[0];        my $top_el = $self->{open_elements}->[0]->[0];
4026        for my $attr_name (keys %{$token->{attributes}}) {        for my $attr_name (keys %{$token->{attributes}}) {
4027          unless ($top_el->has_attribute_ns (undef, $attr_name)) {          unless ($top_el->has_attribute_ns (undef, $attr_name)) {
4028              !!!cp ('t84');
4029            $top_el->set_attribute_ns            $top_el->set_attribute_ns
4030              (undef, [undef, $attr_name],              (undef, [undef, $attr_name],
4031               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
4032          }          }
4033        }        }
4034          !!!nack ('t84.1');
4035        !!!next-token;        !!!next-token;
4036        redo B;        next B;
4037      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
4038        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
4039        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
4040            !!!cp ('t85');
4041          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
4042        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
4043            !!!cp ('t86');
4044          $self->{open_elements}->[0]->[0]->append_child ($comment);          $self->{open_elements}->[0]->[0]->append_child ($comment);
4045        } else {        } else {
4046            !!!cp ('t87');
4047          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
4048        }        }
4049        !!!next-token;        !!!next-token;
4050        redo B;        next B;
4051      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
4052          if ($token->{type} == CHARACTER_TOKEN) {
4053            !!!cp ('t87.1');
4054            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4055            !!!next-token;
4056            next B;
4057          } elsif ($token->{type} == START_TAG_TOKEN) {
4058            if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
4059                 $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
4060                not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
4061                ($token->{tag_name} eq 'svg' and
4062                 $self->{open_elements}->[-1]->[1] & MML_AXML_EL)) {
4063              ## NOTE: "using the rules for secondary insertion mode"then"continue"
4064              !!!cp ('t87.2');
4065              #
4066            } elsif ({
4067                      b => 1, big => 1, blockquote => 1, body => 1, br => 1,
4068                      center => 1, code => 1, dd => 1, div => 1, dl => 1, dt => 1,
4069                      em => 1, embed => 1, font => 1, h1 => 1, h2 => 1, h3 => 1,
4070                      h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, i => 1,
4071                      img => 1, li => 1, listing => 1, menu => 1, meta => 1,
4072                      nobr => 1, ol => 1, p => 1, pre => 1, ruby => 1, s => 1,
4073                      small => 1, span => 1, strong => 1, strike => 1, sub => 1,
4074                      sup => 1, table => 1, tt => 1, u => 1, ul => 1, var => 1,
4075                     }->{$token->{tag_name}}) {
4076              !!!cp ('t87.2');
4077              !!!parse-error (type => 'not closed',
4078                              text => $self->{open_elements}->[-1]->[0]
4079                                  ->manakai_local_name,
4080                              token => $token);
4081    
4082              pop @{$self->{open_elements}}
4083                  while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4084    
4085              $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4086              ## Reprocess.
4087              next B;
4088            } else {
4089              my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
4090              my $tag_name = $token->{tag_name};
4091              if ($nsuri eq $SVG_NS) {
4092                $tag_name = {
4093                   altglyph => 'altGlyph',
4094                   altglyphdef => 'altGlyphDef',
4095                   altglyphitem => 'altGlyphItem',
4096                   animatecolor => 'animateColor',
4097                   animatemotion => 'animateMotion',
4098                   animatetransform => 'animateTransform',
4099                   clippath => 'clipPath',
4100                   feblend => 'feBlend',
4101                   fecolormatrix => 'feColorMatrix',
4102                   fecomponenttransfer => 'feComponentTransfer',
4103                   fecomposite => 'feComposite',
4104                   feconvolvematrix => 'feConvolveMatrix',
4105                   fediffuselighting => 'feDiffuseLighting',
4106                   fedisplacementmap => 'feDisplacementMap',
4107                   fedistantlight => 'feDistantLight',
4108                   feflood => 'feFlood',
4109                   fefunca => 'feFuncA',
4110                   fefuncb => 'feFuncB',
4111                   fefuncg => 'feFuncG',
4112                   fefuncr => 'feFuncR',
4113                   fegaussianblur => 'feGaussianBlur',
4114                   feimage => 'feImage',
4115                   femerge => 'feMerge',
4116                   femergenode => 'feMergeNode',
4117                   femorphology => 'feMorphology',
4118                   feoffset => 'feOffset',
4119                   fepointlight => 'fePointLight',
4120                   fespecularlighting => 'feSpecularLighting',
4121                   fespotlight => 'feSpotLight',
4122                   fetile => 'feTile',
4123                   feturbulence => 'feTurbulence',
4124                   foreignobject => 'foreignObject',
4125                   glyphref => 'glyphRef',
4126                   lineargradient => 'linearGradient',
4127                   radialgradient => 'radialGradient',
4128                   #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
4129                   textpath => 'textPath',  
4130                }->{$tag_name} || $tag_name;
4131              }
4132    
4133              ## "adjust SVG attributes" (SVG only) - done in insert-element-f
4134    
4135              ## "adjust foreign attributes" - done in insert-element-f
4136    
4137              !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
4138    
4139              if ($self->{self_closing}) {
4140                pop @{$self->{open_elements}};
4141                !!!ack ('t87.3');
4142              } else {
4143                !!!cp ('t87.4');
4144              }
4145    
4146              !!!next-token;
4147              next B;
4148            }
4149          } elsif ($token->{type} == END_TAG_TOKEN) {
4150            ## NOTE: "using the rules for secondary insertion mode" then "continue"
4151            !!!cp ('t87.5');
4152            #
4153          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4154            !!!cp ('t87.6');
4155            !!!parse-error (type => 'not closed',
4156                            text => $self->{open_elements}->[-1]->[0]
4157                                ->manakai_local_name,
4158                            token => $token);
4159    
4160            pop @{$self->{open_elements}}
4161                while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
4162    
4163            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
4164            ## Reprocess.
4165            next B;
4166          } else {
4167            die "$0: $token->{type}: Unknown token type";        
4168          }
4169        }
4170    
4171        if ($self->{insertion_mode} & HEAD_IMS) {
4172        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4173          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4174            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4175                !!!cp ('t88.2');
4176                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4177              } else {
4178                !!!cp ('t88.1');
4179                ## Ignore the token.
4180                !!!next-token;
4181                next B;
4182              }
4183            unless (length $token->{data}) {            unless (length $token->{data}) {
4184                !!!cp ('t88');
4185              !!!next-token;              !!!next-token;
4186              redo B;              next B;
4187            }            }
4188          }          }
4189    
4190          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4191              !!!cp ('t89');
4192            ## As if <head>            ## As if <head>
4193            !!!create-element ($self->{head_element}, 'head');            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4194            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4195            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            push @{$self->{open_elements}},
4196                  [$self->{head_element}, $el_category->{head}];
4197    
4198            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4199            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4200    
4201            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
4202          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4203              !!!cp ('t90');
4204            ## As if </noscript>            ## As if </noscript>
4205            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4206            !!!parse-error (type => 'in noscript:#character');            !!!parse-error (type => 'in noscript:#text', token => $token);
4207                        
4208            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4209            ## As if </head>            ## As if </head>
# Line 3195  sub _tree_construction_main ($) { Line 4211  sub _tree_construction_main ($) {
4211    
4212            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
4213          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4214              !!!cp ('t91');
4215            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
4216    
4217            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
4218            } else {
4219              !!!cp ('t92');
4220          }          }
4221    
4222              ## "after head" insertion mode          ## "after head" insertion mode
4223              ## As if <body>          ## As if <body>
4224              !!!insert-element ('body');          !!!insert-element ('body',, $token);
4225              $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
4226              ## reprocess          ## reprocess
4227              redo B;          next B;
4228            } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4229              if ($token->{tag_name} eq 'head') {          if ($token->{tag_name} eq 'head') {
4230                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4231                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});              !!!cp ('t93');
4232                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
4233                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];              $self->{open_elements}->[-1]->[0]->append_child
4234                  $self->{insertion_mode} = IN_HEAD_IM;                  ($self->{head_element});
4235                  !!!next-token;              push @{$self->{open_elements}},
4236                  redo B;                  [$self->{head_element}, $el_category->{head}];
4237                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {              $self->{insertion_mode} = IN_HEAD_IM;
4238                  #              !!!nack ('t93.1');
4239                } else {              !!!next-token;
4240                  !!!parse-error (type => 'in head:head'); # or in head noscript              next B;
4241                  ## Ignore the token            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4242                  !!!next-token;              !!!cp ('t93.2');
4243                  redo B;              !!!parse-error (type => 'after head', text => 'head',
4244                }                              token => $token);
4245              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              ## Ignore the token
4246                ## As if <head>              !!!nack ('t93.3');
4247                !!!create-element ($self->{head_element}, 'head');              !!!next-token;
4248                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});              next B;
4249                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            } else {
4250                !!!cp ('t95');
4251                !!!parse-error (type => 'in head:head',
4252                                token => $token); # or in head noscript
4253                ## Ignore the token
4254                !!!nack ('t95.1');
4255                !!!next-token;
4256                next B;
4257              }
4258            } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4259              !!!cp ('t96');
4260              ## As if <head>
4261              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4262              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4263              push @{$self->{open_elements}},
4264                  [$self->{head_element}, $el_category->{head}];
4265    
4266                $self->{insertion_mode} = IN_HEAD_IM;            $self->{insertion_mode} = IN_HEAD_IM;
4267                ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
4268              }          } else {
4269              !!!cp ('t97');
4270            }
4271    
4272              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
4273                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4274                    !!!cp ('t98');
4275                  ## As if </noscript>                  ## As if </noscript>
4276                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4277                  !!!parse-error (type => 'in noscript:base');                  !!!parse-error (type => 'in noscript', text => 'base',
4278                                    token => $token);
4279                                
4280                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4281                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4282                  } else {
4283                    !!!cp ('t99');
4284                }                }
4285    
4286                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4287                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4288                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t100');
4289                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'after head',
4290                                    text => $token->{tag_name}, token => $token);
4291                    push @{$self->{open_elements}},
4292                        [$self->{head_element}, $el_category->{head}];
4293                  } else {
4294                    !!!cp ('t101');
4295                }                }
4296                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4297                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4298                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
4299                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4300                  !!!nack ('t101.1');
4301                !!!next-token;                !!!next-token;
4302                redo B;                next B;
4303              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
4304                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4305                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4306                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t102');
4307                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'after head',
4308                                    text => $token->{tag_name}, token => $token);
4309                    push @{$self->{open_elements}},
4310                        [$self->{head_element}, $el_category->{head}];
4311                  } else {
4312                    !!!cp ('t103');
4313                }                }
4314                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4315                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
4316                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
4317                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4318                  !!!ack ('t103.1');
4319                !!!next-token;                !!!next-token;
4320                redo B;                next B;
4321              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
4322                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4323                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4324                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t104');
4325                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'after head',
4326                                    text => $token->{tag_name}, token => $token);
4327                    push @{$self->{open_elements}},
4328                        [$self->{head_element}, $el_category->{head}];
4329                  } else {
4330                    !!!cp ('t105');
4331                }                }
4332                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4333                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.
4334    
4335                unless ($self->{confident}) {                unless ($self->{confident}) {
4336                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) {
4337                      !!!cp ('t106');
4338                      ## NOTE: Whether the encoding is supported or not is handled
4339                      ## in the {change_encoding} callback.
4340                    $self->{change_encoding}                    $self->{change_encoding}
4341                        ->($self, $token->{attributes}->{charset}->{value});                        ->($self, $token->{attributes}->{charset}->{value},
4342                             $token);
4343                                        
4344                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4345                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
4346                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
4347                                                 ->{has_reference});                                                 ->{has_reference});
4348                  } elsif ($token->{attributes}->{content}) {                  } elsif ($token->{attributes}->{content}) {
                   ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
4349                    if ($token->{attributes}->{content}->{value}                    if ($token->{attributes}->{content}->{value}
4350                        =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                        =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4351                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
4352                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4353                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20\x3B]*))/x) {
4354                        !!!cp ('t107');
4355                        ## NOTE: Whether the encoding is supported or not is handled
4356                        ## in the {change_encoding} callback.
4357                      $self->{change_encoding}                      $self->{change_encoding}
4358                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
4359                               $token);
4360                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4361                          ->set_user_data (manakai_has_reference =>                          ->set_user_data (manakai_has_reference =>
4362                                               $token->{attributes}->{content}                                               $token->{attributes}->{content}
4363                                                     ->{has_reference});                                                     ->{has_reference});
4364                      } else {
4365                        !!!cp ('t108');
4366                    }                    }
4367                  }                  }
4368                } else {                } else {
4369                  if ($token->{attributes}->{charset}) {                  if ($token->{attributes}->{charset}) {
4370                      !!!cp ('t109');
4371                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4372                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
4373                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
4374                                                 ->{has_reference});                                                 ->{has_reference});
4375                  }                  }
4376                  if ($token->{attributes}->{content}) {                  if ($token->{attributes}->{content}) {
4377                      !!!cp ('t110');
4378                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4379                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
4380                                             $token->{attributes}->{content}                                             $token->{attributes}->{content}
# Line 3314  sub _tree_construction_main ($) { Line 4382  sub _tree_construction_main ($) {
4382                  }                  }
4383                }                }
4384    
4385                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
4386                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4387                  !!!ack ('t110.1');
4388                !!!next-token;                !!!next-token;
4389                redo B;                next B;
4390              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
4391                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4392                    !!!cp ('t111');
4393                  ## As if </noscript>                  ## As if </noscript>
4394                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4395                  !!!parse-error (type => 'in noscript:title');                  !!!parse-error (type => 'in noscript', text => 'title',
4396                                    token => $token);
4397                                
4398                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4399                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4400                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4401                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t112');
4402                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'after head',
4403                                    text => $token->{tag_name}, token => $token);
4404                    push @{$self->{open_elements}},
4405                        [$self->{head_element}, $el_category->{head}];
4406                  } else {
4407                    !!!cp ('t113');
4408                }                }
4409    
4410                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4411                my $parent = defined $self->{head_element} ? $self->{head_element}                my $parent = defined $self->{head_element} ? $self->{head_element}
4412                    : $self->{open_elements}->[-1]->[0];                    : $self->{open_elements}->[-1]->[0];
4413                $parse_rcdata->(RCDATA_CONTENT_MODEL,                $parse_rcdata->(RCDATA_CONTENT_MODEL);
4414                                sub { $parent->append_child ($_[0]) });                pop @{$self->{open_elements}} # <head>
               pop @{$self->{open_elements}}  
4415                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4416                redo B;                next B;
4417              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style' or
4418                         $token->{tag_name} eq 'noframes') {
4419                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and                ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
4420                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
4421                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4422                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
4423                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t114');
4424                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'after head',
4425                                    text => $token->{tag_name}, token => $token);
4426                    push @{$self->{open_elements}},
4427                        [$self->{head_element}, $el_category->{head}];
4428                  } else {
4429                    !!!cp ('t115');
4430                }                }
4431                $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);                $parse_rcdata->(CDATA_CONTENT_MODEL);
4432                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
4433                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4434                redo B;                next B;
4435              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4436                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
4437                    !!!cp ('t116');
4438                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
4439                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4440                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
4441                    !!!nack ('t116.1');
4442                  !!!next-token;                  !!!next-token;
4443                  redo B;                  next B;
4444                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4445                  !!!parse-error (type => 'in noscript:noscript');                  !!!cp ('t117');
4446                    !!!parse-error (type => 'in noscript', text => 'noscript',
4447                                    token => $token);
4448                  ## Ignore the token                  ## Ignore the token
4449                    !!!nack ('t117.1');
4450                  !!!next-token;                  !!!next-token;
4451                  redo B;                  next B;
4452                } else {                } else {
4453                    !!!cp ('t118');
4454                  #                  #
4455                }                }
4456              } elsif ($token->{tag_name} eq 'script') {              } elsif ($token->{tag_name} eq 'script') {
4457                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4458                    !!!cp ('t119');
4459                  ## As if </noscript>                  ## As if </noscript>
4460                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4461                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript', text => 'script',
4462                                    token => $token);
4463                                
4464                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4465                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4466                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4467                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t120');
4468                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'after head',
4469                                    text => $token->{tag_name}, token => $token);
4470                    push @{$self->{open_elements}},
4471                        [$self->{head_element}, $el_category->{head}];
4472                  } else {
4473                    !!!cp ('t121');
4474                }                }
4475    
4476                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
4477                $script_start_tag->($insert_to_current);                $script_start_tag->();
4478                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
4479                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
4480                redo B;                next B;
4481              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
4482                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
4483                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4484                    !!!cp ('t122');
4485                  ## As if </noscript>                  ## As if </noscript>
4486                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4487                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});                  !!!parse-error (type => 'in noscript',
4488                                    text => $token->{tag_name}, token => $token);
4489                                    
4490                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4491                  ## As if </head>                  ## As if </head>
# Line 3397  sub _tree_construction_main ($) { Line 4493  sub _tree_construction_main ($) {
4493                                    
4494                  ## Reprocess in the "after head" insertion mode...                  ## Reprocess in the "after head" insertion mode...
4495                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4496                    !!!cp ('t124');
4497                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4498                                    
4499                  ## Reprocess in the "after head" insertion mode...                  ## Reprocess in the "after head" insertion mode...
4500                  } else {
4501                    !!!cp ('t125');
4502                }                }
4503    
4504                ## "after head" insertion mode                ## "after head" insertion mode
4505                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4506                if ($token->{tag_name} eq 'body') {                if ($token->{tag_name} eq 'body') {
4507                    !!!cp ('t126');
4508                  $self->{insertion_mode} = IN_BODY_IM;                  $self->{insertion_mode} = IN_BODY_IM;
4509                } elsif ($token->{tag_name} eq 'frameset') {                } elsif ($token->{tag_name} eq 'frameset') {
4510                    !!!cp ('t127');
4511                  $self->{insertion_mode} = IN_FRAMESET_IM;                  $self->{insertion_mode} = IN_FRAMESET_IM;
4512                } else {                } else {
4513                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
4514                }                }
4515                  !!!nack ('t127.1');
4516                !!!next-token;                !!!next-token;
4517                redo B;                next B;
4518              } else {              } else {
4519                  !!!cp ('t128');
4520                #                #
4521              }              }
4522    
4523              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4524                  !!!cp ('t129');
4525                ## As if </noscript>                ## As if </noscript>
4526                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4527                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/',
4528                                  text => $token->{tag_name}, token => $token);
4529                                
4530                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4531                ## As if </head>                ## As if </head>
# Line 3428  sub _tree_construction_main ($) { Line 4533  sub _tree_construction_main ($) {
4533    
4534                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
4535              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4536                  !!!cp ('t130');
4537                ## As if </head>                ## As if </head>
4538                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4539    
4540                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
4541                } else {
4542                  !!!cp ('t131');
4543              }              }
4544    
4545              ## "after head" insertion mode              ## "after head" insertion mode
4546              ## As if <body>              ## As if <body>
4547              !!!insert-element ('body');              !!!insert-element ('body',, $token);
4548              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4549              ## reprocess              ## reprocess
4550              redo B;              !!!ack-later;
4551                next B;
4552            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
4553              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
4554                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4555                    !!!cp ('t132');
4556                  ## As if <head>                  ## As if <head>
4557                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4558                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4559                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}},
4560                        [$self->{head_element}, $el_category->{head}];
4561    
4562                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4563                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4564                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4565                  !!!next-token;                  !!!next-token;
4566                  redo B;                  next B;
4567                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4568                    !!!cp ('t133');
4569                  ## As if </noscript>                  ## As if </noscript>
4570                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4571                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:/',
4572                                    text => 'head', token => $token);
4573                                    
4574                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4575                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4576                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4577                  !!!next-token;                  !!!next-token;
4578                  redo B;                  next B;
4579                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4580                    !!!cp ('t134');
4581                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4582                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
4583                  !!!next-token;                  !!!next-token;
4584                  redo B;                  next B;
4585                  } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4586                    !!!cp ('t134.1');
4587                    !!!parse-error (type => 'unmatched end tag', text => 'head',
4588                                    token => $token);
4589                    ## Ignore the token
4590                    !!!next-token;
4591                    next B;
4592                } else {                } else {
4593                  #                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
4594                }                }
4595              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
4596                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4597                    !!!cp ('t136');
4598                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4599                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4600                  !!!next-token;                  !!!next-token;
4601                  redo B;                  next B;
4602                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM or
4603                  !!!parse-error (type => 'unmatched end tag:noscript');                         $self->{insertion_mode} == AFTER_HEAD_IM) {
4604                    !!!cp ('t137');
4605                    !!!parse-error (type => 'unmatched end tag',
4606                                    text => 'noscript', token => $token);
4607                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
4608                  !!!next-token;                  !!!next-token;
4609                  redo B;                  next B;
4610                } else {                } else {
4611                    !!!cp ('t138');
4612                  #                  #
4613                }                }
4614              } elsif ({              } elsif ({
4615                        body => 1, html => 1,                        body => 1, html => 1,
4616                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4617                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM or
4618                  ## As if <head>                    $self->{insertion_mode} == IN_HEAD_IM or
4619                  !!!create-element ($self->{head_element}, 'head');                    $self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4620                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  !!!cp ('t140');
4621                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  !!!parse-error (type => 'unmatched end tag',
4622                                    text => $token->{tag_name}, token => $token);
4623                  $self->{insertion_mode} = IN_HEAD_IM;                  ## Ignore the token
4624                  ## Reprocess in the "in head" insertion mode...                  !!!next-token;
4625                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                  next B;
4626                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4627                    !!!cp ('t140.1');
4628                    !!!parse-error (type => 'unmatched end tag',
4629                                    text => $token->{tag_name}, token => $token);
4630                  ## Ignore the token                  ## Ignore the token
4631                  !!!next-token;                  !!!next-token;
4632                  redo B;                  next B;
4633                  } else {
4634                    die "$0: $self->{insertion_mode}: Unknown insertion mode";
4635                }                }
4636                              } elsif ($token->{tag_name} eq 'p') {
4637                #                !!!cp ('t142');
4638              } elsif ({                !!!parse-error (type => 'unmatched end tag',
4639                        p => 1, br => 1,                                text => $token->{tag_name}, token => $token);
4640                       }->{$token->{tag_name}}) {                ## Ignore the token
4641                  !!!next-token;
4642                  next B;
4643                } elsif ($token->{tag_name} eq 'br') {
4644                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4645                  ## As if <head>                  !!!cp ('t142.2');
4646                  !!!create-element ($self->{head_element}, 'head');                  ## (before head) as if <head>, (in head) as if </head>
4647                    !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4648                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
4649                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  $self->{insertion_mode} = AFTER_HEAD_IM;
4650      
4651                    ## Reprocess in the "after head" insertion mode...
4652                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4653                    !!!cp ('t143.2');
4654                    ## As if </head>
4655                    pop @{$self->{open_elements}};
4656                    $self->{insertion_mode} = AFTER_HEAD_IM;
4657      
4658                    ## Reprocess in the "after head" insertion mode...
4659                  } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4660                    !!!cp ('t143.3');
4661                    ## ISSUE: Two parse errors for <head><noscript></br>
4662                    !!!parse-error (type => 'unmatched end tag',
4663                                    text => 'br', token => $token);
4664                    ## As if </noscript>
4665                    pop @{$self->{open_elements}};
4666                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
4667    
4668                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
4669                }                  ## As if </head>
4670                    pop @{$self->{open_elements}};
4671                    $self->{insertion_mode} = AFTER_HEAD_IM;
4672    
4673                #                  ## Reprocess in the "after head" insertion mode...
4674              } else {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
4675                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                  !!!cp ('t143.4');
4676                  #                  #
4677                } else {                } else {
4678                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  die "$0: $self->{insertion_mode}: Unknown insertion mode";
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
4679                }                }
4680    
4681                  ## ISSUE: does not agree with IE7 - it doesn't ignore </br>.
4682                  !!!parse-error (type => 'unmatched end tag',
4683                                  text => 'br', token => $token);
4684                  ## Ignore the token
4685                  !!!next-token;
4686                  next B;
4687                } else {
4688                  !!!cp ('t145');
4689                  !!!parse-error (type => 'unmatched end tag',
4690                                  text => $token->{tag_name}, token => $token);
4691                  ## Ignore the token
4692                  !!!next-token;
4693                  next B;
4694              }              }
4695    
4696              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4697                  !!!cp ('t146');
4698                ## As if </noscript>                ## As if </noscript>
4699                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4700                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/',
4701                                  text => $token->{tag_name}, token => $token);
4702                                
4703                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
4704                ## As if </head>                ## As if </head>
# Line 3540  sub _tree_construction_main ($) { Line 4706  sub _tree_construction_main ($) {
4706    
4707                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
4708              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4709                  !!!cp ('t147');
4710                ## As if </head>                ## As if </head>
4711                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4712    
4713                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
4714              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4715                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  ## ISSUE: This case cannot be reached?
4716                  !!!cp ('t148');
4717                  !!!parse-error (type => 'unmatched end tag',
4718                                  text => $token->{tag_name}, token => $token);
4719                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
4720                !!!next-token;                !!!next-token;
4721                redo B;                next B;
4722                } else {
4723                  !!!cp ('t149');
4724              }              }
4725    
4726              ## "after head" insertion mode              ## "after head" insertion mode
4727              ## As if <body>              ## As if <body>
4728              !!!insert-element ('body');              !!!insert-element ('body',, $token);
4729              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
4730              ## reprocess              ## reprocess
4731              redo B;              next B;
4732            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4733              die "$0: $token->{type}: Unknown token type";          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
4734            }            !!!cp ('t149.1');
4735    
4736              ## NOTE: As if <head>
4737              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
4738              $self->{open_elements}->[-1]->[0]->append_child
4739                  ($self->{head_element});
4740              #push @{$self->{open_elements}},
4741              #    [$self->{head_element}, $el_category->{head}];
4742              #$self->{insertion_mode} = IN_HEAD_IM;
4743              ## NOTE: Reprocess.
4744    
4745              ## NOTE: As if </head>
4746              #pop @{$self->{open_elements}};
4747              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4748              ## NOTE: Reprocess.
4749              
4750              #
4751            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
4752              !!!cp ('t149.2');
4753    
4754              ## NOTE: As if </head>
4755              pop @{$self->{open_elements}};
4756              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4757              ## NOTE: Reprocess.
4758    
4759              #
4760            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
4761              !!!cp ('t149.3');
4762    
4763              !!!parse-error (type => 'in noscript:#eof', token => $token);
4764    
4765              ## As if </noscript>
4766              pop @{$self->{open_elements}};
4767              #$self->{insertion_mode} = IN_HEAD_IM;
4768              ## NOTE: Reprocess.
4769    
4770              ## NOTE: As if </head>
4771              pop @{$self->{open_elements}};
4772              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
4773              ## NOTE: Reprocess.
4774    
4775              #
4776            } else {
4777              !!!cp ('t149.4');
4778              #
4779            }
4780    
4781            ## NOTE: As if <body>
4782            !!!insert-element ('body',, $token);
4783            $self->{insertion_mode} = IN_BODY_IM;
4784            ## NOTE: Reprocess.
4785            next B;
4786          } else {
4787            die "$0: $token->{type}: Unknown token type";
4788          }
4789    
4790            ## ISSUE: An issue in the spec.            ## ISSUE: An issue in the spec.
4791      } elsif ($self->{insertion_mode} & BODY_IMS) {      } elsif ($self->{insertion_mode} & BODY_IMS) {
4792            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
4793                !!!cp ('t150');
4794              ## NOTE: There is a code clone of "character in body".              ## NOTE: There is a code clone of "character in body".
4795              $reconstruct_active_formatting_elements->($insert_to_current);              $reconstruct_active_formatting_elements->($insert_to_current);
4796                            
4797              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4798    
4799              !!!next-token;              !!!next-token;
4800              redo B;              next B;
4801            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
4802              if ({              if ({
4803                   caption => 1, col => 1, colgroup => 1, tbody => 1,                   caption => 1, col => 1, colgroup => 1, tbody => 1,
# Line 3578  sub _tree_construction_main ($) { Line 4805  sub _tree_construction_main ($) {
4805                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
4806                if ($self->{insertion_mode} == IN_CELL_IM) {                if ($self->{insertion_mode} == IN_CELL_IM) {
4807                  ## have an element in table scope                  ## have an element in table scope
4808                  my $tn;                  for (reverse 0..$#{$self->{open_elements}}) {
                 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
4809                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4810                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] & TABLE_CELL_EL) {
4811                      $tn = $node->[1];                      !!!cp ('t151');
4812                      last INSCOPE;  
4813                    } elsif ({                      ## Close the cell
4814                              table => 1, html => 1,                      !!!back-token; # <x>
4815                             }->{$node->[1]}) {                      $token = {type => END_TAG_TOKEN,
4816                      last INSCOPE;                                tag_name => $node->[0]->manakai_local_name,
4817                    }                                line => $token->{line},
4818                  } # INSCOPE                                column => $token->{column}};
4819                    unless (defined $tn) {                      next B;
4820                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
4821                      ## Ignore the token                      !!!cp ('t152');
4822                      !!!next-token;                      ## ISSUE: This case can never be reached, maybe.
4823                      redo B;                      last;
4824                    }                    }
4825                                    }
4826                  ## Close the cell  
4827                  !!!back-token; # <?>                  !!!cp ('t153');
4828                  $token = {type => END_TAG_TOKEN, tag_name => $tn};                  !!!parse-error (type => 'start tag not allowed',
4829                  redo B;                      text => $token->{tag_name}, token => $token);
4830                    ## Ignore the token
4831                    !!!nack ('t153.1');
4832                    !!!next-token;
4833                    next B;
4834                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4835                  !!!parse-error (type => 'not closed:caption');                  !!!parse-error (type => 'not closed', text => 'caption',
4836                                    token => $token);
4837                                    
4838                  ## As if </caption>                  ## NOTE: As if </caption>.
4839                  ## have a table element in table scope                  ## have a table element in table scope
4840                  my $i;                  my $i;
4841                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4842                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4843                    if ($node->[1] eq 'caption') {                      my $node = $self->{open_elements}->[$_];
4844                      $i = $_;                      if ($node->[1] & CAPTION_EL) {
4845                      last INSCOPE;                        !!!cp ('t155');
4846                    } elsif ({                        $i = $_;
4847                              table => 1, html => 1,                        last INSCOPE;
4848                             }->{$node->[1]}) {                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4849                      last INSCOPE;                        !!!cp ('t156');
4850                          last;
4851                        }
4852                    }                    }
4853    
4854                      !!!cp ('t157');
4855                      !!!parse-error (type => 'start tag not allowed',
4856                                      text => $token->{tag_name}, token => $token);
4857                      ## Ignore the token
4858                      !!!nack ('t157.1');
4859                      !!!next-token;
4860                      next B;
4861                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!parse-error (type => 'unmatched end tag:caption');  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4862                                    
4863                  ## generate implied end tags                  ## generate implied end tags
4864                  if ({                  while ($self->{open_elements}->[-1]->[1]
4865                       dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
4866                       td => 1, th => 1, tr => 1,                    !!!cp ('t158');
4867                       tbody => 1, tfoot=> 1, thead => 1,                    pop @{$self->{open_elements}};
                     }->{$self->{open_elements}->[-1]->[1]}) {  
                   !!!back-token; # <?>  
                   $token = {type => END_TAG_TOKEN, tag_name => 'caption'};  
                   !!!back-token;  
                   $token = {type => END_TAG_TOKEN,  
                             tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                   redo B;  
4868                  }                  }
4869    
4870                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
4871                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t159');
4872                      !!!parse-error (type => 'not closed',
4873                                      text => $self->{open_elements}->[-1]->[0]
4874                                          ->manakai_local_name,
4875                                      token => $token);
4876                    } else {
4877                      !!!cp ('t160');
4878                  }                  }
4879                                    
4880                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3650  sub _tree_construction_main ($) { Line 4884  sub _tree_construction_main ($) {
4884                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4885                                    
4886                  ## reprocess                  ## reprocess
4887                  redo B;                  !!!ack-later;
4888                    next B;
4889                } else {                } else {
4890                    !!!cp ('t161');
4891                  #                  #
4892                }                }
4893              } else {              } else {
4894                  !!!cp ('t162');
4895                #                #
4896              }              }
4897            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
# Line 3664  sub _tree_construction_main ($) { Line 4901  sub _tree_construction_main ($) {
4901                  my $i;                  my $i;
4902                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4903                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4904                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
4905                        !!!cp ('t163');
4906                      $i = $_;                      $i = $_;
4907                      last INSCOPE;                      last INSCOPE;
4908                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
4909                              table => 1, html => 1,                      !!!cp ('t164');
                            }->{$node->[1]}) {  
4910                      last INSCOPE;                      last INSCOPE;
4911                    }                    }
4912                  } # INSCOPE                  } # INSCOPE
4913                    unless (defined $i) {                    unless (defined $i) {
4914                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!cp ('t165');
4915                        !!!parse-error (type => 'unmatched end tag',
4916                                        text => $token->{tag_name},
4917                                        token => $token);
4918                      ## Ignore the token                      ## Ignore the token
4919                      !!!next-token;                      !!!next-token;
4920                      redo B;                      next B;
4921                    }                    }
4922                                    
4923                  ## generate implied end tags                  ## generate implied end tags
4924                  if ({                  while ($self->{open_elements}->[-1]->[1]
4925                       dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
4926                       td => ($token->{tag_name} eq 'th'),                    !!!cp ('t166');
4927                       th => ($token->{tag_name} eq 'td'),                    pop @{$self->{open_elements}};
                      tr => 1,  
                      tbody => 1, tfoot=> 1, thead => 1,  
                     }->{$self->{open_elements}->[-1]->[1]}) {  
                   !!!back-token;  
                   $token = {type => END_TAG_TOKEN,  
                             tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                   redo B;  
4928                  }                  }
4929                    
4930                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[0]->manakai_local_name
4931                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                          ne $token->{tag_name}) {
4932                      !!!cp ('t167');
4933                      !!!parse-error (type => 'not closed',
4934                                      text => $self->{open_elements}->[-1]->[0]
4935                                          ->manakai_local_name,
4936                                      token => $token);
4937                    } else {
4938                      !!!cp ('t168');
4939                  }                  }
4940                                    
4941                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3705  sub _tree_construction_main ($) { Line 4945  sub _tree_construction_main ($) {
4945                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
4946                                    
4947                  !!!next-token;                  !!!next-token;
4948                  redo B;                  next B;
4949                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4950                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t169');
4951                    !!!parse-error (type => 'unmatched end tag',
4952                                    text => $token->{tag_name}, token => $token);
4953                  ## Ignore the token                  ## Ignore the token
4954                  !!!next-token;                  !!!next-token;
4955                  redo B;                  next B;
4956                } else {                } else {
4957                    !!!cp ('t170');
4958                  #                  #
4959                }                }
4960              } elsif ($token->{tag_name} eq 'caption') {              } elsif ($token->{tag_name} eq 'caption') {
4961                if ($self->{insertion_mode} == IN_CAPTION_IM) {                if ($self->{insertion_mode} == IN_CAPTION_IM) {
4962                  ## have a table element in table scope                  ## have a table element in table scope
4963                  my $i;                  my $i;
4964                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4965                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4966                    if ($node->[1] eq $token->{tag_name}) {                      my $node = $self->{open_elements}->[$_];
4967                      $i = $_;                      if ($node->[1] & CAPTION_EL) {
4968                      last INSCOPE;                        !!!cp ('t171');
4969                    } elsif ({                        $i = $_;
4970                              table => 1, html => 1,                        last INSCOPE;
4971                             }->{$node->[1]}) {                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
4972                      last INSCOPE;                        !!!cp ('t172');
4973                          last;
4974                        }
4975                    }                    }
4976    
4977                      !!!cp ('t173');
4978                      !!!parse-error (type => 'unmatched end tag',
4979                                      text => $token->{tag_name}, token => $token);
4980                      ## Ignore the token
4981                      !!!next-token;
4982                      next B;
4983                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4984                                    
4985                  ## generate implied end tags                  ## generate implied end tags
4986                  if ({                  while ($self->{open_elements}->[-1]->[1]
4987                       dd => 1, dt => 1, li => 1, p => 1,                             & END_TAG_OPTIONAL_EL) {
4988                       td => 1, th => 1, tr => 1,                    !!!cp ('t174');
4989                       tbody => 1, tfoot=> 1, thead => 1,                    pop @{$self->{open_elements}};
                     }->{$self->{open_elements}->[-1]->[1]}) {  
                   !!!back-token;  
                   $token = {type => END_TAG_TOKEN,  
                             tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                   redo B;  
4990                  }                  }
4991                                    
4992                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
4993                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t175');
4994                      !!!parse-error (type => 'not closed',
4995                                      text => $self->{open_elements}->[-1]->[0]
4996                                          ->manakai_local_name,
4997                                      token => $token);
4998                    } else {
4999                      !!!cp ('t176');
5000                  }                  }
5001                                    
5002                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3759  sub _tree_construction_main ($) { Line 5006  sub _tree_construction_main ($) {
5006                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5007                                    
5008                  !!!next-token;                  !!!next-token;
5009                  redo B;                  next B;
5010                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
5011                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t177');
5012                    !!!parse-error (type => 'unmatched end tag',
5013                                    text => $token->{tag_name}, token => $token);
5014                  ## Ignore the token                  ## Ignore the token
5015                  !!!next-token;                  !!!next-token;
5016                  redo B;                  next B;
5017                } else {                } else {
5018                    !!!cp ('t178');
5019                  #                  #
5020                }                }
5021              } elsif ({              } elsif ({
# Line 3776  sub _tree_construction_main ($) { Line 5026  sub _tree_construction_main ($) {
5026                ## have an element in table scope                ## have an element in table scope
5027                my $i;                my $i;
5028                my $tn;                my $tn;
5029                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: {
5030                  my $node = $self->{open_elements}->[$_];                  for (reverse 0..$#{$self->{open_elements}}) {
5031                  if ($node->[1] eq $token->{tag_name}) {                    my $node = $self->{open_elements}->[$_];
5032                    $i = $_;                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5033                    last INSCOPE;                      !!!cp ('t179');
5034                  } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {                      $i = $_;
5035                    $tn = $node->[1];  
5036                    ## NOTE: There is exactly one |td| or |th| element                      ## Close the cell
5037                    ## in scope in the stack of open elements by definition.                      !!!back-token; # </x>
5038                  } elsif ({                      $token = {type => END_TAG_TOKEN, tag_name => $tn,
5039                            table => 1, html => 1,                                line => $token->{line},
5040                           }->{$node->[1]}) {                                column => $token->{column}};
5041                    last INSCOPE;                      next B;
5042                      } elsif ($node->[1] & TABLE_CELL_EL) {
5043                        !!!cp ('t180');
5044                        $tn = $node->[0]->manakai_local_name;
5045                        ## NOTE: There is exactly one |td| or |th| element
5046                        ## in scope in the stack of open elements by definition.
5047                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
5048                        ## ISSUE: Can this be reached?
5049                        !!!cp ('t181');
5050                        last;
5051                      }
5052                  }                  }
5053                } # INSCOPE  
5054                unless (defined $i) {                  !!!cp ('t182');
5055                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag',
5056                        text => $token->{tag_name}, token => $token);
5057                  ## Ignore the token                  ## Ignore the token
5058                  !!!next-token;                  !!!next-token;
5059                  redo B;                  next B;
5060                }                } # INSCOPE
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => END_TAG_TOKEN, tag_name => $tn};  
               redo B;  
5061              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
5062                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5063                !!!parse-error (type => 'not closed:caption');                !!!parse-error (type => 'not closed', text => 'caption',
5064                                  token => $token);
5065    
5066                ## As if </caption>                ## As if </caption>
5067                ## have a table element in table scope                ## have a table element in table scope
5068                my $i;                my $i;
5069                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5070                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5071                  if ($node->[1] eq 'caption') {                  if ($node->[1] & CAPTION_EL) {
5072                      !!!cp ('t184');
5073                    $i = $_;                    $i = $_;
5074                    last INSCOPE;                    last INSCOPE;
5075                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
5076                            table => 1, html => 1,                    !!!cp ('t185');
                          }->{$node->[1]}) {  
5077                    last INSCOPE;                    last INSCOPE;
5078                  }                  }
5079                } # INSCOPE                } # INSCOPE
5080                unless (defined $i) {                unless (defined $i) {
5081                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!cp ('t186');
5082                    !!!parse-error (type => 'unmatched end tag',
5083                                    text => 'caption', token => $token);
5084                  ## Ignore the token                  ## Ignore the token
5085                  !!!next-token;                  !!!next-token;
5086                  redo B;                  next B;
5087                }                }
5088                                
5089                ## generate implied end tags                ## generate implied end tags
5090                if ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5091                     dd => 1, dt => 1, li => 1, p => 1,                  !!!cp ('t187');
5092                     td => 1, th => 1, tr => 1,                  pop @{$self->{open_elements}};
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # </table>  
                 $token = {type => END_TAG_TOKEN, tag_name => 'caption'};  
                 !!!back-token;  
                 $token = {type => END_TAG_TOKEN,  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
5093                }                }
5094    
5095                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                unless ($self->{open_elements}->[-1]->[1] & CAPTION_EL) {
5096                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t188');
5097                    !!!parse-error (type => 'not closed',
5098                                    text => $self->{open_elements}->[-1]->[0]
5099                                        ->manakai_local_name,
5100                                    token => $token);
5101                  } else {
5102                    !!!cp ('t189');
5103                }                }
5104    
5105                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 3852  sub _tree_construction_main ($) { Line 5109  sub _tree_construction_main ($) {
5109                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5110    
5111                ## reprocess                ## reprocess
5112                redo B;                next B;
5113              } elsif ({              } elsif ({
5114                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
5115                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5116                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
5117                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t190');
5118                    !!!parse-error (type => 'unmatched end tag',
5119                                    text => $token->{tag_name}, token => $token);
5120                  ## Ignore the token                  ## Ignore the token
5121                  !!!next-token;                  !!!next-token;
5122                  redo B;                  next B;
5123                } else {                } else {
5124                    !!!cp ('t191');
5125                  #                  #
5126                }                }
5127              } elsif ({              } elsif ({
# Line 3869  sub _tree_construction_main ($) { Line 5129  sub _tree_construction_main ($) {
5129                        thead => 1, tr => 1,                        thead => 1, tr => 1,
5130                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
5131                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
5132                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t192');
5133                  !!!parse-error (type => 'unmatched end tag',
5134                                  text => $token->{tag_name}, token => $token);
5135                ## Ignore the token                ## Ignore the token
5136                !!!next-token;                !!!next-token;
5137                redo B;                next B;
5138              } else {              } else {
5139                  !!!cp ('t193');
5140                #                #
5141              }              }
5142          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5143            for my $entry (@{$self->{open_elements}}) {
5144              unless ($entry->[1] & ALL_END_TAG_OPTIONAL_EL) {
5145                !!!cp ('t75');
5146                !!!parse-error (type => 'in body:#eof', token => $token);
5147                last;
5148              }
5149            }
5150    
5151            ## Stop parsing.
5152            last B;
5153        } else {        } else {
5154          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5155        }        }
# Line 3884  sub _tree_construction_main ($) { Line 5158  sub _tree_construction_main ($) {
5158        #        #
5159      } elsif ($self->{insertion_mode} & TABLE_IMS) {      } elsif ($self->{insertion_mode} & TABLE_IMS) {
5160        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
5161              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if (not $open_tables->[-1]->[1] and # tainted
5162                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              $token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5163              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5164                                
5165                unless (length $token->{data}) {            unless (length $token->{data}) {
5166                  !!!next-token;              !!!cp ('t194');
5167                  redo B;              !!!next-token;
5168                }              next B;
5169              }            } else {
5170                !!!cp ('t195');
5171              }
5172            }
5173    
5174              !!!parse-error (type => 'in table:#character');          !!!parse-error (type => 'in table:#text', token => $token);
5175    
5176              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
5177              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
# Line 3901  sub _tree_construction_main ($) { Line 5179  sub _tree_construction_main ($) {
5179              ## result in a new Text node.              ## result in a new Text node.
5180              $reconstruct_active_formatting_elements->($insert_to_foster);              $reconstruct_active_formatting_elements->($insert_to_foster);
5181                            
5182              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]}) {  
5183                # MUST                # MUST
5184                my $foster_parent_element;                my $foster_parent_element;
5185                my $next_sibling;                my $next_sibling;
5186                my $prev_sibling;                my $prev_sibling;
5187                OE: for (reverse 0..$#{$self->{open_elements}}) {                OE: for (reverse 0..$#{$self->{open_elements}}) {
5188                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] & TABLE_EL) {
5189                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
5190                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
5191                        !!!cp ('t196');
5192                      $foster_parent_element = $parent;                      $foster_parent_element = $parent;
5193                      $next_sibling = $self->{open_elements}->[$_]->[0];                      $next_sibling = $self->{open_elements}->[$_]->[0];
5194                      $prev_sibling = $next_sibling->previous_sibling;                      $prev_sibling = $next_sibling->previous_sibling;
5195                    } else {                    } else {
5196                        !!!cp ('t197');
5197                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
5198                      $prev_sibling = $foster_parent_element->last_child;                      $prev_sibling = $foster_parent_element->last_child;
5199                    }                    }
# Line 3928  sub _tree_construction_main ($) { Line 5205  sub _tree_construction_main ($) {
5205                  unless defined $foster_parent_element;                  unless defined $foster_parent_element;
5206                if (defined $prev_sibling and                if (defined $prev_sibling and
5207                    $prev_sibling->node_type == 3) {                    $prev_sibling->node_type == 3) {
5208                    !!!cp ('t198');
5209                  $prev_sibling->manakai_append_text ($token->{data});                  $prev_sibling->manakai_append_text ($token->{data});
5210                } else {                } else {
5211                    !!!cp ('t199');
5212                  $foster_parent_element->insert_before                  $foster_parent_element->insert_before
5213                    ($self->{document}->create_text_node ($token->{data}),                    ($self->{document}->create_text_node ($token->{data}),
5214                     $next_sibling);                     $next_sibling);
5215                }                }
5216              } else {            $open_tables->[-1]->[1] = 1; # tainted
5217                $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          } else {
5218              }            !!!cp ('t200');
5219              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5220            }
5221                            
5222              !!!next-token;          !!!next-token;
5223              redo B;          next B;
5224        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5225              if ({          if ({
5226                   tr => ($self->{insertion_mode} != IN_ROW_IM),               tr => ($self->{insertion_mode} != IN_ROW_IM),
5227                   th => 1, td => 1,               th => 1, td => 1,
5228                  }->{$token->{tag_name}}) {              }->{$token->{tag_name}}) {
5229                if ($self->{insertion_mode} == IN_TABLE_IM) {            if ($self->{insertion_mode} == IN_TABLE_IM) {
5230                  ## Clear back to table context              ## Clear back to table context
5231                  while ($self->{open_elements}->[-1]->[1] ne 'table' and              while (not ($self->{open_elements}->[-1]->[1]
5232                         $self->{open_elements}->[-1]->[1] ne 'html') {                              & TABLE_SCOPING_EL)) {
5233                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!cp ('t201');
5234                    pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5235                  }              }
5236                                
5237                  !!!insert-element ('tbody');              !!!insert-element ('tbody',, $token);
5238                  $self->{insertion_mode} = IN_TABLE_BODY_IM;              $self->{insertion_mode} = IN_TABLE_BODY_IM;
5239                  ## reprocess in the "in table body" insertion mode...              ## reprocess in the "in table body" insertion mode...
5240                }            }
5241              
5242                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {            if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
5243                  unless ($token->{tag_name} eq 'tr') {              unless ($token->{tag_name} eq 'tr') {
5244                    !!!parse-error (type => 'missing start tag:tr');                !!!cp ('t202');
5245                  }                !!!parse-error (type => 'missing start tag:tr', token => $token);
5246                }
5247                                    
5248                  ## Clear back to table body context              ## Clear back to table body context
5249                  while (not {              while (not ($self->{open_elements}->[-1]->[1]
5250                    tbody => 1, tfoot => 1, thead => 1, html => 1,                              & TABLE_ROWS_SCOPING_EL)) {
5251                  }->{$self->{open_elements}->[-1]->[1]}) {                !!!cp ('t203');
5252                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                ## ISSUE: Can this case be reached?
5253                    pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5254                  }              }
5255                                    
5256                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
5257                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5258                    !!!insert-element ($token->{tag_name}, $token->{attributes});                    !!!cp ('t204');
5259                      !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5260                      !!!nack ('t204');
5261                    !!!next-token;                    !!!next-token;
5262                    redo B;                    next B;
5263                  } else {                  } else {
5264                    !!!insert-element ('tr');                    !!!cp ('t205');
5265                      !!!insert-element ('tr',, $token);
5266                    ## reprocess in the "in row" insertion mode                    ## reprocess in the "in row" insertion mode
5267                  }                  }
5268                  } else {
5269                    !!!cp ('t206');
5270                }                }
5271    
5272                ## Clear back to table row context                ## Clear back to table row context
5273                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5274                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
5275                }->{$self->{open_elements}->[-1]->[1]}) {                  !!!cp ('t207');
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
5276                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5277                }                }
5278                                
5279                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5280                $self->{insertion_mode} = IN_CELL_IM;                $self->{insertion_mode} = IN_CELL_IM;
5281    
5282                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
5283                                
5284                  !!!nack ('t207.1');
5285                !!!next-token;                !!!next-token;
5286                redo B;                next B;
5287              } elsif ({              } elsif ({
5288                        caption => 1, col => 1, colgroup => 1,                        caption => 1, col => 1, colgroup => 1,
5289                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
# Line 4008  sub _tree_construction_main ($) { Line 5295  sub _tree_construction_main ($) {
5295                  my $i;                  my $i;
5296                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5297                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5298                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5299                        !!!cp ('t208');
5300                      $i = $_;                      $i = $_;
5301                      last INSCOPE;                      last INSCOPE;
5302                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
5303                              table => 1, html => 1,                      !!!cp ('t209');
                            }->{$node->[1]}) {  
5304                      last INSCOPE;                      last INSCOPE;
5305                    }                    }
5306                  } # INSCOPE                  } # INSCOPE
5307                  unless (defined $i) {                  unless (defined $i) {
5308                    !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});                    !!!cp ('t210');
5309    ## TODO: This type is wrong.
5310                      !!!parse-error (type => 'unmacthed end tag',
5311                                      text => $token->{tag_name}, token => $token);
5312                    ## Ignore the token                    ## Ignore the token
5313                      !!!nack ('t210.1');
5314                    !!!next-token;                    !!!next-token;
5315                    redo B;                    next B;
5316                  }                  }
5317                                    
5318                  ## Clear back to table row context                  ## Clear back to table row context
5319                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5320                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
5321                  }->{$self->{open_elements}->[-1]->[1]}) {                    !!!cp ('t211');
5322                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    ## ISSUE: Can this case be reached?
5323                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5324                  }                  }
5325                                    
5326                  pop @{$self->{open_elements}}; # tr                  pop @{$self->{open_elements}}; # tr
5327                  $self->{insertion_mode} = IN_TABLE_BODY_IM;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
5328                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
5329                      !!!cp ('t212');
5330                    ## reprocess                    ## reprocess
5331                    redo B;                    !!!ack-later;
5332                      next B;
5333                  } else {                  } else {
5334                      !!!cp ('t213');
5335                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
5336                  }                  }
5337                }                }
# Line 4047  sub _tree_construction_main ($) { Line 5341  sub _tree_construction_main ($) {
5341                  my $i;                  my $i;
5342                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5343                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5344                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
5345                         tbody => 1, thead => 1, tfoot => 1,                      !!!cp ('t214');
                       }->{$node->[1]}) {  
5346                      $i = $_;                      $i = $_;
5347                      last INSCOPE;                      last INSCOPE;
5348                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
5349                              table => 1, html => 1,                      !!!cp ('t215');
                            }->{$node->[1]}) {  
5350                      last INSCOPE;                      last INSCOPE;
5351                    }                    }
5352                  } # INSCOPE                  } # INSCOPE
5353                  unless (defined $i) {                  unless (defined $i) {
5354                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!cp ('t216');
5355    ## TODO: This erorr type is wrong.
5356                      !!!parse-error (type => 'unmatched end tag',
5357                                      text => $token->{tag_name}, token => $token);
5358                    ## Ignore the token                    ## Ignore the token
5359                      !!!nack ('t216.1');
5360                    !!!next-token;                    !!!next-token;
5361                    redo B;                    next B;
5362                  }                  }
5363    
5364                  ## Clear back to table body context                  ## Clear back to table body context
5365                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5366                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
5367                  }->{$self->{open_elements}->[-1]->[1]}) {                    !!!cp ('t217');
5368                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    ## ISSUE: Can this state be reached?
5369                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5370                  }                  }
5371                                    
# Line 4083  sub _tree_construction_main ($) { Line 5379  sub _tree_construction_main ($) {
5379                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5380                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5381                  ## reprocess in "in table" insertion mode...                  ## reprocess in "in table" insertion mode...
5382                  } else {
5383                    !!!cp ('t218');
5384                }                }
5385    
5386                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
5387                  ## Clear back to table context                  ## Clear back to table context
5388                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5389                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5390                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t219');
5391                      ## ISSUE: Can this state be reached?
5392                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5393                  }                  }
5394                                    
5395                  !!!insert-element ('colgroup');                  !!!insert-element ('colgroup',, $token);
5396                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
5397                  ## reprocess                  ## reprocess
5398                  redo B;                  !!!ack-later;
5399                    next B;
5400                } elsif ({                } elsif ({
5401                          caption => 1,                          caption => 1,
5402                          colgroup => 1,                          colgroup => 1,
5403                          tbody => 1, tfoot => 1, thead => 1,                          tbody => 1, tfoot => 1, thead => 1,
5404                         }->{$token->{tag_name}}) {                         }->{$token->{tag_name}}) {
5405                  ## Clear back to table context                  ## Clear back to table context
5406                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while (not ($self->{open_elements}->[-1]->[1]
5407                         $self->{open_elements}->[-1]->[1] ne 'html') {                                  & TABLE_SCOPING_EL)) {
5408                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t220');
5409                      ## ISSUE: Can this state be reached?
5410                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5411                  }                  }
5412                                    
5413                  push @$active_formatting_elements, ['#marker', '']                  push @$active_formatting_elements, ['#marker', '']
5414                      if $token->{tag_name} eq 'caption';                      if $token->{tag_name} eq 'caption';
5415                                    
5416                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5417                  $self->{insertion_mode} = {                  $self->{insertion_mode} = {
5418                                             caption => IN_CAPTION_IM,                                             caption => IN_CAPTION_IM,
5419                                             colgroup => IN_COLUMN_GROUP_IM,                                             colgroup => IN_COLUMN_GROUP_IM,
# Line 4121  sub _tree_construction_main ($) { Line 5422  sub _tree_construction_main ($) {
5422                                             thead => IN_TABLE_BODY_IM,                                             thead => IN_TABLE_BODY_IM,
5423                                            }->{$token->{tag_name}};                                            }->{$token->{tag_name}};
5424                  !!!next-token;                  !!!next-token;
5425                  redo B;                  !!!nack ('t220.1');
5426                    next B;
5427                } else {                } else {
5428                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
5429                }                }
5430              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5431                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
5432                                  text => $self->{open_elements}->[-1]->[0]
5433                                      ->manakai_local_name,
5434                                  token => $token);
5435    
5436                ## As if </table>                ## As if </table>
5437                ## have a table element in table scope                ## have a table element in table scope
5438                my $i;                my $i;
5439                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5440                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5441                  if ($node->[1] eq 'table') {                  if ($node->[1] & TABLE_EL) {
5442                      !!!cp ('t221');
5443                    $i = $_;                    $i = $_;
5444                    last INSCOPE;                    last INSCOPE;
5445                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
5446                            table => 1, html => 1,                    !!!cp ('t222');
                          }->{$node->[1]}) {  
5447                    last INSCOPE;                    last INSCOPE;
5448                  }                  }
5449                } # INSCOPE                } # INSCOPE
5450                unless (defined $i) {                unless (defined $i) {
5451                  !!!parse-error (type => 'unmatched end tag:table');                  !!!cp ('t223');
5452    ## TODO: The following is wrong, maybe.
5453                    !!!parse-error (type => 'unmatched end tag', text => 'table',
5454                                    token => $token);
5455                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
5456                    !!!nack ('t223.1');
5457                  !!!next-token;                  !!!next-token;
5458                  redo B;                  next B;
5459                }                }
5460                                
5461    ## TODO: Followings are removed from the latest spec.
5462                ## generate implied end tags                ## generate implied end tags
5463                if ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5464                     dd => 1, dt => 1, li => 1, p => 1,                  !!!cp ('t224');
5465                     td => 1, th => 1, tr => 1,                  pop @{$self->{open_elements}};
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => END_TAG_TOKEN, tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => END_TAG_TOKEN,  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
5466                }                }
5467    
5468                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] & TABLE_EL) {
5469                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t225');
5470                    ## NOTE: |<table><tr><table>|
5471                    !!!parse-error (type => 'not closed',
5472                                    text => $self->{open_elements}->[-1]->[0]
5473                                        ->manakai_local_name,
5474                                    token => $token);
5475                  } else {
5476                    !!!cp ('t226');
5477                }                }
5478    
5479                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5480                  pop @{$open_tables};
5481    
5482                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5483    
5484                ## reprocess            ## reprocess
5485                redo B;            !!!ack-later;
5486          } else {            next B;
5487            !!!parse-error (type => 'in table:'.$token->{tag_name});          } elsif ($token->{tag_name} eq 'style') {
5488              if (not $open_tables->[-1]->[1]) { # tainted
5489                !!!cp ('t227.8');
5490                ## NOTE: This is a "as if in head" code clone.
5491                $parse_rcdata->(CDATA_CONTENT_MODEL);
5492                next B;
5493              } else {
5494                !!!cp ('t227.7');
5495                #
5496              }
5497            } elsif ($token->{tag_name} eq 'script') {
5498              if (not $open_tables->[-1]->[1]) { # tainted
5499                !!!cp ('t227.6');
5500                ## NOTE: This is a "as if in head" code clone.
5501                $script_start_tag->();
5502                next B;
5503              } else {
5504                !!!cp ('t227.5');
5505                #
5506              }
5507            } elsif ($token->{tag_name} eq 'input') {
5508              if (not $open_tables->[-1]->[1]) { # tainted
5509                if ($token->{attributes}->{type}) { ## TODO: case
5510                  my $type = lc $token->{attributes}->{type}->{value};
5511                  if ($type eq 'hidden') {
5512                    !!!cp ('t227.3');
5513                    !!!parse-error (type => 'in table',
5514                                    text => $token->{tag_name}, token => $token);
5515    
5516            $insert = $insert_to_foster;                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5517    
5518                    ## TODO: form element pointer
5519    
5520                    pop @{$self->{open_elements}};
5521    
5522                    !!!next-token;
5523                    !!!ack ('t227.2.1');
5524                    next B;
5525                  } else {
5526                    !!!cp ('t227.2');
5527                    #
5528                  }
5529                } else {
5530                  !!!cp ('t227.1');
5531                  #
5532                }
5533              } else {
5534                !!!cp ('t227.4');
5535                #
5536              }
5537            } else {
5538              !!!cp ('t227');
5539            #            #
5540          }          }
5541    
5542            !!!parse-error (type => 'in table', text => $token->{tag_name},
5543                            token => $token);
5544    
5545            $insert = $insert_to_foster;
5546            #
5547        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5548              if ($token->{tag_name} eq 'tr' and              if ($token->{tag_name} eq 'tr' and
5549                  $self->{insertion_mode} == IN_ROW_IM) {                  $self->{insertion_mode} == IN_ROW_IM) {
# Line 4186  sub _tree_construction_main ($) { Line 5551  sub _tree_construction_main ($) {
5551                my $i;                my $i;
5552                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5553                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5554                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_ROW_EL) {
5555                      !!!cp ('t228');
5556                    $i = $_;                    $i = $_;
5557                    last INSCOPE;                    last INSCOPE;
5558                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
5559                            table => 1, html => 1,                    !!!cp ('t229');
                          }->{$node->[1]}) {  
5560                    last INSCOPE;                    last INSCOPE;
5561                  }                  }
5562                } # INSCOPE                } # INSCOPE
5563                unless (defined $i) {                unless (defined $i) {
5564                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t230');
5565                    !!!parse-error (type => 'unmatched end tag',
5566                                    text => $token->{tag_name}, token => $token);
5567                  ## Ignore the token                  ## Ignore the token
5568                    !!!nack ('t230.1');
5569                  !!!next-token;                  !!!next-token;
5570                  redo B;                  next B;
5571                  } else {
5572                    !!!cp ('t232');
5573                }                }
5574    
5575                ## Clear back to table row context                ## Clear back to table row context
5576                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5577                  tr => 1, html => 1,                                & TABLE_ROW_SCOPING_EL)) {
5578                }->{$self->{open_elements}->[-1]->[1]}) {                  !!!cp ('t231');
5579                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  ## ISSUE: Can this state be reached?
5580                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5581                }                }
5582    
5583                pop @{$self->{open_elements}}; # tr                pop @{$self->{open_elements}}; # tr
5584                $self->{insertion_mode} = IN_TABLE_BODY_IM;                $self->{insertion_mode} = IN_TABLE_BODY_IM;
5585                !!!next-token;                !!!next-token;
5586                redo B;                !!!nack ('t231.1');
5587                  next B;
5588              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
5589                if ($self->{insertion_mode} == IN_ROW_IM) {                if ($self->{insertion_mode} == IN_ROW_IM) {
5590                  ## As if </tr>                  ## As if </tr>
# Line 4221  sub _tree_construction_main ($) { Line 5592  sub _tree_construction_main ($) {
5592                  my $i;                  my $i;
5593                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5594                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5595                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5596                        !!!cp ('t233');
5597                      $i = $_;                      $i = $_;
5598                      last INSCOPE;                      last INSCOPE;
5599                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
5600                              table => 1, html => 1,                      !!!cp ('t234');
                            }->{$node->[1]}) {  
5601                      last INSCOPE;                      last INSCOPE;
5602                    }                    }
5603                  } # INSCOPE                  } # INSCOPE
5604                  unless (defined $i) {                  unless (defined $i) {
5605                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});                    !!!cp ('t235');
5606    ## TODO: The following is wrong.
5607                      !!!parse-error (type => 'unmatched end tag',
5608                                      text => $token->{type}, token => $token);
5609                    ## Ignore the token                    ## Ignore the token
5610                      !!!nack ('t236.1');
5611                    !!!next-token;                    !!!next-token;
5612                    redo B;                    next B;
5613                  }                  }
5614                                    
5615                  ## Clear back to table row context                  ## Clear back to table row context
5616                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5617                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
5618                  }->{$self->{open_elements}->[-1]->[1]}) {                    !!!cp ('t236');
5619                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  ## ISSUE: Can this state be reached?
5620                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5621                  }                  }
5622                                    
# Line 4255  sub _tree_construction_main ($) { Line 5630  sub _tree_construction_main ($) {
5630                  my $i;                  my $i;
5631                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5632                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5633                    if ({                    if ($node->[1] & TABLE_ROW_GROUP_EL) {
5634                         tbody => 1, thead => 1, tfoot => 1,                      !!!cp ('t237');
                       }->{$node->[1]}) {  
5635                      $i = $_;                      $i = $_;
5636                      last INSCOPE;                      last INSCOPE;
5637                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
5638                              table => 1, html => 1,                      !!!cp ('t238');
                            }->{$node->[1]}) {  
5639                      last INSCOPE;                      last INSCOPE;
5640                    }                    }
5641                  } # INSCOPE                  } # INSCOPE
5642                  unless (defined $i) {                  unless (defined $i) {
5643                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!cp ('t239');
5644                      !!!parse-error (type => 'unmatched end tag',
5645                                      text => $token->{tag_name}, token => $token);
5646                    ## Ignore the token                    ## Ignore the token
5647                      !!!nack ('t239.1');
5648                    !!!next-token;                    !!!next-token;
5649                    redo B;                    next B;
5650                  }                  }
5651                                    
5652                  ## Clear back to table body context                  ## Clear back to table body context
5653                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5654                    tbody => 1, tfoot => 1, thead => 1, html => 1,                                  & TABLE_ROWS_SCOPING_EL)) {
5655                  }->{$self->{open_elements}->[-1]->[1]}) {                    !!!cp ('t240');
                   !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
5656                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5657                  }                  }
5658                                    
# Line 4293  sub _tree_construction_main ($) { Line 5668  sub _tree_construction_main ($) {
5668                  ## reprocess in the "in table" insertion mode...                  ## reprocess in the "in table" insertion mode...
5669                }                }
5670    
5671                  ## NOTE: </table> in the "in table" insertion mode.
5672                  ## When you edit the code fragment below, please ensure that
5673                  ## the code for <table> in the "in table" insertion mode
5674                  ## is synced with it.
5675    
5676                ## have a table element in table scope                ## have a table element in table scope
5677                my $i;                my $i;
5678                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5679                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5680                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] & TABLE_EL) {
5681                      !!!cp ('t241');
5682                    $i = $_;                    $i = $_;
5683                    last INSCOPE;                    last INSCOPE;
5684                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
5685                            table => 1, html => 1,                    !!!cp ('t242');
                          }->{$node->[1]}) {  
5686                    last INSCOPE;                    last INSCOPE;
5687                  }                  }
5688                } # INSCOPE                } # INSCOPE
5689                unless (defined $i) {                unless (defined $i) {
5690                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t243');
5691                    !!!parse-error (type => 'unmatched end tag',
5692                                    text => $token->{tag_name}, token => $token);
5693                  ## Ignore the token                  ## Ignore the token
5694                    !!!nack ('t243.1');
5695                  !!!next-token;                  !!!next-token;
5696                  redo B;                  next B;
               }  
   
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                    tbody => 1, tfoot=> 1, thead => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => END_TAG_TOKEN,  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
                 
               if ($self->{open_elements}->[-1]->[1] ne 'table') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
5697                }                }
5698                                    
5699                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5700                  pop @{$open_tables};
5701                                
5702                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5703                                
5704                !!!next-token;                !!!next-token;
5705                redo B;                next B;
5706              } elsif ({              } elsif ({
5707                        tbody => 1, tfoot => 1, thead => 1,                        tbody => 1, tfoot => 1, thead => 1,
5708                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
# Line 4344  sub _tree_construction_main ($) { Line 5712  sub _tree_construction_main ($) {
5712                  my $i;                  my $i;
5713                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5714                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5715                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5716                        !!!cp ('t247');
5717                      $i = $_;                      $i = $_;
5718                      last INSCOPE;                      last INSCOPE;
5719                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
5720                              table => 1, html => 1,                      !!!cp ('t248');
                            }->{$node->[1]}) {  
5721                      last INSCOPE;                      last INSCOPE;
5722                    }                    }
5723                  } # INSCOPE                  } # INSCOPE
5724                    unless (defined $i) {                    unless (defined $i) {
5725                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!cp ('t249');
5726                        !!!parse-error (type => 'unmatched end tag',
5727                                        text => $token->{tag_name}, token => $token);
5728                      ## Ignore the token                      ## Ignore the token
5729                        !!!nack ('t249.1');
5730                      !!!next-token;                      !!!next-token;
5731                      redo B;                      next B;
5732                    }                    }
5733                                    
5734                  ## As if </tr>                  ## As if </tr>
# Line 4365  sub _tree_construction_main ($) { Line 5736  sub _tree_construction_main ($) {
5736                  my $i;                  my $i;
5737                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5738                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
5739                    if ($node->[1] eq 'tr') {                    if ($node->[1] & TABLE_ROW_EL) {
5740                        !!!cp ('t250');
5741                      $i = $_;                      $i = $_;
5742                      last INSCOPE;                      last INSCOPE;
5743                    } elsif ({                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
5744                              table => 1, html => 1,                      !!!cp ('t251');
                            }->{$node->[1]}) {  
5745                      last INSCOPE;                      last INSCOPE;
5746                    }                    }
5747                  } # INSCOPE                  } # INSCOPE
5748                    unless (defined $i) {                    unless (defined $i) {
5749                      !!!parse-error (type => 'unmatched end tag:tr');                      !!!cp ('t252');
5750                        !!!parse-error (type => 'unmatched end tag',
5751                                        text => 'tr', token => $token);
5752                      ## Ignore the token                      ## Ignore the token
5753                        !!!nack ('t252.1');
5754                      !!!next-token;                      !!!next-token;
5755                      redo B;                      next B;
5756                    }                    }
5757                                    
5758                  ## Clear back to table row context                  ## Clear back to table row context
5759                  while (not {                  while (not ($self->{open_elements}->[-1]->[1]
5760                    tr => 1, html => 1,                                  & TABLE_ROW_SCOPING_EL)) {
5761                  }->{$self->{open_elements}->[-1]->[1]}) {                    !!!cp ('t253');
5762                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  ## ISSUE: Can this case be reached?
5763                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
5764                  }                  }
5765                                    
# Line 4398  sub _tree_construction_main ($) { Line 5772  sub _tree_construction_main ($) {
5772                my $i;                my $i;
5773                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5774                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5775                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5776                      !!!cp ('t254');
5777                    $i = $_;                    $i = $_;
5778                    last INSCOPE;                    last INSCOPE;
5779                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
5780                            table => 1, html => 1,                    !!!cp ('t255');
                          }->{$node->[1]}) {  
5781                    last INSCOPE;                    last INSCOPE;
5782                  }                  }
5783                } # INSCOPE                } # INSCOPE
5784                unless (defined $i) {                unless (defined $i) {
5785                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t256');
5786                    !!!parse-error (type => 'unmatched end tag',
5787                                    text => $token->{tag_name}, token => $token);
5788                  ## Ignore the token                  ## Ignore the token
5789                    !!!nack ('t256.1');
5790                  !!!next-token;                  !!!next-token;
5791                  redo B;                  next B;
5792                }                }
5793    
5794                ## Clear back to table body context                ## Clear back to table body context
5795                while (not {                while (not ($self->{open_elements}->[-1]->[1]
5796                  tbody => 1, tfoot => 1, thead => 1, html => 1,                                & TABLE_ROWS_SCOPING_EL)) {
5797                }->{$self->{open_elements}->[-1]->[1]}) {                  !!!cp ('t257');
5798                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  ## ISSUE: Can this case be reached?
5799                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5800                }                }
5801    
5802                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5803                $self->{insertion_mode} = IN_TABLE_IM;                $self->{insertion_mode} = IN_TABLE_IM;
5804                  !!!nack ('t257.1');
5805                !!!next-token;                !!!next-token;
5806                redo B;                next B;
5807              } elsif ({              } elsif ({
5808                        body => 1, caption => 1, col => 1, colgroup => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
5809                        html => 1, td => 1, th => 1,                        html => 1, td => 1, th => 1,
5810                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
5811                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
5812                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
5813                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!cp ('t258');
5814                ## Ignore the token            !!!parse-error (type => 'unmatched end tag',
5815                !!!next-token;                            text => $token->{tag_name}, token => $token);
5816                redo B;            ## Ignore the token
5817          } else {            !!!nack ('t258.1');
5818            !!!parse-error (type => 'in table:/'.$token->{tag_name});             !!!next-token;
5819              next B;
5820            } else {
5821              !!!cp ('t259');
5822              !!!parse-error (type => 'in table:/',
5823                              text => $token->{tag_name}, token => $token);
5824    
5825            $insert = $insert_to_foster;            $insert = $insert_to_foster;
5826            #            #
5827          }          }
5828          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5829            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
5830                    @{$self->{open_elements}} == 1) { # redundant, maybe
5831              !!!parse-error (type => 'in body:#eof', token => $token);
5832              !!!cp ('t259.1');
5833              #
5834            } else {
5835              !!!cp ('t259.2');
5836              #
5837            }
5838    
5839            ## Stop parsing
5840            last B;
5841        } else {        } else {
5842          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5843        }        }
# Line 4450  sub _tree_construction_main ($) { Line 5846  sub _tree_construction_main ($) {
5846              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5847                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5848                unless (length $token->{data}) {                unless (length $token->{data}) {
5849                    !!!cp ('t260');
5850                  !!!next-token;                  !!!next-token;
5851                  redo B;                  next B;
5852                }                }
5853              }              }
5854                            
5855                !!!cp ('t261');
5856              #              #
5857            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
5858              if ($token->{tag_name} eq 'col') {              if ($token->{tag_name} eq 'col') {
5859                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!cp ('t262');
5860                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5861                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5862                  !!!ack ('t262.1');
5863                !!!next-token;                !!!next-token;
5864                redo B;                next B;
5865              } else {              } else {
5866                  !!!cp ('t263');
5867                #                #
5868              }              }
5869            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
5870              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
5871                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
5872                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!cp ('t264');
5873                    !!!parse-error (type => 'unmatched end tag',
5874                                    text => 'colgroup', token => $token);
5875                  ## Ignore the token                  ## Ignore the token
5876                  !!!next-token;                  !!!next-token;
5877                  redo B;                  next B;
5878                } else {                } else {
5879                    !!!cp ('t265');
5880                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
5881                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5882                  !!!next-token;                  !!!next-token;
5883                  redo B;                              next B;            
5884                }                }
5885              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
5886                !!!parse-error (type => 'unmatched end tag:col');                !!!cp ('t266');
5887                  !!!parse-error (type => 'unmatched end tag',
5888                                  text => 'col', token => $token);
5889                ## Ignore the token                ## Ignore the token
5890                !!!next-token;                !!!next-token;
5891                redo B;                next B;
5892              } else {              } else {
5893                  !!!cp ('t267');
5894                #                #
5895              }              }
5896            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5897              #          if ($self->{open_elements}->[-1]->[1] & HTML_EL and
5898            }              @{$self->{open_elements}} == 1) { # redundant, maybe
5899              !!!cp ('t270.2');
5900              ## Stop parsing.
5901              last B;
5902            } else {
5903              ## NOTE: As if </colgroup>.
5904              !!!cp ('t270.1');
5905              pop @{$self->{open_elements}}; # colgroup
5906              $self->{insertion_mode} = IN_TABLE_IM;
5907              ## Reprocess.
5908              next B;
5909            }
5910          } else {
5911            die "$0: $token->{type}: Unknown token type";
5912          }
5913    
5914            ## As if </colgroup>            ## As if </colgroup>
5915            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] & HTML_EL) {
5916              !!!parse-error (type => 'unmatched end tag:colgroup');              !!!cp ('t269');
5917    ## TODO: Wrong error type?
5918                !!!parse-error (type => 'unmatched end tag',
5919                                text => 'colgroup', token => $token);
5920              ## Ignore the token              ## Ignore the token
5921                !!!nack ('t269.1');
5922              !!!next-token;              !!!next-token;
5923              redo B;              next B;
5924            } else {            } else {
5925                !!!cp ('t270');
5926              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
5927              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
5928                !!!ack-later;
5929              ## reprocess              ## reprocess
5930              redo B;              next B;
5931            }            }
5932      } elsif ($self->{insertion_mode} == IN_SELECT_IM) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
5933        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
5934            !!!cp ('t271');
5935          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5936          !!!next-token;          !!!next-token;
5937          redo B;          next B;
5938        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5939              if ($token->{tag_name} eq 'option') {          if ($token->{tag_name} eq 'option') {
5940                if ($self->{open_elements}->[-1]->[1] eq 'option') {            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5941                  ## As if </option>              !!!cp ('t272');
5942                  pop @{$self->{open_elements}};              ## As if </option>
5943                }              pop @{$self->{open_elements}};
5944              } else {
5945                !!!cp ('t273');
5946              }
5947    
5948                !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5949                !!!next-token;            !!!nack ('t273.1');
5950                redo B;            !!!next-token;
5951              } elsif ($token->{tag_name} eq 'optgroup') {            next B;
5952                if ($self->{open_elements}->[-1]->[1] eq 'option') {          } elsif ($token->{tag_name} eq 'optgroup') {
5953                  ## As if </option>            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
5954                  pop @{$self->{open_elements}};              !!!cp ('t274');
5955                }              ## As if </option>
5956                pop @{$self->{open_elements}};
5957              } else {
5958                !!!cp ('t275');
5959              }
5960    
5961                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            if ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
5962                  ## As if </optgroup>              !!!cp ('t276');
5963                  pop @{$self->{open_elements}};              ## As if </optgroup>
5964                }              pop @{$self->{open_elements}};
5965              } else {
5966                !!!cp ('t277');
5967              }
5968    
5969                !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5970                !!!next-token;            !!!nack ('t277.1');
5971                redo B;            !!!next-token;
5972              } elsif ($token->{tag_name} eq 'select') {            next B;
5973                !!!parse-error (type => 'not closed:select');          } elsif ({
5974                ## As if </select> instead                     select => 1, input => 1, textarea => 1,
5975                ## have an element in table scope                   }->{$token->{tag_name}} or
5976                my $i;                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5977                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                    {
5978                  my $node = $self->{open_elements}->[$_];                     caption => 1, table => 1,
5979                  if ($node->[1] eq $token->{tag_name}) {                     tbody => 1, tfoot => 1, thead => 1,
5980                    $i = $_;                     tr => 1, td => 1, th => 1,
5981                    last INSCOPE;                    }->{$token->{tag_name}})) {
5982                  } elsif ({            ## TODO: The type below is not good - <select> is replaced by </select>
5983                            table => 1, html => 1,            !!!parse-error (type => 'not closed', text => 'select',
5984                           }->{$node->[1]}) {                            token => $token);
5985                    last INSCOPE;            ## NOTE: As if the token were </select> (<select> case) or
5986                  }            ## as if there were </select> (otherwise).
5987                } # INSCOPE            ## have an element in table scope
5988                unless (defined $i) {            my $i;
5989                  !!!parse-error (type => 'unmatched end tag:select');            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5990                  ## Ignore the token              my $node = $self->{open_elements}->[$_];
5991                  !!!next-token;              if ($node->[1] & SELECT_EL) {
5992                  redo B;                !!!cp ('t278');
5993                }                $i = $_;
5994                  last INSCOPE;
5995                } elsif ($node->[1] & TABLE_SCOPING_EL) {
5996                  !!!cp ('t279');
5997                  last INSCOPE;
5998                }
5999              } # INSCOPE
6000              unless (defined $i) {
6001                !!!cp ('t280');
6002                !!!parse-error (type => 'unmatched end tag',
6003                                text => 'select', token => $token);
6004                ## Ignore the token
6005                !!!nack ('t280.1');
6006                !!!next-token;
6007                next B;
6008              }
6009                                
6010                splice @{$self->{open_elements}}, $i;            !!!cp ('t281');
6011              splice @{$self->{open_elements}}, $i;
6012    
6013                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6014    
6015                !!!next-token;            if ($token->{tag_name} eq 'select') {
6016                redo B;              !!!nack ('t281.2');
6017                !!!next-token;
6018                next B;
6019              } else {
6020                !!!cp ('t281.1');
6021                !!!ack-later;
6022                ## Reprocess the token.
6023                next B;
6024              }
6025          } else {          } else {
6026            !!!parse-error (type => 'in select:'.$token->{tag_name});            !!!cp ('t282');
6027              !!!parse-error (type => 'in select',
6028                              text => $token->{tag_name}, token => $token);
6029            ## Ignore the token            ## Ignore the token
6030              !!!nack ('t282.1');
6031            !!!next-token;            !!!next-token;
6032            redo B;            next B;
6033          }          }
6034        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6035              if ($token->{tag_name} eq 'optgroup') {          if ($token->{tag_name} eq 'optgroup') {
6036                if ($self->{open_elements}->[-1]->[1] eq 'option' and            if ($self->{open_elements}->[-1]->[1] & OPTION_EL and
6037                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                $self->{open_elements}->[-2]->[1] & OPTGROUP_EL) {
6038                  ## As if </option>              !!!cp ('t283');
6039                  splice @{$self->{open_elements}}, -2;              ## As if </option>
6040                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {              splice @{$self->{open_elements}}, -2;
6041                  pop @{$self->{open_elements}};            } elsif ($self->{open_elements}->[-1]->[1] & OPTGROUP_EL) {
6042                } else {              !!!cp ('t284');
6043                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              pop @{$self->{open_elements}};
6044                  ## Ignore the token            } else {
6045                }              !!!cp ('t285');
6046                !!!next-token;              !!!parse-error (type => 'unmatched end tag',
6047                redo B;                              text => $token->{tag_name}, token => $token);
6048              } elsif ($token->{tag_name} eq 'option') {              ## Ignore the token
6049                if ($self->{open_elements}->[-1]->[1] eq 'option') {            }
6050                  pop @{$self->{open_elements}};            !!!nack ('t285.1');
6051                } else {            !!!next-token;
6052                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            next B;
6053                  ## Ignore the token          } elsif ($token->{tag_name} eq 'option') {
6054                }            if ($self->{open_elements}->[-1]->[1] & OPTION_EL) {
6055                !!!next-token;              !!!cp ('t286');
6056                redo B;              pop @{$self->{open_elements}};
6057              } elsif ($token->{tag_name} eq 'select') {            } else {
6058                ## have an element in table scope              !!!cp ('t287');
6059                my $i;              !!!parse-error (type => 'unmatched end tag',
6060                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                              text => $token->{tag_name}, token => $token);
6061                  my $node = $self->{open_elements}->[$_];              ## Ignore the token
6062                  if ($node->[1] eq $token->{tag_name}) {            }
6063                    $i = $_;            !!!nack ('t287.1');
6064                    last INSCOPE;            !!!next-token;
6065                  } elsif ({            next B;
6066                            table => 1, html => 1,          } elsif ($token->{tag_name} eq 'select') {
6067                           }->{$node->[1]}) {            ## have an element in table scope
6068                    last INSCOPE;            my $i;
6069                  }            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6070                } # INSCOPE              my $node = $self->{open_elements}->[$_];
6071                unless (defined $i) {              if ($node->[1] & SELECT_EL) {
6072                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t288');
6073                  ## Ignore the token                $i = $_;
6074                  !!!next-token;                last INSCOPE;
6075                  redo B;              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6076                }                !!!cp ('t289');
6077                  last INSCOPE;
6078                }
6079              } # INSCOPE
6080              unless (defined $i) {
6081                !!!cp ('t290');
6082                !!!parse-error (type => 'unmatched end tag',
6083                                text => $token->{tag_name}, token => $token);
6084                ## Ignore the token
6085                !!!nack ('t290.1');
6086                !!!next-token;
6087                next B;
6088              }
6089                                
6090                splice @{$self->{open_elements}}, $i;            !!!cp ('t291');
6091              splice @{$self->{open_elements}}, $i;
6092    
6093                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6094    
6095                !!!next-token;            !!!nack ('t291.1');
6096                redo B;            !!!next-token;
6097              } elsif ({            next B;
6098                        caption => 1, table => 1, tbody => 1,          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
6099                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                   {
6100                       }->{$token->{tag_name}}) {                    caption => 1, table => 1, tbody => 1,
6101                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
6102                     }->{$token->{tag_name}}) {
6103    ## TODO: The following is wrong?
6104              !!!parse-error (type => 'unmatched end tag',
6105                              text => $token->{tag_name}, token => $token);
6106                                
6107                ## have an element in table scope            ## have an element in table scope
6108                my $i;            my $i;
6109                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6110                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6111                  if ($node->[1] eq $token->{tag_name}) {              if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
6112                    $i = $_;                !!!cp ('t292');
6113                    last INSCOPE;                $i = $_;
6114                  } elsif ({                last INSCOPE;
6115                            table => 1, html => 1,              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6116                           }->{$node->[1]}) {                !!!cp ('t293');
6117                    last INSCOPE;                last INSCOPE;
6118                  }              }
6119                } # INSCOPE            } # INSCOPE
6120                unless (defined $i) {            unless (defined $i) {
6121                  ## Ignore the token              !!!cp ('t294');
6122                  !!!next-token;              ## Ignore the token
6123                  redo B;              !!!nack ('t294.1');
6124                }              !!!next-token;
6125                next B;
6126              }
6127                                
6128                ## As if </select>            ## As if </select>
6129                ## have an element in table scope            ## have an element in table scope
6130                undef $i;            undef $i;
6131                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6132                  my $node = $self->{open_elements}->[$_];              my $node = $self->{open_elements}->[$_];
6133                  if ($node->[1] eq 'select') {              if ($node->[1] & SELECT_EL) {
6134                    $i = $_;                !!!cp ('t295');
6135                    last INSCOPE;                $i = $_;
6136                  } elsif ({                last INSCOPE;
6137                            table => 1, html => 1,              } elsif ($node->[1] & TABLE_SCOPING_EL) {
6138                           }->{$node->[1]}) {  ## ISSUE: Can this state be reached?
6139                    last INSCOPE;                !!!cp ('t296');
6140                  }                last INSCOPE;
6141                } # INSCOPE              }
6142                unless (defined $i) {            } # INSCOPE
6143                  !!!parse-error (type => 'unmatched end tag:select');            unless (defined $i) {
6144                  ## Ignore the </select> token              !!!cp ('t297');
6145                  !!!next-token; ## TODO: ok?  ## TODO: The following error type is correct?
6146                  redo B;              !!!parse-error (type => 'unmatched end tag',
6147                }                              text => 'select', token => $token);
6148                ## Ignore the </select> token
6149                !!!nack ('t297.1');
6150                !!!next-token; ## TODO: ok?
6151                next B;
6152              }
6153                                
6154                splice @{$self->{open_elements}}, $i;            !!!cp ('t298');
6155              splice @{$self->{open_elements}}, $i;
6156    
6157                $self->_reset_insertion_mode;            $self->_reset_insertion_mode;
6158    
6159                ## reprocess            !!!ack-later;
6160                redo B;            ## reprocess
6161              next B;
6162          } else {          } else {
6163            !!!parse-error (type => 'in select:/'.$token->{tag_name});            !!!cp ('t299');
6164              !!!parse-error (type => 'in select:/',
6165                              text => $token->{tag_name}, token => $token);
6166            ## Ignore the token            ## Ignore the token
6167              !!!nack ('t299.3');
6168            !!!next-token;            !!!next-token;
6169            redo B;            next B;
6170            }
6171          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6172            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6173                    @{$self->{open_elements}} == 1) { # redundant, maybe
6174              !!!cp ('t299.1');
6175              !!!parse-error (type => 'in body:#eof', token => $token);
6176            } else {
6177              !!!cp ('t299.2');
6178          }          }
6179    
6180            ## Stop parsing.
6181            last B;
6182        } else {        } else {
6183          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6184        }        }
# Line 4687  sub _tree_construction_main ($) { Line 6192  sub _tree_construction_main ($) {
6192            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
6193                        
6194            unless (length $token->{data}) {            unless (length $token->{data}) {
6195                !!!cp ('t300');
6196              !!!next-token;              !!!next-token;
6197              redo B;              next B;
6198            }            }
6199          }          }
6200                    
6201          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6202            !!!parse-error (type => 'after html:#character');            !!!cp ('t301');
6203              !!!parse-error (type => 'after html:#text', token => $token);
6204    
6205            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
6206            } else {
6207              !!!cp ('t302');
6208          }          }
6209                    
6210          ## "after body" insertion mode          ## "after body" insertion mode
6211          !!!parse-error (type => 'after body:#character');          !!!parse-error (type => 'after body:#text', token => $token);
6212    
6213          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6214          ## reprocess          ## reprocess
6215          redo B;          next B;
6216        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6217          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6218            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!cp ('t303');
6219              !!!parse-error (type => 'after html',
6220                              text => $token->{tag_name}, token => $token);
6221                        
6222            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
6223            } else {
6224              !!!cp ('t304');
6225          }          }
6226    
6227          ## "after body" insertion mode          ## "after body" insertion mode
6228          !!!parse-error (type => 'after body:'.$token->{tag_name});          !!!parse-error (type => 'after body',
6229                            text => $token->{tag_name}, token => $token);
6230    
6231          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
6232            !!!ack-later;
6233          ## reprocess          ## reprocess
6234          redo B;          next B;
6235        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6236          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
6237            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!cp ('t305');
6238              !!!parse-error (type => 'after html:/',
6239                              text => $token->{tag_name}, token => $token);
6240                        
6241            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6242            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
6243            } else {
6244              !!!cp ('t306');
6245          }          }
6246    
6247          ## "after body" insertion mode          ## "after body" insertion mode
6248          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
6249            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
6250              !!!parse-error (type => 'unmatched end tag:html');              !!!cp ('t307');
6251                !!!parse-error (type => 'unmatched end tag',
6252                                text => 'html', token => $token);
6253              ## Ignore the token              ## Ignore the token
6254              !!!next-token;              !!!next-token;
6255              redo B;              next B;
6256            } else {            } else {
6257                !!!cp ('t308');
6258              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
6259              !!!next-token;              !!!next-token;
6260              redo B;              next B;
6261            }            }
6262          } else {          } else {
6263            !!!parse-error (type => 'after body:/'.$token->{tag_name});            !!!cp ('t309');
6264              !!!parse-error (type => 'after body:/',
6265                              text => $token->{tag_name}, token => $token);
6266    
6267            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
6268            ## reprocess            ## reprocess
6269            redo B;            next B;
6270          }          }
6271          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6272            !!!cp ('t309.2');
6273            ## Stop parsing
6274            last B;
6275        } else {        } else {
6276          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6277        }        }
# Line 4753  sub _tree_construction_main ($) { Line 6281  sub _tree_construction_main ($) {
6281            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
6282                        
6283            unless (length $token->{data}) {            unless (length $token->{data}) {
6284                !!!cp ('t310');
6285              !!!next-token;              !!!next-token;
6286              redo B;              next B;
6287            }            }
6288          }          }
6289                    
6290          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
6291            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6292              !!!parse-error (type => 'in frameset:#character');              !!!cp ('t311');
6293                !!!parse-error (type => 'in frameset:#text', token => $token);
6294            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
6295              !!!parse-error (type => 'after frameset:#character');              !!!cp ('t312');
6296                !!!parse-error (type => 'after frameset:#text', token => $token);
6297            } else { # "after html frameset"            } else { # "after html frameset"
6298              !!!parse-error (type => 'after html:#character');              !!!cp ('t313');
6299                !!!parse-error (type => 'after html:#text', token => $token);
6300    
6301              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6302              ## Reprocess in the "main" phase, "after frameset"...              ## Reprocess in the "after frameset" insertion mode.
6303              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#text', token => $token);
6304            }            }
6305                        
6306            ## Ignore the token.            ## Ignore the token.
6307            if (length $token->{data}) {            if (length $token->{data}) {
6308                !!!cp ('t314');
6309              ## reprocess the rest of characters              ## reprocess the rest of characters
6310            } else {            } else {
6311                !!!cp ('t315');
6312              !!!next-token;              !!!next-token;
6313            }            }
6314            redo B;            next B;
6315          }          }
6316                    
6317          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
6318        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
6319          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
6320            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!cp ('t316');
6321              !!!parse-error (type => 'after html',
6322                              text => $token->{tag_name}, token => $token);
6323    
6324            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
6325            ## Process in the "main" phase, "after frameset" insertion mode...            ## Process in the "after frameset" insertion mode.
6326          }          } else {
6327              !!!cp ('t317');
6328            }
6329    
6330          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6331              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6332            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!cp ('t318');
6333              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6334              !!!nack ('t318.1');
6335            !!!next-token;            !!!next-token;
6336            redo B;            next B;
6337          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
6338                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
6339            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!cp ('t319');
6340              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
6341            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
6342              !!!ack ('t319.1');
6343            !!!next-token;            !!!next-token;
6344            redo B;            next B;
6345          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
6346            ## NOTE: As if in body.            !!!cp ('t320');
6347            $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);            ## NOTE: As if in head.
6348            redo B;            $parse_rcdata->(CDATA_CONTENT_MODEL);
6349              next B;
6350          } else {          } else {
6351            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6352              !!!parse-error (type => 'in frameset:'.$token->{tag_name});              !!!cp ('t321');
6353                !!!parse-error (type => 'in frameset',
6354                                text => $token->{tag_name}, token => $token);
6355            } else {            } else {
6356              !!!parse-error (type => 'after frameset:'.$token->{tag_name});              !!!cp ('t322');
6357                !!!parse-error (type => 'after frameset',
6358                                text => $token->{tag_name}, token => $token);
6359            }            }
6360            ## Ignore the token            ## Ignore the token
6361              !!!nack ('t322.1');
6362            !!!next-token;            !!!next-token;
6363            redo B;            next B;
6364          }          }
6365        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
6366          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
6367            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!cp ('t323');
6368              !!!parse-error (type => 'after html:/',
6369                              text => $token->{tag_name}, token => $token);
6370    
6371            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
6372            ## Process in the "main" phase, "after frameset" insertion mode...            ## Process in the "after frameset" insertion mode.
6373            } else {
6374              !!!cp ('t324');
6375          }          }
6376    
6377          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
6378              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
6379            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] & HTML_EL and
6380                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
6381              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t325');
6382                !!!parse-error (type => 'unmatched end tag',
6383                                text => $token->{tag_name}, token => $token);
6384              ## Ignore the token              ## Ignore the token
6385              !!!next-token;              !!!next-token;
6386            } else {            } else {
6387                !!!cp ('t326');
6388              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
6389              !!!next-token;              !!!next-token;
6390            }            }
6391    
6392            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
6393                $self->{open_elements}->[-1]->[1] ne 'frameset') {                not ($self->{open_elements}->[-1]->[1] & FRAMESET_EL)) {
6394                !!!cp ('t327');
6395              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
6396              } else {
6397                !!!cp ('t328');
6398            }            }
6399            redo B;            next B;
6400          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
6401                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
6402              !!!cp ('t329');
6403            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
6404            !!!next-token;            !!!next-token;
6405            redo B;            next B;
6406          } else {          } else {
6407            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
6408              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});              !!!cp ('t330');
6409                !!!parse-error (type => 'in frameset:/',
6410                                text => $token->{tag_name}, token => $token);
6411            } else {            } else {
6412              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});              !!!cp ('t331');
6413                !!!parse-error (type => 'after frameset:/',
6414                                text => $token->{tag_name}, token => $token);
6415            }            }
6416            ## Ignore the token            ## Ignore the token
6417            !!!next-token;            !!!next-token;
6418            redo B;            next B;
6419            }
6420          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
6421            unless ($self->{open_elements}->[-1]->[1] & HTML_EL and
6422                    @{$self->{open_elements}} == 1) { # redundant, maybe
6423              !!!cp ('t331.1');
6424              !!!parse-error (type => 'in body:#eof', token => $token);
6425            } else {
6426              !!!cp ('t331.2');
6427          }          }
6428            
6429            ## Stop parsing
6430            last B;
6431        } else {        } else {
6432          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
6433        }        }
# Line 4866  sub _tree_construction_main ($) { Line 6440  sub _tree_construction_main ($) {
6440      ## "in body" insertion mode      ## "in body" insertion mode
6441      if ($token->{type} == START_TAG_TOKEN) {      if ($token->{type} == START_TAG_TOKEN) {
6442        if ($token->{tag_name} eq 'script') {        if ($token->{tag_name} eq 'script') {
6443            !!!cp ('t332');
6444          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6445          $script_start_tag->($insert);          $script_start_tag->();
6446          redo B;          next B;
6447        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
6448            !!!cp ('t333');
6449          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6450          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL);
6451          redo B;          next B;
6452        } elsif ({        } elsif ({
6453                  base => 1, link => 1,                  base => 1, link => 1,
6454                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6455            !!!cp ('t334');
6456          ## 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
6457          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6458          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
6459            !!!ack ('t334.1');
6460          !!!next-token;          !!!next-token;
6461          redo B;          next B;
6462        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
6463          ## 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
6464          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6465          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.
6466    
6467          unless ($self->{confident}) {          unless ($self->{confident}) {
6468            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) {
6469                !!!cp ('t335');
6470                ## NOTE: Whether the encoding is supported or not is handled
6471                ## in the {change_encoding} callback.
6472              $self->{change_encoding}              $self->{change_encoding}
6473                  ->($self, $token->{attributes}->{charset}->{value});                  ->($self, $token->{attributes}->{charset}->{value}, $token);
6474                            
6475              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
6476                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
6477                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
6478                                           ->{has_reference});                                           ->{has_reference});
6479            } elsif ($token->{attributes}->{content}) {            } elsif ($token->{attributes}->{content}) {
             ## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition.  
6480              if ($token->{attributes}->{content}->{value}              if ($token->{attributes}->{content}->{value}
6481                  =~ /\A[^;]*;[\x09-\x0D\x20]*[Cc][Hh][Aa][Rr][Ss][Ee][Tt]                  =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
6482                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
6483                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
6484                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20\x3B]*))/x) {
6485                  !!!cp ('t336');
6486                  ## NOTE: Whether the encoding is supported or not is handled
6487                  ## in the {change_encoding} callback.
6488                $self->{change_encoding}                $self->{change_encoding}
6489                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
6490                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
6491                    ->set_user_data (manakai_has_reference =>                    ->set_user_data (manakai_has_reference =>
6492                                         $token->{attributes}->{content}                                         $token->{attributes}->{content}
# Line 4912  sub _tree_construction_main ($) { Line 6495  sub _tree_construction_main ($) {
6495            }            }
6496          } else {          } else {
6497            if ($token->{attributes}->{charset}) {            if ($token->{attributes}->{charset}) {
6498                !!!cp ('t337');
6499              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
6500                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
6501                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
6502                                           ->{has_reference});                                           ->{has_reference});
6503            }            }
6504            if ($token->{attributes}->{content}) {            if ($token->{attributes}->{content}) {
6505                !!!cp ('t338');
6506              $meta_el->[0]->get_attribute_node_ns (undef, 'content')              $meta_el->[0]->get_attribute_node_ns (undef, 'content')
6507                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
6508                                       $token->{attributes}->{content}                                       $token->{attributes}->{content}
# Line 4925  sub _tree_construction_main ($) { Line 6510  sub _tree_construction_main ($) {
6510            }            }
6511          }          }
6512    
6513            !!!ack ('t338.1');
6514          !!!next-token;          !!!next-token;
6515          redo B;          next B;
6516        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
6517          !!!parse-error (type => 'in body:title');          !!!cp ('t341');
6518          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
6519          $parse_rcdata->(RCDATA_CONTENT_MODEL, sub {          $parse_rcdata->(RCDATA_CONTENT_MODEL);
6520            if (defined $self->{head_element}) {          next B;
             $self->{head_element}->append_child ($_[0]);  
           } else {  
             $insert->($_[0]);  
           }  
         });  
         redo B;  
6521        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
6522          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body', text => 'body', token => $token);
6523                                
6524          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
6525              $self->{open_elements}->[1]->[1] ne 'body') {              not ($self->{open_elements}->[1]->[1] & BODY_EL)) {
6526              !!!cp ('t342');
6527            ## Ignore the token            ## Ignore the token
6528          } else {          } else {
6529            my $body_el = $self->{open_elements}->[1]->[0];            my $body_el = $self->{open_elements}->[1]->[0];
6530            for my $attr_name (keys %{$token->{attributes}}) {            for my $attr_name (keys %{$token->{attributes}}) {
6531              unless ($body_el->has_attribute_ns (undef, $attr_name)) {              unless ($body_el->has_attribute_ns (undef, $attr_name)) {
6532                  !!!cp ('t343');
6533                $body_el->set_attribute_ns                $body_el->set_attribute_ns
6534                  (undef, [undef, $attr_name],                  (undef, [undef, $attr_name],
6535                   $token->{attributes}->{$attr_name}->{value});                   $token->{attributes}->{$attr_name}->{value});
6536              }              }
6537            }            }
6538          }          }
6539            !!!nack ('t343.1');
6540          !!!next-token;          !!!next-token;
6541          redo B;          next B;
6542        } elsif ({        } elsif ({
6543                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6544                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1,
6545                    h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6546                  menu => 1, ol => 1, p => 1, ul => 1,                  menu => 1, ol => 1, p => 1, ul => 1,
6547                  pre => 1,                  pre => 1, listing => 1,
6548                    form => 1,
6549                    table => 1,
6550                    hr => 1,
6551                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6552            if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
6553              !!!cp ('t350');
6554              !!!parse-error (type => 'in form:form', token => $token);
6555              ## Ignore the token
6556              !!!nack ('t350.1');
6557              !!!next-token;
6558              next B;
6559            }
6560    
6561          ## has a p element in scope          ## has a p element in scope
6562          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6563            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6564              !!!back-token;              !!!cp ('t344');
6565              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              !!!back-token; # <form>
6566              redo B;              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6567            } elsif ({                        line => $token->{line}, column => $token->{column}};
6568                      table => 1, caption => 1, td => 1, th => 1,              next B;
6569                      button => 1, marquee => 1, object => 1, html => 1,            } elsif ($_->[1] & SCOPING_EL) {
6570                     }->{$_->[1]}) {              !!!cp ('t345');
6571              last INSCOPE;              last INSCOPE;
6572            }            }
6573          } # INSCOPE          } # INSCOPE
6574                        
6575          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6576          if ($token->{tag_name} eq 'pre') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
6577              !!!nack ('t346.1');
6578            !!!next-token;            !!!next-token;
6579            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
6580              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
6581              unless (length $token->{data}) {              unless (length $token->{data}) {
6582                  !!!cp ('t346');
6583                !!!next-token;                !!!next-token;
6584                } else {
6585                  !!!cp ('t349');
6586              }              }
6587              } else {
6588                !!!cp ('t348');
6589            }            }
6590          } else {          } elsif ($token->{tag_name} eq 'form') {
6591              !!!cp ('t347.1');
6592              $self->{form_element} = $self->{open_elements}->[-1]->[0];
6593    
6594              !!!nack ('t347.2');
6595            !!!next-token;            !!!next-token;
6596          }          } elsif ($token->{tag_name} eq 'table') {
6597          redo B;            !!!cp ('t382');
6598        } elsif ($token->{tag_name} eq 'form') {            push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
6599          if (defined $self->{form_element}) {            
6600            !!!parse-error (type => 'in form:form');            $self->{insertion_mode} = IN_TABLE_IM;
6601            ## Ignore the token  
6602              !!!nack ('t382.1');
6603              !!!next-token;
6604            } elsif ($token->{tag_name} eq 'hr') {
6605              !!!cp ('t386');
6606              pop @{$self->{open_elements}};
6607            
6608              !!!nack ('t386.1');
6609            !!!next-token;            !!!next-token;
           redo B;  
6610          } else {          } else {
6611            ## has a p element in scope            !!!nack ('t347.1');
           INSCOPE: for (reverse @{$self->{open_elements}}) {  
             if ($_->[1] eq 'p') {  
               !!!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]}) {  
               last INSCOPE;  
             }  
           } # INSCOPE  
               
           !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           $self->{form_element} = $self->{open_elements}->[-1]->[0];  
6612            !!!next-token;            !!!next-token;
           redo B;  
6613          }          }
6614        } elsif ($token->{tag_name} eq 'li') {          next B;
6615          ## has a p element in scope        } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!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]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## Step 1  
         my $i = -1;  
         my $node = $self->{open_elements}->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'li') {  
             if ($i != -1) {  
               !!!parse-error (type => 'end tag missing:'.  
                               $self->{open_elements}->[-1]->[1]);  
             }  
             splice @{$self->{open_elements}}, $i;  
             last LI;  
           }  
             
           ## 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') {  
             last LI;  
           }  
             
           ## Step 4  
           $i--;  
           $node = $self->{open_elements}->[$i];  
           redo LI;  
         } # LI  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {  
6616          ## has a p element in scope          ## has a p element in scope
6617          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6618            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6619              !!!back-token;              !!!cp ('t353');
6620              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              !!!back-token; # <x>
6621              redo B;              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6622            } elsif ({                        line => $token->{line}, column => $token->{column}};
6623                      table => 1, caption => 1, td => 1, th => 1,              next B;
6624                      button => 1, marquee => 1, object => 1, html => 1,            } elsif ($_->[1] & SCOPING_EL) {
6625                     }->{$_->[1]}) {              !!!cp ('t354');
6626              last INSCOPE;              last INSCOPE;
6627            }            }
6628          } # INSCOPE          } # INSCOPE
# Line 5080  sub _tree_construction_main ($) { Line 6630  sub _tree_construction_main ($) {
6630          ## Step 1          ## Step 1
6631          my $i = -1;          my $i = -1;
6632          my $node = $self->{open_elements}->[$i];          my $node = $self->{open_elements}->[$i];
6633            my $li_or_dtdd = {li => {li => 1},
6634                              dt => {dt => 1, dd => 1},
6635                              dd => {dt => 1, dd => 1}}->{$token->{tag_name}};
6636          LI: {          LI: {
6637            ## Step 2            ## Step 2
6638            if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {            if ($li_or_dtdd->{$node->[0]->manakai_local_name}) {
6639              if ($i != -1) {              if ($i != -1) {
6640                !!!parse-error (type => 'end tag missing:'.                !!!cp ('t355');
6641                                $self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
6642                                  text => $self->{open_elements}->[-1]->[0]
6643                                      ->manakai_local_name,
6644                                  token => $token);
6645                } else {
6646                  !!!cp ('t356');
6647              }              }
6648              splice @{$self->{open_elements}}, $i;              splice @{$self->{open_elements}}, $i;
6649              last LI;              last LI;
6650              } else {
6651                !!!cp ('t357');
6652            }            }
6653                        
6654            ## Step 3            ## Step 3
6655            if (not $formatting_category->{$node->[1]} and            if (not ($node->[1] & FORMATTING_EL) and
6656                #not $phrasing_category->{$node->[1]} and                #not $phrasing_category->{$node->[1]} and
6657                ($special_category->{$node->[1]} or                ($node->[1] & SPECIAL_EL or
6658                 $scoping_category->{$node->[1]}) and                 $node->[1] & SCOPING_EL) and
6659                $node->[1] ne 'address' and $node->[1] ne 'div') {                not ($node->[1] & ADDRESS_EL) and
6660                  not ($node->[1] & DIV_EL)) {
6661                !!!cp ('t358');
6662              last LI;              last LI;
6663            }            }
6664                        
6665              !!!cp ('t359');
6666            ## Step 4            ## Step 4
6667            $i--;            $i--;
6668            $node = $self->{open_elements}->[$i];            $node = $self->{open_elements}->[$i];
6669            redo LI;            redo LI;
6670          } # LI          } # LI
6671                        
6672          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6673            !!!nack ('t359.1');
6674          !!!next-token;          !!!next-token;
6675          redo B;          next B;
6676        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
6677          ## has a p element in scope          ## has a p element in scope
6678          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6679            if ($_->[1] eq 'p') {            if ($_->[1] & P_EL) {
6680              !!!back-token;              !!!cp ('t367');
6681              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              !!!back-token; # <plaintext>
6682              redo B;              $token = {type => END_TAG_TOKEN, tag_name => 'p',
6683            } elsif ({                        line => $token->{line}, column => $token->{column}};
6684                      table => 1, caption => 1, td => 1, th => 1,              next B;
6685                      button => 1, marquee => 1, object => 1, html => 1,            } elsif ($_->[1] & SCOPING_EL) {
6686                     }->{$_->[1]}) {              !!!cp ('t368');
6687              last INSCOPE;              last INSCOPE;
6688            }            }
6689          } # INSCOPE          } # INSCOPE
6690                        
6691          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6692                        
6693          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
6694                        
6695            !!!nack ('t368.1');
6696          !!!next-token;          !!!next-token;
6697          redo B;          next B;
       } elsif ({  
                 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
                }->{$token->{tag_name}}) {  
         ## has a p element in scope  
         INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
           my $node = $self->{open_elements}->[$_];  
           if ($node->[1] eq 'p') {  
             !!!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,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## NOTE: See <http://html5.org/tools/web-apps-tracker?from=925&to=926>  
         ## has an element in scope  
         #my $i;  
         #INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
         #  my $node = $self->{open_elements}->[$_];  
         #  if ({  
         #       h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
         #      }->{$node->[1]}) {  
         #    $i = $_;  
         #    last INSCOPE;  
         #  } elsif ({  
         #            table => 1, caption => 1, td => 1, th => 1,  
         #            button => 1, marquee => 1, object => 1, html => 1,  
         #           }->{$node->[1]}) {  
         #    last INSCOPE;  
         #  }  
         #} # INSCOPE  
         #    
         #if (defined $i) {  
         #  !!! parse-error (type => 'in hn:hn');  
         #  splice @{$self->{open_elements}}, $i;  
         #}  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
             
         !!!next-token;  
         redo B;  
6698        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
6699          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
6700            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
6701            if ($node->[1] eq 'a') {            if ($node->[1] & A_EL) {
6702              !!!parse-error (type => 'in a:a');              !!!cp ('t371');
6703                !!!parse-error (type => 'in a:a', token => $token);
6704                            
6705              !!!back-token;              !!!back-token; # <a>
6706              $token = {type => END_TAG_TOKEN, tag_name => 'a'};              $token = {type => END_TAG_TOKEN, tag_name => 'a',
6707              $formatting_end_tag->($token->{tag_name});                        line => $token->{line}, column => $token->{column}};
6708                $formatting_end_tag->($token);
6709                            
6710              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
6711                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
6712                    !!!cp ('t372');
6713                  splice @$active_formatting_elements, $_, 1;                  splice @$active_formatting_elements, $_, 1;
6714                  last AFE2;                  last AFE2;
6715                }                }
6716              } # AFE2              } # AFE2
6717              OE: for (reverse 0..$#{$self->{open_elements}}) {              OE: for (reverse 0..$#{$self->{open_elements}}) {
6718                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
6719                    !!!cp ('t373');
6720                  splice @{$self->{open_elements}}, $_, 1;                  splice @{$self->{open_elements}}, $_, 1;
6721                  last OE;                  last OE;
6722                }                }
6723              } # OE              } # OE
6724              last AFE;              last AFE;
6725            } elsif ($node->[0] eq '#marker') {            } elsif ($node->[0] eq '#marker') {
6726                !!!cp ('t374');
6727              last AFE;              last AFE;
6728            }            }
6729          } # AFE          } # AFE
6730                        
6731          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6732    
6733          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6734          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
6735    
6736            !!!nack ('t374.1');
6737          !!!next-token;          !!!next-token;
6738          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}}) {  
         $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;  
6739        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
6740          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6741    
6742          ## has a |nobr| element in scope          ## has a |nobr| element in scope
6743          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6744            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6745            if ($node->[1] eq 'nobr') {            if ($node->[1] & NOBR_EL) {
6746              !!!parse-error (type => 'in nobr:nobr');              !!!cp ('t376');
6747              !!!back-token;              !!!parse-error (type => 'in nobr:nobr', token => $token);
6748              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};              !!!back-token; # <nobr>
6749              redo B;              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
6750            } elsif ({                        line => $token->{line}, column => $token->{column}};
6751                      table => 1, caption => 1, td => 1, th => 1,              next B;
6752                      button => 1, marquee => 1, object => 1, html => 1,            } elsif ($node->[1] & SCOPING_EL) {
6753                     }->{$node->[1]}) {              !!!cp ('t377');
6754              last INSCOPE;              last INSCOPE;
6755            }            }
6756          } # INSCOPE          } # INSCOPE
6757                    
6758          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6759          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
6760                    
6761            !!!nack ('t377.1');
6762          !!!next-token;          !!!next-token;
6763          redo B;          next B;
6764        } elsif ($token->{tag_name} eq 'button') {        } elsif ($token->{tag_name} eq 'button') {
6765          ## has a button element in scope          ## has a button element in scope
6766          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6767            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6768            if ($node->[1] eq 'button') {            if ($node->[1] & BUTTON_EL) {
6769              !!!parse-error (type => 'in button:button');              !!!cp ('t378');
6770              !!!back-token;              !!!parse-error (type => 'in button:button', token => $token);
6771              $token = {type => END_TAG_TOKEN, tag_name => 'button'};              !!!back-token; # <button>
6772              redo B;              $token = {type => END_TAG_TOKEN, tag_name => 'button',
6773            } elsif ({                        line => $token->{line}, column => $token->{column}};
6774                      table => 1, caption => 1, td => 1, th => 1,              next B;
6775                      button => 1, marquee => 1, object => 1, html => 1,            } elsif ($node->[1] & SCOPING_EL) {
6776                     }->{$node->[1]}) {              !!!cp ('t379');
6777              last INSCOPE;              last INSCOPE;
6778            }            }
6779          } # INSCOPE          } # INSCOPE
6780                        
6781          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6782                        
6783          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6784          push @$active_formatting_elements, ['#marker', ''];  
6785            ## TODO: associate with $self->{form_element} if defined
6786    
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'marquee' or  
                $token->{tag_name} eq 'object') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
6787          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
6788            
6789          !!!next-token;          !!!nack ('t379.1');
         redo B;  
       } elsif ($token->{tag_name} eq 'xmp') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
         $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);  
         redo B;  
       } elsif ($token->{tag_name} eq 'table') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!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]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
             
         $self->{insertion_mode} = IN_TABLE_IM;  
             
6790          !!!next-token;          !!!next-token;
6791          redo B;          next B;
6792        } elsif ({        } elsif ({
6793                  area => 1, basefont => 1, bgsound => 1, br => 1,                  xmp => 1,
6794                  embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                  iframe => 1,
6795                  image => 1,                  noembed => 1,
6796                    noframes => 1, ## NOTE: This is an "as if in head" code clone.
6797                    noscript => 0, ## TODO: 1 if scripting is enabled
6798                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6799          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'xmp') {
6800            !!!parse-error (type => 'image');            !!!cp ('t381');
6801            $token->{tag_name} = 'img';            $reconstruct_active_formatting_elements->($insert_to_current);
6802            } else {
6803              !!!cp ('t399');
6804          }          }
6805            ## NOTE: There is an "as if in body" code clone.
6806          ## NOTE: There is an "as if <br>" code clone.          $parse_rcdata->(CDATA_CONTENT_MODEL);
6807          $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') {  
             !!!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]}) {  
             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') {  
         $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;  
6808        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
6809          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex', token => $token);
6810                    
6811          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
6812              !!!cp ('t389');
6813            ## Ignore the token            ## Ignore the token
6814              !!!nack ('t389'); ## NOTE: Not acknowledged.
6815            !!!next-token;            !!!next-token;
6816            redo B;            next B;
6817          } else {          } else {
6818              !!!ack ('t391.1');
6819    
6820            my $at = $token->{attributes};            my $at = $token->{attributes};
6821            my $form_attrs;            my $form_attrs;
6822            $form_attrs->{action} = $at->{action} if $at->{action};            $form_attrs->{action} = $at->{action} if $at->{action};
# Line 5368  sub _tree_construction_main ($) { Line 6826  sub _tree_construction_main ($) {
6826            delete $at->{prompt};            delete $at->{prompt};
6827            my @tokens = (            my @tokens = (
6828                          {type => START_TAG_TOKEN, tag_name => 'form',                          {type => START_TAG_TOKEN, tag_name => 'form',
6829                           attributes => $form_attrs},                           attributes => $form_attrs,
6830                          {type => START_TAG_TOKEN, tag_name => 'hr'},                           line => $token->{line}, column => $token->{column}},
6831                          {type => START_TAG_TOKEN, tag_name => 'p'},                          {type => START_TAG_TOKEN, tag_name => 'hr',
6832                          {type => START_TAG_TOKEN, tag_name => 'label'},                           line => $token->{line}, column => $token->{column}},
6833                            {type => START_TAG_TOKEN, tag_name => 'p',
6834                             line => $token->{line}, column => $token->{column}},
6835                            {type => START_TAG_TOKEN, tag_name => 'label',
6836                             line => $token->{line}, column => $token->{column}},
6837                         );                         );
6838            if ($prompt_attr) {            if ($prompt_attr) {
6839              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};              !!!cp ('t390');
6840                push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
6841                               #line => $token->{line}, column => $token->{column},
6842                              };
6843            } else {            } else {
6844                !!!cp ('t391');
6845              push @tokens, {type => CHARACTER_TOKEN,              push @tokens, {type => CHARACTER_TOKEN,
6846                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD                             data => 'This is a searchable index. Insert your search keywords here: ',
6847                               #line => $token->{line}, column => $token->{column},
6848                              }; # SHOULD
6849              ## TODO: make this configurable              ## TODO: make this configurable
6850            }            }
6851            push @tokens,            push @tokens,
6852                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at},                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at,
6853                             line => $token->{line}, column => $token->{column}},
6854                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
6855                          {type => END_TAG_TOKEN, tag_name => 'label'},                          {type => END_TAG_TOKEN, tag_name => 'label',
6856                          {type => END_TAG_TOKEN, tag_name => 'p'},                           line => $token->{line}, column => $token->{column}},
6857                          {type => START_TAG_TOKEN, tag_name => 'hr'},                          {type => END_TAG_TOKEN, tag_name => 'p',
6858                          {type => END_TAG_TOKEN, tag_name => 'form'};                           line => $token->{line}, column => $token->{column}},
6859            $token = shift @tokens;                          {type => START_TAG_TOKEN, tag_name => 'hr',
6860                             line => $token->{line}, column => $token->{column}},
6861                            {type => END_TAG_TOKEN, tag_name => 'form',
6862                             line => $token->{line}, column => $token->{column}};
6863            !!!back-token (@tokens);            !!!back-token (@tokens);
6864            redo B;            !!!next-token;
6865              next B;
6866          }          }
6867        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
6868          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
6869          my $el;          my $el;
6870          !!!create-element ($el, $token->{tag_name}, $token->{attributes});          !!!create-element ($el, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
6871                    
6872          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
6873          $self->{content_model} = RCDATA_CONTENT_MODEL;          $self->{content_model} = RCDATA_CONTENT_MODEL;
# Line 5403  sub _tree_construction_main ($) { Line 6876  sub _tree_construction_main ($) {
6876          $insert->($el);          $insert->($el);
6877                    
6878          my $text = '';          my $text = '';
6879            !!!nack ('t392.1');
6880          !!!next-token;          !!!next-token;
6881          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
6882            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
6883            unless (length $token->{data}) {            unless (length $token->{data}) {
6884                !!!cp ('t392');
6885              !!!next-token;              !!!next-token;
6886              } else {
6887                !!!cp ('t393');
6888            }            }
6889            } else {
6890              !!!cp ('t394');
6891          }          }
6892          while ($token->{type} == CHARACTER_TOKEN) {          while ($token->{type} == CHARACTER_TOKEN) {
6893              !!!cp ('t395');
6894            $text .= $token->{data};            $text .= $token->{data};
6895            !!!next-token;            !!!next-token;
6896          }          }
6897          if (length $text) {          if (length $text) {
6898              !!!cp ('t396');
6899            $el->manakai_append_text ($text);            $el->manakai_append_text ($text);
6900          }          }
6901                    
# Line 5422  sub _tree_construction_main ($) { Line 6903  sub _tree_construction_main ($) {
6903                    
6904          if ($token->{type} == END_TAG_TOKEN and          if ($token->{type} == END_TAG_TOKEN and
6905              $token->{tag_name} eq $tag_name) {              $token->{tag_name} eq $tag_name) {
6906              !!!cp ('t397');
6907            ## Ignore the token            ## Ignore the token
6908          } else {          } else {
6909            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!cp ('t398');
6910              !!!parse-error (type => 'in RCDATA:#eof', token => $token);
6911          }          }
6912          !!!next-token;          !!!next-token;
6913            next B;
6914          } elsif ($token->{tag_name} eq 'rt' or
6915                   $token->{tag_name} eq 'rp') {
6916            ## has a |ruby| element in scope
6917            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6918              my $node = $self->{open_elements}->[$_];
6919              if ($node->[1] & RUBY_EL) {
6920                !!!cp ('t398.1');
6921                ## generate implied end tags
6922                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
6923                  !!!cp ('t398.2');
6924                  pop @{$self->{open_elements}};
6925                }
6926                unless ($self->{open_elements}->[-1]->[1] & RUBY_EL) {
6927                  !!!cp ('t398.3');
6928                  !!!parse-error (type => 'not closed',
6929                                  text => $self->{open_elements}->[-1]->[0]
6930                                      ->manakai_local_name,
6931                                  token => $token);
6932                  pop @{$self->{open_elements}}
6933                      while not $self->{open_elements}->[-1]->[1] & RUBY_EL;
6934                }
6935                last INSCOPE;
6936              } elsif ($node->[1] & SCOPING_EL) {
6937                !!!cp ('t398.4');
6938                last INSCOPE;
6939              }
6940            } # INSCOPE
6941    
6942            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6943    
6944            !!!nack ('t398.5');
6945            !!!next-token;
6946          redo B;          redo B;
6947        } elsif ({        } elsif ($token->{tag_name} eq 'math' or
6948                  iframe => 1,                 $token->{tag_name} eq 'svg') {
                 noembed => 1,  
                 noframes => 1,  
                 noscript => 0, ## TODO: 1 if scripting is enabled  
                }->{$token->{tag_name}}) {  
         ## NOTE: There is an "as if in body" code clone.  
         $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);  
         redo B;  
       } elsif ($token->{tag_name} eq 'select') {  
6949          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6950    
6951            ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
6952    
6953            ## "adjust foreign attributes" - done in insert-element-f
6954                    
6955          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
6956                    
6957          $self->{insertion_mode} = IN_SELECT_IM;          if ($self->{self_closing}) {
6958              pop @{$self->{open_elements}};
6959              !!!ack ('t398.1');
6960            } else {
6961              !!!cp ('t398.2');
6962              $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
6963              ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
6964              ## mode, "in body" (not "in foreign content") secondary insertion
6965              ## mode, maybe.
6966            }
6967    
6968          !!!next-token;          !!!next-token;
6969          redo B;          next B;
6970        } elsif ({        } elsif ({
6971                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
6972                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
6973                  tbody => 1, td => 1, tfoot => 1, th => 1,                  tbody => 1, td => 1, tfoot => 1, th => 1,
6974                  thead => 1, tr => 1,                  thead => 1, tr => 1,
6975                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6976          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!cp ('t401');
6977            !!!parse-error (type => 'in body',
6978                            text => $token->{tag_name}, token => $token);
6979          ## Ignore the token          ## Ignore the token
6980            !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
6981          !!!next-token;          !!!next-token;
6982          redo B;          next B;
6983                    
6984          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
6985        } else {        } else {
6986            if ($token->{tag_name} eq 'image') {
6987              !!!cp ('t384');
6988              !!!parse-error (type => 'image', token => $token);
6989              $token->{tag_name} = 'img';
6990            } else {
6991              !!!cp ('t385');
6992            }
6993    
6994            ## NOTE: There is an "as if <br>" code clone.
6995          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6996                    
6997          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6998    
6999            if ({
7000                 applet => 1, marquee => 1, object => 1,
7001                }->{$token->{tag_name}}) {
7002              !!!cp ('t380');
7003              push @$active_formatting_elements, ['#marker', ''];
7004              !!!nack ('t380.1');
7005            } elsif ({
7006                      b => 1, big => 1, em => 1, font => 1, i => 1,
7007                      s => 1, small => 1, strile => 1,
7008                      strong => 1, tt => 1, u => 1,
7009                     }->{$token->{tag_name}}) {
7010              !!!cp ('t375');
7011              push @$active_formatting_elements, $self->{open_elements}->[-1];
7012              !!!nack ('t375.1');
7013            } elsif ($token->{tag_name} eq 'input') {
7014              !!!cp ('t388');
7015              ## TODO: associate with $self->{form_element} if defined
7016              pop @{$self->{open_elements}};
7017              !!!ack ('t388.2');
7018            } elsif ({
7019                      area => 1, basefont => 1, bgsound => 1, br => 1,
7020                      embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
7021                      #image => 1,
7022                     }->{$token->{tag_name}}) {
7023              !!!cp ('t388.1');
7024              pop @{$self->{open_elements}};
7025              !!!ack ('t388.3');
7026            } elsif ($token->{tag_name} eq 'select') {
7027              ## TODO: associate with $self->{form_element} if defined
7028            
7029              if ($self->{insertion_mode} & TABLE_IMS or
7030                  $self->{insertion_mode} & BODY_TABLE_IMS or
7031                  $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
7032                !!!cp ('t400.1');
7033                $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
7034              } else {
7035                !!!cp ('t400.2');
7036                $self->{insertion_mode} = IN_SELECT_IM;
7037              }
7038              !!!nack ('t400.3');
7039            } else {
7040              !!!nack ('t402');
7041            }
7042                    
7043          !!!next-token;          !!!next-token;
7044          redo B;          next B;
7045        }        }
7046      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
7047        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
7048          if (@{$self->{open_elements}} > 1 and          ## has a |body| element in scope
7049              $self->{open_elements}->[1]->[1] eq 'body') {          my $i;
7050            for (@{$self->{open_elements}}) {          INSCOPE: {
7051              unless ({            for (reverse @{$self->{open_elements}}) {
7052                         dd => 1, dt => 1, li => 1, p => 1, td => 1,              if ($_->[1] & BODY_EL) {
7053                         th => 1, tr => 1, body => 1, html => 1,                !!!cp ('t405');
7054                       tbody => 1, tfoot => 1, thead => 1,                $i = $_;
7055                      }->{$_->[1]}) {                last INSCOPE;
7056                !!!parse-error (type => 'not closed:'.$_->[1]);              } elsif ($_->[1] & SCOPING_EL) {
7057                  !!!cp ('t405.1');
7058                  last;
7059              }              }
7060            }            }
7061    
7062            $self->{insertion_mode} = AFTER_BODY_IM;            !!!parse-error (type => 'start tag not allowed',
7063            !!!next-token;                            text => $token->{tag_name}, token => $token);
7064            redo B;            ## NOTE: Ignore the token.
         } else {  
           !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
           ## Ignore the token  
7065            !!!next-token;            !!!next-token;
7066            redo B;            next B;
7067            } # INSCOPE
7068    
7069            for (@{$self->{open_elements}}) {
7070              unless ($_->[1] & ALL_END_TAG_OPTIONAL_EL) {
7071                !!!cp ('t403');
7072                !!!parse-error (type => 'not closed',
7073                                text => $_->[0]->manakai_local_name,
7074                                token => $token);
7075                last;
7076              } else {
7077                !!!cp ('t404');
7078              }
7079          }          }
7080    
7081            $self->{insertion_mode} = AFTER_BODY_IM;
7082            !!!next-token;
7083            next B;
7084        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
7085          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
7086            ## up-to-date, though it has same effect as speced.
7087            if (@{$self->{open_elements}} > 1 and
7088                $self->{open_elements}->[1]->[1] & BODY_EL) {
7089            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
7090            if ($self->{open_elements}->[-1]->[1] ne 'body') {            unless ($self->{open_elements}->[-1]->[1] & BODY_EL) {
7091              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!cp ('t406');
7092                !!!parse-error (type => 'not closed',
7093                                text => $self->{open_elements}->[1]->[0]
7094                                    ->manakai_local_name,
7095                                token => $token);
7096              } else {
7097                !!!cp ('t407');
7098            }            }
7099            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
7100            ## reprocess            ## reprocess
7101            redo B;            next B;
7102          } else {          } else {
7103            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!cp ('t408');
7104              !!!parse-error (type => 'unmatched end tag',
7105                              text => $token->{tag_name}, token => $token);
7106            ## Ignore the token            ## Ignore the token
7107            !!!next-token;            !!!next-token;
7108            redo B;            next B;
7109          }          }
7110        } elsif ({        } elsif ({
7111                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
7112                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1, listing => 1,
7113                  menu => 1, ol => 1, pre => 1, ul => 1,                  menu => 1, ol => 1, pre => 1, ul => 1,
                 p => 1,  
7114                  dd => 1, dt => 1, li => 1,                  dd => 1, dt => 1, li => 1,
7115                  button => 1, marquee => 1, object => 1,                  applet => 1, button => 1, marquee => 1, object => 1,
7116                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7117          ## has an element in scope          ## has an element in scope
7118          my $i;          my $i;
7119          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7120            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7121            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7122              ## generate implied end tags              !!!cp ('t410');
             if ({  
                  dd => ($token->{tag_name} ne 'dd'),  
                  dt => ($token->{tag_name} ne 'dt'),  
                  li => ($token->{tag_name} ne 'li'),  
                  p => ($token->{tag_name} ne 'p'),  
                  td => 1, th => 1, tr => 1,  
                  tbody => 1, tfoot=> 1, thead => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => END_TAG_TOKEN,  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               redo B;  
             }  
7123              $i = $_;              $i = $_;
7124              last INSCOPE unless $token->{tag_name} eq 'p';              last INSCOPE;
7125            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
7126                      table => 1, caption => 1, td => 1, th => 1,              !!!cp ('t411');
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7127              last INSCOPE;              last INSCOPE;
7128            }            }
7129          } # INSCOPE          } # INSCOPE
7130            
7131          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          unless (defined $i) { # has an element in scope
7132            if (defined $i) {            !!!cp ('t413');
7133              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            !!!parse-error (type => 'unmatched end tag',
7134                              text => $token->{tag_name}, token => $token);
7135            } else {
7136              ## Step 1. generate implied end tags
7137              while ({
7138                      ## END_TAG_OPTIONAL_EL
7139                      dd => ($token->{tag_name} ne 'dd'),
7140                      dt => ($token->{tag_name} ne 'dt'),
7141                      li => ($token->{tag_name} ne 'li'),
7142                      p => 1,
7143                      rt => 1,
7144                      rp => 1,
7145                     }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
7146                !!!cp ('t409');
7147                pop @{$self->{open_elements}};
7148              }
7149    
7150              ## Step 2.
7151              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7152                      ne $token->{tag_name}) {
7153                !!!cp ('t412');
7154                !!!parse-error (type => 'not closed',
7155                                text => $self->{open_elements}->[-1]->[0]
7156                                    ->manakai_local_name,
7157                                token => $token);
7158            } else {            } else {
7159              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t414');
7160            }            }
7161          }  
7162                      ## Step 3.
         if (defined $i) {  
7163            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
7164          } elsif ($token->{tag_name} eq 'p') {  
7165            ## As if <p>, then reprocess the current token            ## Step 4.
7166            my $el;            $clear_up_to_marker->()
7167            !!!create-element ($el, 'p');                if {
7168            $insert->($el);                  applet => 1, button => 1, marquee => 1, object => 1,
7169                  }->{$token->{tag_name}};
7170          }          }
         $clear_up_to_marker->()  
           if {  
             button => 1, marquee => 1, object => 1,  
           }->{$token->{tag_name}};  
7171          !!!next-token;          !!!next-token;
7172          redo B;          next B;
7173        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
7174            undef $self->{form_element};
7175    
7176          ## has an element in scope          ## has an element in scope
7177            my $i;
7178          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7179            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7180            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] & FORM_EL) {
7181              ## generate implied end tags              !!!cp ('t418');
7182              if ({              $i = $_;
                  dd => 1, dt => 1, li => 1, p => 1,  
                  td => 1, th => 1, tr => 1,  
                  tbody => 1, tfoot=> 1, thead => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => END_TAG_TOKEN,  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               redo B;  
             }  
7183              last INSCOPE;              last INSCOPE;
7184            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
7185                      table => 1, caption => 1, td => 1, th => 1,              !!!cp ('t419');
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7186              last INSCOPE;              last INSCOPE;
7187            }            }
7188          } # INSCOPE          } # INSCOPE
7189            
7190          if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {          unless (defined $i) { # has an element in scope
7191            pop @{$self->{open_elements}};            !!!cp ('t421');
7192          } else {            !!!parse-error (type => 'unmatched end tag',
7193            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                            text => $token->{tag_name}, token => $token);
7194            } else {
7195              ## Step 1. generate implied end tags
7196              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
7197                !!!cp ('t417');
7198                pop @{$self->{open_elements}};
7199              }
7200              
7201              ## Step 2.
7202              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7203                      ne $token->{tag_name}) {
7204                !!!cp ('t417.1');
7205                !!!parse-error (type => 'not closed',
7206                                text => $self->{open_elements}->[-1]->[0]
7207                                    ->manakai_local_name,
7208                                token => $token);
7209              } else {
7210                !!!cp ('t420');
7211              }  
7212              
7213              ## Step 3.
7214              splice @{$self->{open_elements}}, $i;
7215          }          }
7216    
         undef $self->{form_element};  
7217          !!!next-token;          !!!next-token;
7218          redo B;          next B;
7219        } elsif ({        } elsif ({
7220                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
7221                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
# Line 5603  sub _tree_construction_main ($) { Line 7223  sub _tree_construction_main ($) {
7223          my $i;          my $i;
7224          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7225            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
7226            if ({            if ($node->[1] & HEADING_EL) {
7227                 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,              !!!cp ('t423');
               }->{$node->[1]}) {  
             ## generate implied end tags  
             if ({  
                  dd => 1, dt => 1, li => 1, p => 1,  
                  td => 1, th => 1, tr => 1,  
                  tbody => 1, tfoot=> 1, thead => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => END_TAG_TOKEN,  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               redo B;  
             }  
7228              $i = $_;              $i = $_;
7229              last INSCOPE;              last INSCOPE;
7230            } elsif ({            } elsif ($node->[1] & SCOPING_EL) {
7231                      table => 1, caption => 1, td => 1, th => 1,              !!!cp ('t424');
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
7232              last INSCOPE;              last INSCOPE;
7233            }            }
7234          } # INSCOPE          } # INSCOPE
7235            
7236          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          unless (defined $i) { # has an element in scope
7237            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!cp ('t425.1');
7238              !!!parse-error (type => 'unmatched end tag',
7239                              text => $token->{tag_name}, token => $token);
7240            } else {
7241              ## Step 1. generate implied end tags
7242              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
7243                !!!cp ('t422');
7244                pop @{$self->{open_elements}};
7245              }
7246              
7247              ## Step 2.
7248              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7249                      ne $token->{tag_name}) {
7250                !!!cp ('t425');
7251                !!!parse-error (type => 'unmatched end tag',
7252                                text => $token->{tag_name}, token => $token);
7253              } else {
7254                !!!cp ('t426');
7255              }
7256    
7257              ## Step 3.
7258              splice @{$self->{open_elements}}, $i;
7259          }          }
7260                    
         splice @{$self->{open_elements}}, $i if defined $i;  
7261          !!!next-token;          !!!next-token;
7262          redo B;          next B;
7263          } elsif ($token->{tag_name} eq 'p') {
7264            ## has an element in scope
7265            my $i;
7266            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
7267              my $node = $self->{open_elements}->[$_];
7268              if ($node->[1] & P_EL) {
7269                !!!cp ('t410.1');
7270                $i = $_;
7271                last INSCOPE;
7272              } elsif ($node->[1] & SCOPING_EL) {
7273                !!!cp ('t411.1');
7274                last INSCOPE;
7275              }
7276            } # INSCOPE
7277    
7278            if (defined $i) {
7279              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7280                      ne $token->{tag_name}) {
7281                !!!cp ('t412.1');
7282                !!!parse-error (type => 'not closed',
7283                                text => $self->{open_elements}->[-1]->[0]
7284                                    ->manakai_local_name,
7285                                token => $token);
7286              } else {
7287                !!!cp ('t414.1');
7288              }
7289    
7290              splice @{$self->{open_elements}}, $i;
7291            } else {
7292              !!!cp ('t413.1');
7293              !!!parse-error (type => 'unmatched end tag',
7294                              text => $token->{tag_name}, token => $token);
7295    
7296              !!!cp ('t415.1');
7297              ## As if <p>, then reprocess the current token
7298              my $el;
7299              !!!create-element ($el, $HTML_NS, 'p',, $token);
7300              $insert->($el);
7301              ## NOTE: Not inserted into |$self->{open_elements}|.
7302            }
7303    
7304            !!!next-token;
7305            next B;
7306        } elsif ({        } elsif ({
7307                  a => 1,                  a => 1,
7308                  b => 1, big => 1, em => 1, font => 1, i => 1,                  b => 1, big => 1, em => 1, font => 1, i => 1,
7309                  nobr => 1, s => 1, small => 1, strile => 1,                  nobr => 1, s => 1, small => 1, strile => 1,
7310                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
7311                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7312          $formatting_end_tag->($token->{tag_name});          !!!cp ('t427');
7313          redo B;          $formatting_end_tag->($token);
7314            next B;
7315        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
7316          !!!parse-error (type => 'unmatched end tag:br');          !!!cp ('t428');
7317            !!!parse-error (type => 'unmatched end tag',
7318                            text => 'br', token => $token);
7319    
7320          ## As if <br>          ## As if <br>
7321          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
7322                    
7323          my $el;          my $el;
7324          !!!create-element ($el, 'br');          !!!create-element ($el, $HTML_NS, 'br',, $token);
7325          $insert->($el);          $insert->($el);
7326                    
7327          ## Ignore the token.          ## Ignore the token.
7328          !!!next-token;          !!!next-token;
7329          redo B;          next B;
7330        } elsif ({        } elsif ({
7331                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
7332                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
# Line 5667  sub _tree_construction_main ($) { Line 7339  sub _tree_construction_main ($) {
7339                  table => 1, textarea => 1, wbr => 1,                  table => 1, textarea => 1, wbr => 1,
7340                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
7341                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
7342          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!cp ('t429');
7343            !!!parse-error (type => 'unmatched end tag',
7344                            text => $token->{tag_name}, token => $token);
7345          ## Ignore the token          ## Ignore the token
7346          !!!next-token;          !!!next-token;
7347          redo B;          next B;
7348                    
7349          ## ISSUE: Issue on HTML5 new elements in spec          ## ISSUE: Issue on HTML5 new elements in spec
7350                    
# Line 5681  sub _tree_construction_main ($) { Line 7355  sub _tree_construction_main ($) {
7355    
7356          ## Step 2          ## Step 2
7357          S2: {          S2: {
7358            if ($node->[1] eq $token->{tag_name}) {            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
7359              ## Step 1              ## Step 1
7360              ## generate implied end tags              ## generate implied end tags
7361              if ({              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
7362                   dd => 1, dt => 1, li => 1, p => 1,                !!!cp ('t430');
7363                   td => 1, th => 1, tr => 1,                ## NOTE: |<ruby><rt></ruby>|.
7364                   tbody => 1, tfoot => 1, thead => 1,                ## ISSUE: <ruby><rt></rt> will also take this code path,
7365                  }->{$self->{open_elements}->[-1]->[1]}) {                ## which seems wrong.
7366                !!!back-token;                pop @{$self->{open_elements}};
7367                $token = {type => END_TAG_TOKEN,                $node_i++;
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               redo B;  
7368              }              }
7369                    
7370              ## Step 2              ## Step 2
7371              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
7372                        ne $token->{tag_name}) {
7373                  !!!cp ('t431');
7374                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
7375                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
7376                                  text => $self->{open_elements}->[-1]->[0]
7377                                      ->manakai_local_name,
7378                                  token => $token);
7379                } else {
7380                  !!!cp ('t432');
7381              }              }
7382                            
7383              ## Step 3              ## Step 3
7384              splice @{$self->{open_elements}}, $node_i;              splice @{$self->{open_elements}}, $node_i if $node_i < 0;
7385    
7386              !!!next-token;              !!!next-token;
7387              last S2;              last S2;
7388            } else {            } else {
7389              ## Step 3              ## Step 3
7390              if (not $formatting_category->{$node->[1]} and              if (not ($node->[1] & FORMATTING_EL) and
7391                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
7392                  ($special_category->{$node->[1]} or                  ($node->[1] & SPECIAL_EL or
7393                   $scoping_category->{$node->[1]})) {                   $node->[1] & SCOPING_EL)) {
7394                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t433');
7395                  !!!parse-error (type => 'unmatched end tag',
7396                                  text => $token->{tag_name}, token => $token);
7397                ## Ignore the token                ## Ignore the token
7398                !!!next-token;                !!!next-token;
7399                last S2;                last S2;
7400              }              }
7401    
7402                !!!cp ('t434');
7403            }            }
7404                        
7405            ## Step 4            ## Step 4
# Line 5726  sub _tree_construction_main ($) { Line 7409  sub _tree_construction_main ($) {
7409            ## Step 5;            ## Step 5;
7410            redo S2;            redo S2;
7411          } # S2          } # S2
7412          redo B;          next B;
7413        }        }
7414      }      }
7415      redo B;      next B;
7416      } continue { # B
7417        if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
7418          ## NOTE: The code below is executed in cases where it does not have
7419          ## to be, but it it is harmless even in those cases.
7420          ## has an element in scope
7421          INSCOPE: {
7422            for (reverse 0..$#{$self->{open_elements}}) {
7423              my $node = $self->{open_elements}->[$_];
7424              if ($node->[1] & FOREIGN_EL) {
7425                last INSCOPE;
7426              } elsif ($node->[1] & SCOPING_EL) {
7427                last;
7428              }
7429            }
7430            
7431            ## NOTE: No foreign element in scope.
7432            $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
7433          } # INSCOPE
7434        }
7435    } # B    } # B
7436    
   ## NOTE: The "trailing end" phase in HTML5 is split into  
   ## two insertion modes: "after html body" and "after html frameset".  
   ## NOTE: States in the main stage is preserved while  
   ## the parser stays in the trailing end phase. # MUST  
   
7437    ## Stop parsing # MUST    ## Stop parsing # MUST
7438        
7439    ## TODO: script stuffs    ## TODO: script stuffs
# Line 5778  sub set_inner_html ($$$) { Line 7475  sub set_inner_html ($$$) {
7475      my $p = $class->new;      my $p = $class->new;
7476      $p->{document} = $doc;      $p->{document} = $doc;
7477    
7478      ## Step 9 # MUST      ## Step 8 # MUST
7479      my $i = 0;      my $i = 0;
7480      my $line = 1;      $p->{line_prev} = $p->{line} = 1;
7481      my $column = 0;      $p->{column_prev} = $p->{column} = 0;
7482      $p->{set_next_char} = sub {      $p->{set_next_char} = sub {
7483        my $self = shift;        my $self = shift;
7484    
# Line 5790  sub set_inner_html ($$$) { Line 7487  sub set_inner_html ($$$) {
7487    
7488        $self->{next_char} = -1 and return if $i >= length $$s;        $self->{next_char} = -1 and return if $i >= length $$s;
7489        $self->{next_char} = ord substr $$s, $i++, 1;        $self->{next_char} = ord substr $$s, $i++, 1;
7490        $column++;  
7491          ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
7492          $p->{column}++;
7493    
7494        if ($self->{next_char} == 0x000A) { # LF        if ($self->{next_char} == 0x000A) { # LF
7495          $line++;          $p->{line}++;
7496          $column = 0;          $p->{column} = 0;
7497            !!!cp ('i1');
7498        } elsif ($self->{next_char} == 0x000D) { # CR        } elsif ($self->{next_char} == 0x000D) { # CR
7499          $i++ if substr ($$s, $i, 1) eq "\x0A";          $i++ if substr ($$s, $i, 1) eq "\x0A";
7500          $self->{next_char} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
7501          $line++;          $p->{line}++;
7502          $column = 0;          $p->{column} = 0;
7503            !!!cp ('i2');
7504        } elsif ($self->{next_char} > 0x10FFFF) {        } elsif ($self->{next_char} > 0x10FFFF) {
7505          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
7506            !!!cp ('i3');
7507        } elsif ($self->{next_char} == 0x0000) { # NULL        } elsif ($self->{next_char} == 0x0000) { # NULL
7508            !!!cp ('i4');
7509          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
7510          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
7511          } elsif ($self->{next_char} <= 0x0008 or
7512                   (0x000E <= $self->{next_char} and
7513                    $self->{next_char} <= 0x001F) or
7514                   (0x007F <= $self->{next_char} and
7515                    $self->{next_char} <= 0x009F) or
7516                   (0xD800 <= $self->{next_char} and
7517                    $self->{next_char} <= 0xDFFF) or
7518                   (0xFDD0 <= $self->{next_char} and
7519                    $self->{next_char} <= 0xFDDF) or
7520                   {
7521                    0xFFFE => 1, 0xFFFF => 1, 0x1FFFE => 1, 0x1FFFF => 1,
7522                    0x2FFFE => 1, 0x2FFFF => 1, 0x3FFFE => 1, 0x3FFFF => 1,
7523                    0x4FFFE => 1, 0x4FFFF => 1, 0x5FFFE => 1, 0x5FFFF => 1,
7524                    0x6FFFE => 1, 0x6FFFF => 1, 0x7FFFE => 1, 0x7FFFF => 1,
7525                    0x8FFFE => 1, 0x8FFFF => 1, 0x9FFFE => 1, 0x9FFFF => 1,
7526                    0xAFFFE => 1, 0xAFFFF => 1, 0xBFFFE => 1, 0xBFFFF => 1,
7527                    0xCFFFE => 1, 0xCFFFF => 1, 0xDFFFE => 1, 0xDFFFF => 1,
7528                    0xEFFFE => 1, 0xEFFFF => 1, 0xFFFFE => 1, 0xFFFFF => 1,
7529                    0x10FFFE => 1, 0x10FFFF => 1,
7530                   }->{$self->{next_char}}) {
7531            !!!cp ('i4.1');
7532            if ($self->{next_char} < 0x10000) {
7533              !!!parse-error (type => 'control char',
7534                              text => (sprintf 'U+%04X', $self->{next_char}));
7535            } else {
7536              !!!parse-error (type => 'control char',
7537                              text => (sprintf 'U-%08X', $self->{next_char}));
7538            }
7539        }        }
7540      };      };
7541      $p->{prev_char} = [-1, -1, -1];      $p->{prev_char} = [-1, -1, -1];
# Line 5812  sub set_inner_html ($$$) { Line 7543  sub set_inner_html ($$$) {
7543            
7544      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
7545        my (%opt) = @_;        my (%opt) = @_;
7546        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";        my $line = $opt{line};
7547          my $column = $opt{column};
7548          if (defined $opt{token} and defined $opt{token}->{line}) {
7549            $line = $opt{token}->{line};
7550            $column = $opt{token}->{column};
7551          }
7552          warn "Parse error ($opt{type}) at line $line column $column\n";
7553      };      };
7554      $p->{parse_error} = sub {      $p->{parse_error} = sub {
7555        $ponerror->(@_, line => $line, column => $column);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
7556      };      };
7557            
7558      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
# Line 5839  sub set_inner_html ($$$) { Line 7576  sub set_inner_html ($$$) {
7576          unless defined $p->{content_model};          unless defined $p->{content_model};
7577          ## ISSUE: What is "the name of the element"? local name?          ## ISSUE: What is "the name of the element"? local name?
7578    
7579      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
7580          ## TODO: Foreign element OK?
7581    
7582      ## Step 4      ## Step 3
7583      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
7584        ('http://www.w3.org/1999/xhtml', [undef, 'html']);        ('http://www.w3.org/1999/xhtml', [undef, 'html']);
7585    
7586      ## Step 5 # MUST      ## Step 4 # MUST
7587      $doc->append_child ($root);      $doc->append_child ($root);
7588    
7589      ## Step 6 # MUST      ## Step 5 # MUST
7590      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, $el_category->{html}];
7591    
7592      undef $p->{head_element};      undef $p->{head_element};
7593    
7594      ## Step 7 # MUST      ## Step 6 # MUST
7595      $p->_reset_insertion_mode;      $p->_reset_insertion_mode;
7596    
7597      ## Step 8 # MUST      ## Step 7 # MUST
7598      my $anode = $node;      my $anode = $node;
7599      AN: while (defined $anode) {      AN: while (defined $anode) {
7600        if ($anode->node_type == 1) {        if ($anode->node_type == 1) {
7601          my $nsuri = $anode->namespace_uri;          my $nsuri = $anode->namespace_uri;
7602          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
7603            if ($anode->manakai_local_name eq 'form') {            if ($anode->manakai_local_name eq 'form') {
7604                !!!cp ('i5');
7605              $p->{form_element} = $anode;              $p->{form_element} = $anode;
7606              last AN;              last AN;
7607            }            }
# Line 5871  sub set_inner_html ($$$) { Line 7610  sub set_inner_html ($$$) {
7610        $anode = $anode->parent_node;        $anode = $anode->parent_node;
7611      } # AN      } # AN
7612            
7613      ## Step 3 # MUST      ## Step 9 # MUST
     ## Step 10 # MUST  
7614      {      {
7615        my $self = $p;        my $self = $p;
7616        !!!next-token;        !!!next-token;
7617      }      }
7618      $p->_tree_construction_main;      $p->_tree_construction_main;
7619    
7620      ## Step 11 # MUST      ## Step 10 # MUST
7621      my @cn = @{$node->child_nodes};      my @cn = @{$node->child_nodes};
7622      for (@cn) {      for (@cn) {
7623        $node->remove_child ($_);        $node->remove_child ($_);
7624      }      }
7625      ## ISSUE: mutation events? read-only?      ## ISSUE: mutation events? read-only?
7626    
7627      ## Step 12 # MUST      ## Step 11 # MUST
7628      @cn = @{$root->child_nodes};      @cn = @{$root->child_nodes};
7629      for (@cn) {      for (@cn) {
7630        $this_doc->adopt_node ($_);        $this_doc->adopt_node ($_);
# Line 5895  sub set_inner_html ($$$) { Line 7633  sub set_inner_html ($$$) {
7633      ## ISSUE: mutation events?      ## ISSUE: mutation events?
7634    
7635      $p->_terminate_tree_constructor;      $p->_terminate_tree_constructor;
7636    
7637        delete $p->{parse_error}; # delete loop
7638    } else {    } else {
7639      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";
7640    }    }

Legend:
Removed from v.1.77  
changed lines
  Added in v.1.154

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24