/[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.75 by wakaba, Mon Mar 3 00:13:22 2008 UTC revision 1.108 by wakaba, Mon Mar 10 10:55:57 2008 UTC
# Line 74  my $special_category = { Line 74  my $special_category = {
74    textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,    textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,
75  };  };
76  my $scoping_category = {  my $scoping_category = {
77    button => 1, caption => 1, html => 1, marquee => 1, object => 1,    applet => 1, button => 1, caption => 1, html => 1, marquee => 1, object => 1,
78    table => 1, td => 1, th => 1,    table => 1, td => 1, th => 1,
79  };  };
80  my $formatting_category = {  my $formatting_category = {
# Line 179  sub parse_string ($$$;$) { Line 179  sub parse_string ($$$;$) {
179    my $i = 0;    my $i = 0;
180    my $line = 1;    my $line = 1;
181    my $column = 0;    my $column = 0;
182    $self->{set_next_input_character} = sub {    $self->{set_next_char} = sub {
183      my $self = shift;      my $self = shift;
184    
185      pop @{$self->{prev_input_character}};      pop @{$self->{prev_char}};
186      unshift @{$self->{prev_input_character}}, $self->{next_input_character};      unshift @{$self->{prev_char}}, $self->{next_char};
187    
188      $self->{next_input_character} = -1 and return if $i >= length $$s;      $self->{next_char} = -1 and return if $i >= length $$s;
189      $self->{next_input_character} = ord substr $$s, $i++, 1;      $self->{next_char} = ord substr $$s, $i++, 1;
190      $column++;      $column++;
191            
192      if ($self->{next_input_character} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
193        $line++;        $line++;
194        $column = 0;        $column = 0;
195      } elsif ($self->{next_input_character} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
196        $i++ if substr ($$s, $i, 1) eq "\x0A";        $i++ if substr ($$s, $i, 1) eq "\x0A";
197        $self->{next_input_character} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
198        $line++;        $line++;
199        $column = 0;        $column = 0;
200      } elsif ($self->{next_input_character} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
201        $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
202      } elsif ($self->{next_input_character} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
203        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
204        $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
205      }      }
206    };    };
207    $self->{prev_input_character} = [-1, -1, -1];    $self->{prev_char} = [-1, -1, -1];
208    $self->{next_input_character} = -1;    $self->{next_char} = -1;
209    
210    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
211      my (%opt) = @_;      my (%opt) = @_;
# Line 226  sub parse_string ($$$;$) { Line 226  sub parse_string ($$$;$) {
226  sub new ($) {  sub new ($) {
227    my $class = shift;    my $class = shift;
228    my $self = bless {}, $class;    my $self = bless {}, $class;
229    $self->{set_next_input_character} = sub {    $self->{set_next_char} = sub {
230      $self->{next_input_character} = -1;      $self->{next_char} = -1;
231    };    };
232    $self->{parse_error} = sub {    $self->{parse_error} = sub {
233      #      #
# Line 303  sub TABLE_IMS ()      { 0b1000000 } Line 303  sub TABLE_IMS ()      { 0b1000000 }
303  sub ROW_IMS ()        { 0b10000000 }  sub ROW_IMS ()        { 0b10000000 }
304  sub BODY_AFTER_IMS () { 0b100000000 }  sub BODY_AFTER_IMS () { 0b100000000 }
305  sub FRAME_IMS ()      { 0b1000000000 }  sub FRAME_IMS ()      { 0b1000000000 }
306    sub SELECT_IMS ()     { 0b10000000000 }
307    
308    ## NOTE: "initial" and "before html" insertion modes have no constants.
309    
310    ## NOTE: "after after body" insertion mode.
311  sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }  sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
312    
313    ## NOTE: "after after frameset" insertion mode.
314  sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }  sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
315    
316  sub IN_HEAD_IM () { HEAD_IMS | 0b00 }  sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
317  sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }  sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
318  sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }  sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
# Line 319  sub IN_TABLE_IM () { TABLE_IMS } Line 326  sub IN_TABLE_IM () { TABLE_IMS }
326  sub AFTER_BODY_IM () { BODY_AFTER_IMS }  sub AFTER_BODY_IM () { BODY_AFTER_IMS }
327  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
328  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
329  sub IN_SELECT_IM () { 0b01 }  sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
330    sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
331  sub IN_COLUMN_GROUP_IM () { 0b10 }  sub IN_COLUMN_GROUP_IM () { 0b10 }
332    
333  ## Implementations MUST act as if state machine in the spec  ## Implementations MUST act as if state machine in the spec
# Line 333  sub _initialize_tokenizer ($) { Line 341  sub _initialize_tokenizer ($) {
341    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
342    undef $self->{last_attribute_value_state};    undef $self->{last_attribute_value_state};
343    $self->{char} = [];    $self->{char} = [];
344    # $self->{next_input_character}    # $self->{next_char}
345    !!!next-input-character;    !!!next-input-character;
346    $self->{token} = [];    $self->{token} = [];
347    # $self->{escape}    # $self->{escape}
# Line 384  sub _get_next_token ($) { Line 392  sub _get_next_token ($) {
392    
393    A: {    A: {
394      if ($self->{state} == DATA_STATE) {      if ($self->{state} == DATA_STATE) {
395        if ($self->{next_input_character} == 0x0026) { # &        if ($self->{next_char} == 0x0026) { # &
396          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA
397              not $self->{escape}) {              not $self->{escape}) {
398              !!!cp (1);
399            $self->{state} = ENTITY_DATA_STATE;            $self->{state} = ENTITY_DATA_STATE;
400            !!!next-input-character;            !!!next-input-character;
401            redo A;            redo A;
402          } else {          } else {
403              !!!cp (2);
404            #            #
405          }          }
406        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
407          if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA          if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
408            unless ($self->{escape}) {            unless ($self->{escape}) {
409              if ($self->{prev_input_character}->[0] == 0x002D and # -              if ($self->{prev_char}->[0] == 0x002D and # -
410                  $self->{prev_input_character}->[1] == 0x0021 and # !                  $self->{prev_char}->[1] == 0x0021 and # !
411                  $self->{prev_input_character}->[2] == 0x003C) { # <                  $self->{prev_char}->[2] == 0x003C) { # <
412                  !!!cp (3);
413                $self->{escape} = 1;                $self->{escape} = 1;
414                } else {
415                  !!!cp (4);
416              }              }
417              } else {
418                !!!cp (5);
419            }            }
420          }          }
421                    
422          #          #
423        } elsif ($self->{next_input_character} == 0x003C) { # <        } elsif ($self->{next_char} == 0x003C) { # <
424          if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA          if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA
425              (($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA              (($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA
426               not $self->{escape})) {               not $self->{escape})) {
427              !!!cp (6);
428            $self->{state} = TAG_OPEN_STATE;            $self->{state} = TAG_OPEN_STATE;
429            !!!next-input-character;            !!!next-input-character;
430            redo A;            redo A;
431          } else {          } else {
432              !!!cp (7);
433            #            #
434          }          }
435        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
436          if ($self->{escape} and          if ($self->{escape} and
437              ($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA              ($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA
438            if ($self->{prev_input_character}->[0] == 0x002D and # -            if ($self->{prev_char}->[0] == 0x002D and # -
439                $self->{prev_input_character}->[1] == 0x002D) { # -                $self->{prev_char}->[1] == 0x002D) { # -
440                !!!cp (8);
441              delete $self->{escape};              delete $self->{escape};
442              } else {
443                !!!cp (9);
444            }            }
445            } else {
446              !!!cp (10);
447          }          }
448                    
449          #          #
450        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
451            !!!cp (11);
452          !!!emit ({type => END_OF_FILE_TOKEN});          !!!emit ({type => END_OF_FILE_TOKEN});
453          last A; ## TODO: ok?          last A; ## TODO: ok?
454          } else {
455            !!!cp (12);
456        }        }
457        # Anything else        # Anything else
458        my $token = {type => CHARACTER_TOKEN,        my $token = {type => CHARACTER_TOKEN,
459                     data => chr $self->{next_input_character}};                     data => chr $self->{next_char}};
460        ## Stay in the data state        ## Stay in the data state
461        !!!next-input-character;        !!!next-input-character;
462    
# Line 447  sub _get_next_token ($) { Line 472  sub _get_next_token ($) {
472        # next-input-character is already done        # next-input-character is already done
473    
474        unless (defined $token) {        unless (defined $token) {
475            !!!cp (13);
476          !!!emit ({type => CHARACTER_TOKEN, data => '&'});          !!!emit ({type => CHARACTER_TOKEN, data => '&'});
477        } else {        } else {
478            !!!cp (14);
479          !!!emit ($token);          !!!emit ($token);
480        }        }
481    
482        redo A;        redo A;
483      } elsif ($self->{state} == TAG_OPEN_STATE) {      } elsif ($self->{state} == TAG_OPEN_STATE) {
484        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
485          if ($self->{next_input_character} == 0x002F) { # /          if ($self->{next_char} == 0x002F) { # /
486              !!!cp (15);
487            !!!next-input-character;            !!!next-input-character;
488            $self->{state} = CLOSE_TAG_OPEN_STATE;            $self->{state} = CLOSE_TAG_OPEN_STATE;
489            redo A;            redo A;
490          } else {          } else {
491              !!!cp (16);
492            ## reconsume            ## reconsume
493            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
494    
# Line 468  sub _get_next_token ($) { Line 497  sub _get_next_token ($) {
497            redo A;            redo A;
498          }          }
499        } elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA        } elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA
500          if ($self->{next_input_character} == 0x0021) { # !          if ($self->{next_char} == 0x0021) { # !
501              !!!cp (17);
502            $self->{state} = MARKUP_DECLARATION_OPEN_STATE;            $self->{state} = MARKUP_DECLARATION_OPEN_STATE;
503            !!!next-input-character;            !!!next-input-character;
504            redo A;            redo A;
505          } elsif ($self->{next_input_character} == 0x002F) { # /          } elsif ($self->{next_char} == 0x002F) { # /
506              !!!cp (18);
507            $self->{state} = CLOSE_TAG_OPEN_STATE;            $self->{state} = CLOSE_TAG_OPEN_STATE;
508            !!!next-input-character;            !!!next-input-character;
509            redo A;            redo A;
510          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
511                   $self->{next_input_character} <= 0x005A) { # A..Z                   $self->{next_char} <= 0x005A) { # A..Z
512              !!!cp (19);
513            $self->{current_token}            $self->{current_token}
514              = {type => START_TAG_TOKEN,              = {type => START_TAG_TOKEN,
515                 tag_name => chr ($self->{next_input_character} + 0x0020)};                 tag_name => chr ($self->{next_char} + 0x0020)};
516            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
517            !!!next-input-character;            !!!next-input-character;
518            redo A;            redo A;
519          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
520                   $self->{next_input_character} <= 0x007A) { # a..z                   $self->{next_char} <= 0x007A) { # a..z
521              !!!cp (20);
522            $self->{current_token} = {type => START_TAG_TOKEN,            $self->{current_token} = {type => START_TAG_TOKEN,
523                              tag_name => chr ($self->{next_input_character})};                              tag_name => chr ($self->{next_char})};
524            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
525            !!!next-input-character;            !!!next-input-character;
526            redo A;            redo A;
527          } elsif ($self->{next_input_character} == 0x003E) { # >          } elsif ($self->{next_char} == 0x003E) { # >
528              !!!cp (21);
529            !!!parse-error (type => 'empty start tag');            !!!parse-error (type => 'empty start tag');
530            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
531            !!!next-input-character;            !!!next-input-character;
# Line 499  sub _get_next_token ($) { Line 533  sub _get_next_token ($) {
533            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});
534    
535            redo A;            redo A;
536          } elsif ($self->{next_input_character} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
537              !!!cp (22);
538            !!!parse-error (type => 'pio');            !!!parse-error (type => 'pio');
539            $self->{state} = BOGUS_COMMENT_STATE;            $self->{state} = BOGUS_COMMENT_STATE;
540            ## $self->{next_input_character} is intentionally left as is            ## $self->{next_char} is intentionally left as is
541            redo A;            redo A;
542          } else {          } else {
543              !!!cp (23);
544            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago');
545            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
546            ## reconsume            ## reconsume
# Line 522  sub _get_next_token ($) { Line 558  sub _get_next_token ($) {
558            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
559            my @next_char;            my @next_char;
560            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++) {
561              push @next_char, $self->{next_input_character};              push @next_char, $self->{next_char};
562              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);
563              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;
564              if ($self->{next_input_character} == $c or $self->{next_input_character} == $C) {              if ($self->{next_char} == $c or $self->{next_char} == $C) {
565                  !!!cp (24);
566                !!!next-input-character;                !!!next-input-character;
567                next TAGNAME;                next TAGNAME;
568              } else {              } else {
569                $self->{next_input_character} = shift @next_char; # reconsume                !!!cp (25);
570                  $self->{next_char} = shift @next_char; # reconsume
571                !!!back-next-input-character (@next_char);                !!!back-next-input-character (@next_char);
572                $self->{state} = DATA_STATE;                $self->{state} = DATA_STATE;
573    
# Line 538  sub _get_next_token ($) { Line 576  sub _get_next_token ($) {
576                redo A;                redo A;
577              }              }
578            }            }
579            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
580                
581            unless ($self->{next_input_character} == 0x0009 or # HT            unless ($self->{next_char} == 0x0009 or # HT
582                    $self->{next_input_character} == 0x000A or # LF                    $self->{next_char} == 0x000A or # LF
583                    $self->{next_input_character} == 0x000B or # VT                    $self->{next_char} == 0x000B or # VT
584                    $self->{next_input_character} == 0x000C or # FF                    $self->{next_char} == 0x000C or # FF
585                    $self->{next_input_character} == 0x0020 or # SP                    $self->{next_char} == 0x0020 or # SP
586                    $self->{next_input_character} == 0x003E or # >                    $self->{next_char} == 0x003E or # >
587                    $self->{next_input_character} == 0x002F or # /                    $self->{next_char} == 0x002F or # /
588                    $self->{next_input_character} == -1) {                    $self->{next_char} == -1) {
589              $self->{next_input_character} = shift @next_char; # reconsume              !!!cp (26);
590                $self->{next_char} = shift @next_char; # reconsume
591              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
592              $self->{state} = DATA_STATE;              $self->{state} = DATA_STATE;
593              !!!emit ({type => CHARACTER_TOKEN, data => '</'});              !!!emit ({type => CHARACTER_TOKEN, data => '</'});
594              redo A;              redo A;
595            } else {            } else {
596              $self->{next_input_character} = shift @next_char;              !!!cp (27);
597                $self->{next_char} = shift @next_char;
598              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
599              # and consume...              # and consume...
600            }            }
601          } else {          } else {
602            ## No start tag token has ever been emitted            ## No start tag token has ever been emitted
603              !!!cp (28);
604            # next-input-character is already done            # next-input-character is already done
605            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
606            !!!emit ({type => CHARACTER_TOKEN, data => '</'});            !!!emit ({type => CHARACTER_TOKEN, data => '</'});
# Line 567  sub _get_next_token ($) { Line 608  sub _get_next_token ($) {
608          }          }
609        }        }
610                
611        if (0x0041 <= $self->{next_input_character} and        if (0x0041 <= $self->{next_char} and
612            $self->{next_input_character} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
613            !!!cp (29);
614          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token} = {type => END_TAG_TOKEN,
615                            tag_name => chr ($self->{next_input_character} + 0x0020)};                            tag_name => chr ($self->{next_char} + 0x0020)};
616          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
617          !!!next-input-character;          !!!next-input-character;
618          redo A;          redo A;
619        } elsif (0x0061 <= $self->{next_input_character} and        } elsif (0x0061 <= $self->{next_char} and
620                 $self->{next_input_character} <= 0x007A) { # a..z                 $self->{next_char} <= 0x007A) { # a..z
621            !!!cp (30);
622          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token} = {type => END_TAG_TOKEN,
623                            tag_name => chr ($self->{next_input_character})};                            tag_name => chr ($self->{next_char})};
624          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
625          !!!next-input-character;          !!!next-input-character;
626          redo A;          redo A;
627        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
628            !!!cp (31);
629          !!!parse-error (type => 'empty end tag');          !!!parse-error (type => 'empty end tag');
630          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
631          !!!next-input-character;          !!!next-input-character;
632          redo A;          redo A;
633        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
634            !!!cp (32);
635          !!!parse-error (type => 'bare etago');          !!!parse-error (type => 'bare etago');
636          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
637          # reconsume          # reconsume
# Line 595  sub _get_next_token ($) { Line 640  sub _get_next_token ($) {
640    
641          redo A;          redo A;
642        } else {        } else {
643            !!!cp (33);
644          !!!parse-error (type => 'bogus end tag');          !!!parse-error (type => 'bogus end tag');
645          $self->{state} = BOGUS_COMMENT_STATE;          $self->{state} = BOGUS_COMMENT_STATE;
646          ## $self->{next_input_character} is intentionally left as is          ## $self->{next_char} is intentionally left as is
647          redo A;          redo A;
648        }        }
649      } elsif ($self->{state} == TAG_NAME_STATE) {      } elsif ($self->{state} == TAG_NAME_STATE) {
650        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
651            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
652            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
653            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
654            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
655            !!!cp (34);
656          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
657          !!!next-input-character;          !!!next-input-character;
658          redo A;          redo A;
659        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
660          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
661              !!!cp (35);
662            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
663                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
664            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
665          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
666            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
667            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
668              !!!parse-error (type => 'end tag attribute');            #  ## NOTE: This should never be reached.
669            }            #  !!! cp (36);
670              #  !!! parse-error (type => 'end tag attribute');
671              #} else {
672                !!!cp (37);
673              #}
674          } else {          } else {
675            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
676          }          }
# Line 628  sub _get_next_token ($) { Line 680  sub _get_next_token ($) {
680          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
681    
682          redo A;          redo A;
683        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
684                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
685          $self->{current_token}->{tag_name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (38);
686            $self->{current_token}->{tag_name} .= chr ($self->{next_char} + 0x0020);
687            # start tag or end tag            # start tag or end tag
688          ## Stay in this state          ## Stay in this state
689          !!!next-input-character;          !!!next-input-character;
690          redo A;          redo A;
691        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
692          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
693          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
694              !!!cp (39);
695            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
696                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
697            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
698          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
699            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
700            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
701              !!!parse-error (type => 'end tag attribute');            #  ## NOTE: This state should never be reached.
702            }            #  !!! cp (40);
703              #  !!! parse-error (type => 'end tag attribute');
704              #} else {
705                !!!cp (41);
706              #}
707          } else {          } else {
708            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
709          }          }
# Line 655  sub _get_next_token ($) { Line 713  sub _get_next_token ($) {
713          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
714    
715          redo A;          redo A;
716        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
717          !!!next-input-character;          !!!next-input-character;
718          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
719              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
720              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
721            # permitted slash            # permitted slash
722              !!!cp (42);
723            #            #
724          } else {          } else {
725              !!!cp (43);
726            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
727          }          }
728          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
729          # next-input-character is already done          # next-input-character is already done
730          redo A;          redo A;
731        } else {        } else {
732          $self->{current_token}->{tag_name} .= chr $self->{next_input_character};          !!!cp (44);
733            $self->{current_token}->{tag_name} .= chr $self->{next_char};
734            # start tag or end tag            # start tag or end tag
735          ## Stay in the state          ## Stay in the state
736          !!!next-input-character;          !!!next-input-character;
737          redo A;          redo A;
738        }        }
739      } elsif ($self->{state} == BEFORE_ATTRIBUTE_NAME_STATE) {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_NAME_STATE) {
740        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
741            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
742            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
743            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
744            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
745            !!!cp (45);
746          ## Stay in the state          ## Stay in the state
747          !!!next-input-character;          !!!next-input-character;
748          redo A;          redo A;
749        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
750          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
751              !!!cp (46);
752            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
753                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
754            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
755          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
756            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
757            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
758                !!!cp (47);
759              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
760              } else {
761                !!!cp (48);
762            }            }
763          } else {          } else {
764            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 703  sub _get_next_token ($) { Line 769  sub _get_next_token ($) {
769          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
770    
771          redo A;          redo A;
772        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
773                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
774          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (49);
775            $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),
776                                value => ''};                                value => ''};
777          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
778          !!!next-input-character;          !!!next-input-character;
779          redo A;          redo A;
780        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
781          !!!next-input-character;          !!!next-input-character;
782          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
783              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
784              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
785            # permitted slash            # permitted slash
786              !!!cp (50);
787            #            #
788          } else {          } else {
789              !!!cp (51);
790            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
791          }          }
792          ## Stay in the state          ## Stay in the state
793          # next-input-character is already done          # next-input-character is already done
794          redo A;          redo A;
795        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
796          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
797          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
798              !!!cp (52);
799            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
800                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
801            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
802          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
803            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
804            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
805                !!!cp (53);
806              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
807              } else {
808                !!!cp (54);
809            }            }
810          } else {          } else {
811            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 748  sub _get_next_token ($) { Line 821  sub _get_next_token ($) {
821               0x0022 => 1, # "               0x0022 => 1, # "
822               0x0027 => 1, # '               0x0027 => 1, # '
823               0x003D => 1, # =               0x003D => 1, # =
824              }->{$self->{next_input_character}}) {              }->{$self->{next_char}}) {
825              !!!cp (55);
826            !!!parse-error (type => 'bad attribute name');            !!!parse-error (type => 'bad attribute name');
827            } else {
828              !!!cp (56);
829          }          }
830          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          $self->{current_attribute} = {name => chr ($self->{next_char}),
831                                value => ''};                                value => ''};
832          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
833          !!!next-input-character;          !!!next-input-character;
# Line 761  sub _get_next_token ($) { Line 837  sub _get_next_token ($) {
837        my $before_leave = sub {        my $before_leave = sub {
838          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
839              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
840              !!!cp (57);
841            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});
842            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
843          } else {          } else {
844              !!!cp (58);
845            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}
846              = $self->{current_attribute};              = $self->{current_attribute};
847          }          }
848        }; # $before_leave        }; # $before_leave
849    
850        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
851            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
852            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
853            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
854            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
855            !!!cp (59);
856          $before_leave->();          $before_leave->();
857          $self->{state} = AFTER_ATTRIBUTE_NAME_STATE;          $self->{state} = AFTER_ATTRIBUTE_NAME_STATE;
858          !!!next-input-character;          !!!next-input-character;
859          redo A;          redo A;
860        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
861            !!!cp (60);
862          $before_leave->();          $before_leave->();
863          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
864          !!!next-input-character;          !!!next-input-character;
865          redo A;          redo A;
866        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
867          $before_leave->();          $before_leave->();
868          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
869              !!!cp (61);
870            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
871                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
872            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
873          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
874              !!!cp (62);
875            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
876            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
877              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
# Line 803  sub _get_next_token ($) { Line 885  sub _get_next_token ($) {
885          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
886    
887          redo A;          redo A;
888        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
889                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
890          $self->{current_attribute}->{name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (63);
891            $self->{current_attribute}->{name} .= chr ($self->{next_char} + 0x0020);
892          ## Stay in the state          ## Stay in the state
893          !!!next-input-character;          !!!next-input-character;
894          redo A;          redo A;
895        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
896          $before_leave->();          $before_leave->();
897          !!!next-input-character;          !!!next-input-character;
898          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
899              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
900              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
901            # permitted slash            # permitted slash
902              !!!cp (64);
903            #            #
904          } else {          } else {
905              !!!cp (65);
906            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
907          }          }
908          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
909          # next-input-character is already done          # next-input-character is already done
910          redo A;          redo A;
911        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
912          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
913          $before_leave->();          $before_leave->();
914          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
915              !!!cp (66);
916            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
917                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
918            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
919          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
920            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
921            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
922                !!!cp (67);
923              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
924              } else {
925                ## NOTE: This state should never be reached.
926                !!!cp (68);
927            }            }
928          } else {          } else {
929            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 845  sub _get_next_token ($) { Line 935  sub _get_next_token ($) {
935    
936          redo A;          redo A;
937        } else {        } else {
938          if ($self->{next_input_character} == 0x0022 or # "          if ($self->{next_char} == 0x0022 or # "
939              $self->{next_input_character} == 0x0027) { # '              $self->{next_char} == 0x0027) { # '
940              !!!cp (69);
941            !!!parse-error (type => 'bad attribute name');            !!!parse-error (type => 'bad attribute name');
942            } else {
943              !!!cp (70);
944          }          }
945          $self->{current_attribute}->{name} .= chr ($self->{next_input_character});          $self->{current_attribute}->{name} .= chr ($self->{next_char});
946          ## Stay in the state          ## Stay in the state
947          !!!next-input-character;          !!!next-input-character;
948          redo A;          redo A;
949        }        }
950      } elsif ($self->{state} == AFTER_ATTRIBUTE_NAME_STATE) {      } elsif ($self->{state} == AFTER_ATTRIBUTE_NAME_STATE) {
951        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
952            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
953            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
954            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
955            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
956            !!!cp (71);
957          ## Stay in the state          ## Stay in the state
958          !!!next-input-character;          !!!next-input-character;
959          redo A;          redo A;
960        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
961            !!!cp (72);
962          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
963          !!!next-input-character;          !!!next-input-character;
964          redo A;          redo A;
965        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
966          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
967              !!!cp (73);
968            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
969                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
970            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
971          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
972            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
973            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
974                !!!cp (74);
975              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
976              } else {
977                ## NOTE: This state should never be reached.
978                !!!cp (75);
979            }            }
980          } else {          } else {
981            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 886  sub _get_next_token ($) { Line 986  sub _get_next_token ($) {
986          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
987    
988          redo A;          redo A;
989        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
990                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
991          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (76);
992            $self->{current_attribute} = {name => chr ($self->{next_char} + 0x0020),
993                                value => ''};                                value => ''};
994          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
995          !!!next-input-character;          !!!next-input-character;
996          redo A;          redo A;
997        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
998          !!!next-input-character;          !!!next-input-character;
999          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
1000              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
1001              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1002            # permitted slash            # permitted slash
1003              !!!cp (77);
1004            #            #
1005          } else {          } else {
1006              !!!cp (78);
1007            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
1008            ## TODO: Different error type for <aa / bb> than <aa/>            ## TODO: Different error type for <aa / bb> than <aa/>
1009          }          }
1010          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1011          # next-input-character is already done          # next-input-character is already done
1012          redo A;          redo A;
1013        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1014          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1015          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1016              !!!cp (79);
1017            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1018                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1019            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1020          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1021            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1022            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1023                !!!cp (80);
1024              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1025              } else {
1026                ## NOTE: This state should never be reached.
1027                !!!cp (81);
1028            }            }
1029          } else {          } else {
1030            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 928  sub _get_next_token ($) { Line 1036  sub _get_next_token ($) {
1036    
1037          redo A;          redo A;
1038        } else {        } else {
1039          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          !!!cp (82);
1040            $self->{current_attribute} = {name => chr ($self->{next_char}),
1041                                value => ''};                                value => ''};
1042          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1043          !!!next-input-character;          !!!next-input-character;
1044          redo A;                  redo A;        
1045        }        }
1046      } elsif ($self->{state} == BEFORE_ATTRIBUTE_VALUE_STATE) {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_VALUE_STATE) {
1047        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1048            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1049            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1050            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1051            $self->{next_input_character} == 0x0020) { # SP                  $self->{next_char} == 0x0020) { # SP      
1052            !!!cp (83);
1053          ## Stay in the state          ## Stay in the state
1054          !!!next-input-character;          !!!next-input-character;
1055          redo A;          redo A;
1056        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
1057            !!!cp (84);
1058          $self->{state} = ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE;
1059          !!!next-input-character;          !!!next-input-character;
1060          redo A;          redo A;
1061        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1062            !!!cp (85);
1063          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1064          ## reconsume          ## reconsume
1065          redo A;          redo A;
1066        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
1067            !!!cp (86);
1068          $self->{state} = ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE;
1069          !!!next-input-character;          !!!next-input-character;
1070          redo A;          redo A;
1071        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1072          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1073              !!!cp (87);
1074            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1075                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1076            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1077          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1078            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1079            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1080                !!!cp (88);
1081              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1082              } else {
1083                ## NOTE: This state should never be reached.
1084                !!!cp (89);
1085            }            }
1086          } else {          } else {
1087            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 974  sub _get_next_token ($) { Line 1092  sub _get_next_token ($) {
1092          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1093    
1094          redo A;          redo A;
1095        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1096          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1097          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1098              !!!cp (90);
1099            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1100                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1101            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1102          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1103            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1104            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1105                !!!cp (91);
1106              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1107              } else {
1108                ## NOTE: This state should never be reached.
1109                !!!cp (92);
1110            }            }
1111          } else {          } else {
1112            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 995  sub _get_next_token ($) { Line 1118  sub _get_next_token ($) {
1118    
1119          redo A;          redo A;
1120        } else {        } else {
1121          if ($self->{next_input_character} == 0x003D) { # =          if ($self->{next_char} == 0x003D) { # =
1122              !!!cp (93);
1123            !!!parse-error (type => 'bad attribute value');            !!!parse-error (type => 'bad attribute value');
1124            } else {
1125              !!!cp (94);
1126          }          }
1127          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1128          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1129          !!!next-input-character;          !!!next-input-character;
1130          redo A;          redo A;
1131        }        }
1132      } elsif ($self->{state} == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE) {      } elsif ($self->{state} == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE) {
1133        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1134            !!!cp (95);
1135          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1136          !!!next-input-character;          !!!next-input-character;
1137          redo A;          redo A;
1138        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1139            !!!cp (96);
1140          $self->{last_attribute_value_state} = $self->{state};          $self->{last_attribute_value_state} = $self->{state};
1141          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1142          !!!next-input-character;          !!!next-input-character;
1143          redo A;          redo A;
1144        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1145          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1146          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1147              !!!cp (97);
1148            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1149                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1150            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1151          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1152            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1153            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1154                !!!cp (98);
1155              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1156              } else {
1157                ## NOTE: This state should never be reached.
1158                !!!cp (99);
1159            }            }
1160          } else {          } else {
1161            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 1034  sub _get_next_token ($) { Line 1167  sub _get_next_token ($) {
1167    
1168          redo A;          redo A;
1169        } else {        } else {
1170          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (100);
1171            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1172          ## Stay in the state          ## Stay in the state
1173          !!!next-input-character;          !!!next-input-character;
1174          redo A;          redo A;
1175        }        }
1176      } elsif ($self->{state} == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE) {      } elsif ($self->{state} == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE) {
1177        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1178            !!!cp (101);
1179          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1180          !!!next-input-character;          !!!next-input-character;
1181          redo A;          redo A;
1182        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1183            !!!cp (102);
1184          $self->{last_attribute_value_state} = $self->{state};          $self->{last_attribute_value_state} = $self->{state};
1185          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1186          !!!next-input-character;          !!!next-input-character;
1187          redo A;          redo A;
1188        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1189          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1190          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1191              !!!cp (103);
1192            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1193                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1194            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1195          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1196            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1197            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1198                !!!cp (104);
1199              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1200              } else {
1201                ## NOTE: This state should never be reached.
1202                !!!cp (105);
1203            }            }
1204          } else {          } else {
1205            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 1070  sub _get_next_token ($) { Line 1211  sub _get_next_token ($) {
1211    
1212          redo A;          redo A;
1213        } else {        } else {
1214          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (106);
1215            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1216          ## Stay in the state          ## Stay in the state
1217          !!!next-input-character;          !!!next-input-character;
1218          redo A;          redo A;
1219        }        }
1220      } elsif ($self->{state} == ATTRIBUTE_VALUE_UNQUOTED_STATE) {      } elsif ($self->{state} == ATTRIBUTE_VALUE_UNQUOTED_STATE) {
1221        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1222            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1223            $self->{next_input_character} == 0x000B or # HT            $self->{next_char} == 0x000B or # HT
1224            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1225            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1226            !!!cp (107);
1227          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1228          !!!next-input-character;          !!!next-input-character;
1229          redo A;          redo A;
1230        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1231            !!!cp (108);
1232          $self->{last_attribute_value_state} = $self->{state};          $self->{last_attribute_value_state} = $self->{state};
1233          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1234          !!!next-input-character;          !!!next-input-character;
1235          redo A;          redo A;
1236        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1237          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1238              !!!cp (109);
1239            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1240                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1241            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1242          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1243            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1244            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1245                !!!cp (110);
1246              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1247              } else {
1248                ## NOTE: This state should never be reached.
1249                !!!cp (111);
1250            }            }
1251          } else {          } else {
1252            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 1108  sub _get_next_token ($) { Line 1257  sub _get_next_token ($) {
1257          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1258    
1259          redo A;          redo A;
1260        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1261          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1262          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1263              !!!cp (112);
1264            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1265                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1266            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1267          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1268            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1269            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1270                !!!cp (113);
1271              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1272              } else {
1273                ## NOTE: This state should never be reached.
1274                !!!cp (114);
1275            }            }
1276          } else {          } else {
1277            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 1133  sub _get_next_token ($) { Line 1287  sub _get_next_token ($) {
1287               0x0022 => 1, # "               0x0022 => 1, # "
1288               0x0027 => 1, # '               0x0027 => 1, # '
1289               0x003D => 1, # =               0x003D => 1, # =
1290              }->{$self->{next_input_character}}) {              }->{$self->{next_char}}) {
1291              !!!cp (115);
1292            !!!parse-error (type => 'bad attribute value');            !!!parse-error (type => 'bad attribute value');
1293            } else {
1294              !!!cp (116);
1295          }          }
1296          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1297          ## Stay in the state          ## Stay in the state
1298          !!!next-input-character;          !!!next-input-character;
1299          redo A;          redo A;
# Line 1151  sub _get_next_token ($) { Line 1308  sub _get_next_token ($) {
1308             -1);             -1);
1309    
1310        unless (defined $token) {        unless (defined $token) {
1311            !!!cp (117);
1312          $self->{current_attribute}->{value} .= '&';          $self->{current_attribute}->{value} .= '&';
1313        } else {        } else {
1314            !!!cp (118);
1315          $self->{current_attribute}->{value} .= $token->{data};          $self->{current_attribute}->{value} .= $token->{data};
1316          $self->{current_attribute}->{has_reference} = $token->{has_reference};          $self->{current_attribute}->{has_reference} = $token->{has_reference};
1317          ## ISSUE: spec says "append the returned character token to the current attribute's value"          ## ISSUE: spec says "append the returned character token to the current attribute's value"
# Line 1162  sub _get_next_token ($) { Line 1321  sub _get_next_token ($) {
1321        # next-input-character is already done        # next-input-character is already done
1322        redo A;        redo A;
1323      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {
1324        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1325            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1326            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1327            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1328            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1329            !!!cp (118);
1330          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1331          !!!next-input-character;          !!!next-input-character;
1332          redo A;          redo A;
1333        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1334          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1335              !!!cp (119);
1336            $self->{current_token}->{first_start_tag}            $self->{current_token}->{first_start_tag}
1337                = not defined $self->{last_emitted_start_tag_name};                = not defined $self->{last_emitted_start_tag_name};
1338            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1339          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1340            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1341            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1342                !!!cp (120);
1343              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1344              } else {
1345                ## NOTE: This state should never be reached.
1346                !!!cp (121);
1347            }            }
1348          } else {          } else {
1349            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
# Line 1189  sub _get_next_token ($) { Line 1354  sub _get_next_token ($) {
1354          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1355    
1356          redo A;          redo A;
1357        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1358          !!!next-input-character;          !!!next-input-character;
1359          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
1360              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
1361              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1362            # permitted slash            # permitted slash
1363              !!!cp (122);
1364            #            #
1365          } else {          } else {
1366              !!!cp (123);
1367            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
1368          }          }
1369          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1370          # next-input-character is already done          # next-input-character is already done
1371          redo A;          redo A;
1372        } else {        } else {
1373            !!!cp (124);
1374          !!!parse-error (type => 'no space between attributes');          !!!parse-error (type => 'no space between attributes');
1375          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1376          ## reconsume          ## reconsume
# Line 1214  sub _get_next_token ($) { Line 1382  sub _get_next_token ($) {
1382        my $token = {type => COMMENT_TOKEN, data => ''};        my $token = {type => COMMENT_TOKEN, data => ''};
1383    
1384        BC: {        BC: {
1385          if ($self->{next_input_character} == 0x003E) { # >          if ($self->{next_char} == 0x003E) { # >
1386              !!!cp (124);
1387            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1388            !!!next-input-character;            !!!next-input-character;
1389    
1390            !!!emit ($token);            !!!emit ($token);
1391    
1392            redo A;            redo A;
1393          } elsif ($self->{next_input_character} == -1) {          } elsif ($self->{next_char} == -1) {
1394              !!!cp (125);
1395            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1396            ## reconsume            ## reconsume
1397    
# Line 1229  sub _get_next_token ($) { Line 1399  sub _get_next_token ($) {
1399    
1400            redo A;            redo A;
1401          } else {          } else {
1402            $token->{data} .= chr ($self->{next_input_character});            !!!cp (126);
1403              $token->{data} .= chr ($self->{next_char});
1404            !!!next-input-character;            !!!next-input-character;
1405            redo BC;            redo BC;
1406          }          }
1407        } # BC        } # BC
1408    
1409          die "$0: _get_next_token: unexpected case [BC]";
1410      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
1411        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1412    
1413        my @next_char;        my @next_char;
1414        push @next_char, $self->{next_input_character};        push @next_char, $self->{next_char};
1415                
1416        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1417          !!!next-input-character;          !!!next-input-character;
1418          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1419          if ($self->{next_input_character} == 0x002D) { # -          if ($self->{next_char} == 0x002D) { # -
1420              !!!cp (127);
1421            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};
1422            $self->{state} = COMMENT_START_STATE;            $self->{state} = COMMENT_START_STATE;
1423            !!!next-input-character;            !!!next-input-character;
1424            redo A;            redo A;
1425            } else {
1426              !!!cp (128);
1427          }          }
1428        } elsif ($self->{next_input_character} == 0x0044 or # D        } elsif ($self->{next_char} == 0x0044 or # D
1429                 $self->{next_input_character} == 0x0064) { # d                 $self->{next_char} == 0x0064) { # d
1430          !!!next-input-character;          !!!next-input-character;
1431          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1432          if ($self->{next_input_character} == 0x004F or # O          if ($self->{next_char} == 0x004F or # O
1433              $self->{next_input_character} == 0x006F) { # o              $self->{next_char} == 0x006F) { # o
1434            !!!next-input-character;            !!!next-input-character;
1435            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
1436            if ($self->{next_input_character} == 0x0043 or # C            if ($self->{next_char} == 0x0043 or # C
1437                $self->{next_input_character} == 0x0063) { # c                $self->{next_char} == 0x0063) { # c
1438              !!!next-input-character;              !!!next-input-character;
1439              push @next_char, $self->{next_input_character};              push @next_char, $self->{next_char};
1440              if ($self->{next_input_character} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1441                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
1442                !!!next-input-character;                !!!next-input-character;
1443                push @next_char, $self->{next_input_character};                push @next_char, $self->{next_char};
1444                if ($self->{next_input_character} == 0x0059 or # Y                if ($self->{next_char} == 0x0059 or # Y
1445                    $self->{next_input_character} == 0x0079) { # y                    $self->{next_char} == 0x0079) { # y
1446                  !!!next-input-character;                  !!!next-input-character;
1447                  push @next_char, $self->{next_input_character};                  push @next_char, $self->{next_char};
1448                  if ($self->{next_input_character} == 0x0050 or # P                  if ($self->{next_char} == 0x0050 or # P
1449                      $self->{next_input_character} == 0x0070) { # p                      $self->{next_char} == 0x0070) { # p
1450                    !!!next-input-character;                    !!!next-input-character;
1451                    push @next_char, $self->{next_input_character};                    push @next_char, $self->{next_char};
1452                    if ($self->{next_input_character} == 0x0045 or # E                    if ($self->{next_char} == 0x0045 or # E
1453                        $self->{next_input_character} == 0x0065) { # e                        $self->{next_char} == 0x0065) { # e
1454                      ## ISSUE: What a stupid code this is!                      !!!cp (129);
1455                        ## TODO: What a stupid code this is!
1456                      $self->{state} = DOCTYPE_STATE;                      $self->{state} = DOCTYPE_STATE;
1457                      !!!next-input-character;                      !!!next-input-character;
1458                      redo A;                      redo A;
1459                      } else {
1460                        !!!cp (130);
1461                    }                    }
1462                    } else {
1463                      !!!cp (131);
1464                  }                  }
1465                  } else {
1466                    !!!cp (132);
1467                }                }
1468                } else {
1469                  !!!cp (133);
1470              }              }
1471              } else {
1472                !!!cp (134);
1473            }            }
1474            } else {
1475              !!!cp (135);
1476          }          }
1477          } else {
1478            !!!cp (136);
1479        }        }
1480    
1481        !!!parse-error (type => 'bogus comment');        !!!parse-error (type => 'bogus comment');
1482        $self->{next_input_character} = shift @next_char;        $self->{next_char} = shift @next_char;
1483        !!!back-next-input-character (@next_char);        !!!back-next-input-character (@next_char);
1484        $self->{state} = BOGUS_COMMENT_STATE;        $self->{state} = BOGUS_COMMENT_STATE;
1485        redo A;        redo A;
# Line 1296  sub _get_next_token ($) { Line 1487  sub _get_next_token ($) {
1487        ## ISSUE: typos in spec: chacacters, is is a parse error        ## ISSUE: typos in spec: chacacters, is is a parse error
1488        ## ISSUE: spec is somewhat unclear on "is the first character that will be in the comment"; what is "that will be in the comment" is what the algorithm defines, isn't it?        ## ISSUE: spec is somewhat unclear on "is the first character that will be in the comment"; what is "that will be in the comment" is what the algorithm defines, isn't it?
1489      } elsif ($self->{state} == COMMENT_START_STATE) {      } elsif ($self->{state} == COMMENT_START_STATE) {
1490        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1491            !!!cp (137);
1492          $self->{state} = COMMENT_START_DASH_STATE;          $self->{state} = COMMENT_START_DASH_STATE;
1493          !!!next-input-character;          !!!next-input-character;
1494          redo A;          redo A;
1495        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1496            !!!cp (138);
1497          !!!parse-error (type => 'bogus comment');          !!!parse-error (type => 'bogus comment');
1498          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1499          !!!next-input-character;          !!!next-input-character;
# Line 1308  sub _get_next_token ($) { Line 1501  sub _get_next_token ($) {
1501          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1502    
1503          redo A;          redo A;
1504        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1505            !!!cp (139);
1506          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1507          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1508          ## reconsume          ## reconsume
# Line 1317  sub _get_next_token ($) { Line 1511  sub _get_next_token ($) {
1511    
1512          redo A;          redo A;
1513        } else {        } else {
1514            !!!cp (140);
1515          $self->{current_token}->{data} # comment          $self->{current_token}->{data} # comment
1516              .= chr ($self->{next_input_character});              .= chr ($self->{next_char});
1517          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1518          !!!next-input-character;          !!!next-input-character;
1519          redo A;          redo A;
1520        }        }
1521      } elsif ($self->{state} == COMMENT_START_DASH_STATE) {      } elsif ($self->{state} == COMMENT_START_DASH_STATE) {
1522        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1523            !!!cp (141);
1524          $self->{state} = COMMENT_END_STATE;          $self->{state} = COMMENT_END_STATE;
1525          !!!next-input-character;          !!!next-input-character;
1526          redo A;          redo A;
1527        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1528            !!!cp (142);
1529          !!!parse-error (type => 'bogus comment');          !!!parse-error (type => 'bogus comment');
1530          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1531          !!!next-input-character;          !!!next-input-character;
# Line 1336  sub _get_next_token ($) { Line 1533  sub _get_next_token ($) {
1533          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1534    
1535          redo A;          redo A;
1536        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1537            !!!cp (143);
1538          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1539          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1540          ## reconsume          ## reconsume
# Line 1345  sub _get_next_token ($) { Line 1543  sub _get_next_token ($) {
1543    
1544          redo A;          redo A;
1545        } else {        } else {
1546            !!!cp (144);
1547          $self->{current_token}->{data} # comment          $self->{current_token}->{data} # comment
1548              .= '-' . chr ($self->{next_input_character});              .= '-' . chr ($self->{next_char});
1549          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1550          !!!next-input-character;          !!!next-input-character;
1551          redo A;          redo A;
1552        }        }
1553      } elsif ($self->{state} == COMMENT_STATE) {      } elsif ($self->{state} == COMMENT_STATE) {
1554        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1555            !!!cp (145);
1556          $self->{state} = COMMENT_END_DASH_STATE;          $self->{state} = COMMENT_END_DASH_STATE;
1557          !!!next-input-character;          !!!next-input-character;
1558          redo A;          redo A;
1559        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1560            !!!cp (146);
1561          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1562          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1563          ## reconsume          ## reconsume
# Line 1365  sub _get_next_token ($) { Line 1566  sub _get_next_token ($) {
1566    
1567          redo A;          redo A;
1568        } else {        } else {
1569          $self->{current_token}->{data} .= chr ($self->{next_input_character}); # comment          !!!cp (147);
1570            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1571          ## Stay in the state          ## Stay in the state
1572          !!!next-input-character;          !!!next-input-character;
1573          redo A;          redo A;
1574        }        }
1575      } elsif ($self->{state} == COMMENT_END_DASH_STATE) {      } elsif ($self->{state} == COMMENT_END_DASH_STATE) {
1576        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1577            !!!cp (148);
1578          $self->{state} = COMMENT_END_STATE;          $self->{state} = COMMENT_END_STATE;
1579          !!!next-input-character;          !!!next-input-character;
1580          redo A;          redo A;
1581        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1582            !!!cp (149);
1583          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1584          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1585          ## reconsume          ## reconsume
# Line 1384  sub _get_next_token ($) { Line 1588  sub _get_next_token ($) {
1588    
1589          redo A;          redo A;
1590        } else {        } else {
1591          $self->{current_token}->{data} .= '-' . chr ($self->{next_input_character}); # comment          !!!cp (150);
1592            $self->{current_token}->{data} .= '-' . chr ($self->{next_char}); # comment
1593          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1594          !!!next-input-character;          !!!next-input-character;
1595          redo A;          redo A;
1596        }        }
1597      } elsif ($self->{state} == COMMENT_END_STATE) {      } elsif ($self->{state} == COMMENT_END_STATE) {
1598        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
1599            !!!cp (151);
1600          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1601          !!!next-input-character;          !!!next-input-character;
1602    
1603          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1604    
1605          redo A;          redo A;
1606        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
1607            !!!cp (152);
1608          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment');
1609          $self->{current_token}->{data} .= '-'; # comment          $self->{current_token}->{data} .= '-'; # comment
1610          ## Stay in the state          ## Stay in the state
1611          !!!next-input-character;          !!!next-input-character;
1612          redo A;          redo A;
1613        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1614            !!!cp (153);
1615          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1616          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1617          ## reconsume          ## reconsume
# Line 1412  sub _get_next_token ($) { Line 1620  sub _get_next_token ($) {
1620    
1621          redo A;          redo A;
1622        } else {        } else {
1623            !!!cp (154);
1624          !!!parse-error (type => 'dash in comment');          !!!parse-error (type => 'dash in comment');
1625          $self->{current_token}->{data} .= '--' . chr ($self->{next_input_character}); # comment          $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment
1626          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1627          !!!next-input-character;          !!!next-input-character;
1628          redo A;          redo A;
1629        }        }
1630      } elsif ($self->{state} == DOCTYPE_STATE) {      } elsif ($self->{state} == DOCTYPE_STATE) {
1631        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1632            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1633            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1634            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1635            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1636            !!!cp (155);
1637          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1638          !!!next-input-character;          !!!next-input-character;
1639          redo A;          redo A;
1640        } else {        } else {
1641            !!!cp (156);
1642          !!!parse-error (type => 'no space before DOCTYPE name');          !!!parse-error (type => 'no space before DOCTYPE name');
1643          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1644          ## reconsume          ## reconsume
1645          redo A;          redo A;
1646        }        }
1647      } elsif ($self->{state} == BEFORE_DOCTYPE_NAME_STATE) {      } elsif ($self->{state} == BEFORE_DOCTYPE_NAME_STATE) {
1648        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1649            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1650            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1651            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1652            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1653            !!!cp (157);
1654          ## Stay in the state          ## Stay in the state
1655          !!!next-input-character;          !!!next-input-character;
1656          redo A;          redo A;
1657        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1658            !!!cp (158);
1659          !!!parse-error (type => 'no DOCTYPE name');          !!!parse-error (type => 'no DOCTYPE name');
1660          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1661          !!!next-input-character;          !!!next-input-character;
# Line 1450  sub _get_next_token ($) { Line 1663  sub _get_next_token ($) {
1663          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});          !!!emit ({type => DOCTYPE_TOKEN, quirks => 1});
1664    
1665          redo A;          redo A;
1666        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1667            !!!cp (159);
1668          !!!parse-error (type => 'no DOCTYPE name');          !!!parse-error (type => 'no DOCTYPE name');
1669          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1670          ## reconsume          ## reconsume
# Line 1459  sub _get_next_token ($) { Line 1673  sub _get_next_token ($) {
1673    
1674          redo A;          redo A;
1675        } else {        } else {
1676            !!!cp (160);
1677          $self->{current_token}          $self->{current_token}
1678              = {type => DOCTYPE_TOKEN,              = {type => DOCTYPE_TOKEN,
1679                 name => chr ($self->{next_input_character}),                 name => chr ($self->{next_char}),
1680                 #quirks => 0,                 #quirks => 0,
1681                };                };
1682  ## ISSUE: "Set the token's name name to the" in the spec  ## ISSUE: "Set the token's name name to the" in the spec
# Line 1471  sub _get_next_token ($) { Line 1686  sub _get_next_token ($) {
1686        }        }
1687      } elsif ($self->{state} == DOCTYPE_NAME_STATE) {      } elsif ($self->{state} == DOCTYPE_NAME_STATE) {
1688  ## ISSUE: Redundant "First," in the spec.  ## ISSUE: Redundant "First," in the spec.
1689        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1690            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1691            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1692            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1693            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1694            !!!cp (161);
1695          $self->{state} = AFTER_DOCTYPE_NAME_STATE;          $self->{state} = AFTER_DOCTYPE_NAME_STATE;
1696          !!!next-input-character;          !!!next-input-character;
1697          redo A;          redo A;
1698        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1699            !!!cp (162);
1700          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1701          !!!next-input-character;          !!!next-input-character;
1702    
1703          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1704    
1705          redo A;          redo A;
1706        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1707            !!!cp (163);
1708          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1709          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1710          ## reconsume          ## reconsume
# Line 1496  sub _get_next_token ($) { Line 1714  sub _get_next_token ($) {
1714    
1715          redo A;          redo A;
1716        } else {        } else {
1717            !!!cp (164);
1718          $self->{current_token}->{name}          $self->{current_token}->{name}
1719            .= chr ($self->{next_input_character}); # DOCTYPE            .= chr ($self->{next_char}); # DOCTYPE
1720          ## Stay in the state          ## Stay in the state
1721          !!!next-input-character;          !!!next-input-character;
1722          redo A;          redo A;
1723        }        }
1724      } elsif ($self->{state} == AFTER_DOCTYPE_NAME_STATE) {      } elsif ($self->{state} == AFTER_DOCTYPE_NAME_STATE) {
1725        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1726            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1727            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1728            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1729            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1730            !!!cp (165);
1731          ## Stay in the state          ## Stay in the state
1732          !!!next-input-character;          !!!next-input-character;
1733          redo A;          redo A;
1734        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1735            !!!cp (166);
1736          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1737          !!!next-input-character;          !!!next-input-character;
1738    
1739          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1740    
1741          redo A;          redo A;
1742        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1743            !!!cp (167);
1744          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1745          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1746          ## reconsume          ## reconsume
# Line 1527  sub _get_next_token ($) { Line 1749  sub _get_next_token ($) {
1749          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1750    
1751          redo A;          redo A;
1752        } elsif ($self->{next_input_character} == 0x0050 or # P        } elsif ($self->{next_char} == 0x0050 or # P
1753                 $self->{next_input_character} == 0x0070) { # p                 $self->{next_char} == 0x0070) { # p
1754          !!!next-input-character;          !!!next-input-character;
1755          if ($self->{next_input_character} == 0x0055 or # U          if ($self->{next_char} == 0x0055 or # U
1756              $self->{next_input_character} == 0x0075) { # u              $self->{next_char} == 0x0075) { # u
1757            !!!next-input-character;            !!!next-input-character;
1758            if ($self->{next_input_character} == 0x0042 or # B            if ($self->{next_char} == 0x0042 or # B
1759                $self->{next_input_character} == 0x0062) { # b                $self->{next_char} == 0x0062) { # b
1760              !!!next-input-character;              !!!next-input-character;
1761              if ($self->{next_input_character} == 0x004C or # L              if ($self->{next_char} == 0x004C or # L
1762                  $self->{next_input_character} == 0x006C) { # l                  $self->{next_char} == 0x006C) { # l
1763                !!!next-input-character;                !!!next-input-character;
1764                if ($self->{next_input_character} == 0x0049 or # I                if ($self->{next_char} == 0x0049 or # I
1765                    $self->{next_input_character} == 0x0069) { # i                    $self->{next_char} == 0x0069) { # i
1766                  !!!next-input-character;                  !!!next-input-character;
1767                  if ($self->{next_input_character} == 0x0043 or # C                  if ($self->{next_char} == 0x0043 or # C
1768                      $self->{next_input_character} == 0x0063) { # c                      $self->{next_char} == 0x0063) { # c
1769                      !!!cp (168);
1770                    $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;                    $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1771                    !!!next-input-character;                    !!!next-input-character;
1772                    redo A;                    redo A;
1773                    } else {
1774                      !!!cp (169);
1775                  }                  }
1776                  } else {
1777                    !!!cp (170);
1778                }                }
1779                } else {
1780                  !!!cp (171);
1781              }              }
1782              } else {
1783                !!!cp (172);
1784            }            }
1785            } else {
1786              !!!cp (173);
1787          }          }
1788    
1789          #          #
1790        } elsif ($self->{next_input_character} == 0x0053 or # S        } elsif ($self->{next_char} == 0x0053 or # S
1791                 $self->{next_input_character} == 0x0073) { # s                 $self->{next_char} == 0x0073) { # s
1792          !!!next-input-character;          !!!next-input-character;
1793          if ($self->{next_input_character} == 0x0059 or # Y          if ($self->{next_char} == 0x0059 or # Y
1794              $self->{next_input_character} == 0x0079) { # y              $self->{next_char} == 0x0079) { # y
1795            !!!next-input-character;            !!!next-input-character;
1796            if ($self->{next_input_character} == 0x0053 or # S            if ($self->{next_char} == 0x0053 or # S
1797                $self->{next_input_character} == 0x0073) { # s                $self->{next_char} == 0x0073) { # s
1798              !!!next-input-character;              !!!next-input-character;
1799              if ($self->{next_input_character} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1800                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
1801                !!!next-input-character;                !!!next-input-character;
1802                if ($self->{next_input_character} == 0x0045 or # E                if ($self->{next_char} == 0x0045 or # E
1803                    $self->{next_input_character} == 0x0065) { # e                    $self->{next_char} == 0x0065) { # e
1804                  !!!next-input-character;                  !!!next-input-character;
1805                  if ($self->{next_input_character} == 0x004D or # M                  if ($self->{next_char} == 0x004D or # M
1806                      $self->{next_input_character} == 0x006D) { # m                      $self->{next_char} == 0x006D) { # m
1807                      !!!cp (174);
1808                    $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;                    $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
1809                    !!!next-input-character;                    !!!next-input-character;
1810                    redo A;                    redo A;
1811                    } else {
1812                      !!!cp (175);
1813                  }                  }
1814                  } else {
1815                    !!!cp (176);
1816                }                }
1817                } else {
1818                  !!!cp (177);
1819              }              }
1820              } else {
1821                !!!cp (178);
1822            }            }
1823            } else {
1824              !!!cp (179);
1825          }          }
1826    
1827          #          #
1828        } else {        } else {
1829            !!!cp (180);
1830          !!!next-input-character;          !!!next-input-character;
1831          #          #
1832        }        }
# Line 1596  sub _get_next_token ($) { Line 1841  sub _get_next_token ($) {
1841        if ({        if ({
1842              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1843              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
1844            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
1845            !!!cp (181);
1846          ## Stay in the state          ## Stay in the state
1847          !!!next-input-character;          !!!next-input-character;
1848          redo A;          redo A;
1849        } elsif ($self->{next_input_character} eq 0x0022) { # "        } elsif ($self->{next_char} eq 0x0022) { # "
1850            !!!cp (182);
1851          $self->{current_token}->{public_identifier} = ''; # DOCTYPE          $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1852          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE;          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE;
1853          !!!next-input-character;          !!!next-input-character;
1854          redo A;          redo A;
1855        } elsif ($self->{next_input_character} eq 0x0027) { # '        } elsif ($self->{next_char} eq 0x0027) { # '
1856            !!!cp (183);
1857          $self->{current_token}->{public_identifier} = ''; # DOCTYPE          $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1858          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE;          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE;
1859          !!!next-input-character;          !!!next-input-character;
1860          redo A;          redo A;
1861        } elsif ($self->{next_input_character} eq 0x003E) { # >        } elsif ($self->{next_char} eq 0x003E) { # >
1862            !!!cp (184);
1863          !!!parse-error (type => 'no PUBLIC literal');          !!!parse-error (type => 'no PUBLIC literal');
1864    
1865          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1620  sub _get_next_token ($) { Line 1869  sub _get_next_token ($) {
1869          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1870    
1871          redo A;          redo A;
1872        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1873            !!!cp (185);
1874          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1875    
1876          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1631  sub _get_next_token ($) { Line 1881  sub _get_next_token ($) {
1881    
1882          redo A;          redo A;
1883        } else {        } else {
1884            !!!cp (186);
1885          !!!parse-error (type => 'string after PUBLIC');          !!!parse-error (type => 'string after PUBLIC');
1886          $self->{current_token}->{quirks} = 1;          $self->{current_token}->{quirks} = 1;
1887    
# Line 1639  sub _get_next_token ($) { Line 1890  sub _get_next_token ($) {
1890          redo A;          redo A;
1891        }        }
1892      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE) {
1893        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1894            !!!cp (187);
1895          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1896          !!!next-input-character;          !!!next-input-character;
1897          redo A;          redo A;
1898        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1899            !!!cp (188);
1900          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1901    
1902          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1653  sub _get_next_token ($) { Line 1906  sub _get_next_token ($) {
1906          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1907    
1908          redo A;          redo A;
1909        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1910            !!!cp (189);
1911          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1912    
1913          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1664  sub _get_next_token ($) { Line 1918  sub _get_next_token ($) {
1918    
1919          redo A;          redo A;
1920        } else {        } else {
1921            !!!cp (190);
1922          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
1923              .= chr $self->{next_input_character};              .= chr $self->{next_char};
1924          ## Stay in the state          ## Stay in the state
1925          !!!next-input-character;          !!!next-input-character;
1926          redo A;          redo A;
1927        }        }
1928      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE) {
1929        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1930            !!!cp (191);
1931          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1932          !!!next-input-character;          !!!next-input-character;
1933          redo A;          redo A;
1934        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1935            !!!cp (192);
1936          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1937    
1938          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1685  sub _get_next_token ($) { Line 1942  sub _get_next_token ($) {
1942          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1943    
1944          redo A;          redo A;
1945        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1946            !!!cp (193);
1947          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1948    
1949          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1696  sub _get_next_token ($) { Line 1954  sub _get_next_token ($) {
1954    
1955          redo A;          redo A;
1956        } else {        } else {
1957            !!!cp (194);
1958          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
1959              .= chr $self->{next_input_character};              .= chr $self->{next_char};
1960          ## Stay in the state          ## Stay in the state
1961          !!!next-input-character;          !!!next-input-character;
1962          redo A;          redo A;
# Line 1706  sub _get_next_token ($) { Line 1965  sub _get_next_token ($) {
1965        if ({        if ({
1966              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1967              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
1968            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
1969            !!!cp (195);
1970          ## Stay in the state          ## Stay in the state
1971          !!!next-input-character;          !!!next-input-character;
1972          redo A;          redo A;
1973        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
1974            !!!cp (196);
1975          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1976          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
1977          !!!next-input-character;          !!!next-input-character;
1978          redo A;          redo A;
1979        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
1980            !!!cp (197);
1981          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1982          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
1983          !!!next-input-character;          !!!next-input-character;
1984          redo A;          redo A;
1985        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1986            !!!cp (198);
1987          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1988          !!!next-input-character;          !!!next-input-character;
1989    
1990          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1991    
1992          redo A;          redo A;
1993        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1994            !!!cp (199);
1995          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1996    
1997          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1738  sub _get_next_token ($) { Line 2002  sub _get_next_token ($) {
2002    
2003          redo A;          redo A;
2004        } else {        } else {
2005            !!!cp (200);
2006          !!!parse-error (type => 'string after PUBLIC literal');          !!!parse-error (type => 'string after PUBLIC literal');
2007          $self->{current_token}->{quirks} = 1;          $self->{current_token}->{quirks} = 1;
2008    
# Line 1749  sub _get_next_token ($) { Line 2014  sub _get_next_token ($) {
2014        if ({        if ({
2015              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2016              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2017            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2018            !!!cp (201);
2019          ## Stay in the state          ## Stay in the state
2020          !!!next-input-character;          !!!next-input-character;
2021          redo A;          redo A;
2022        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
2023            !!!cp (202);
2024          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2025          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
2026          !!!next-input-character;          !!!next-input-character;
2027          redo A;          redo A;
2028        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
2029            !!!cp (203);
2030          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2031          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
2032          !!!next-input-character;          !!!next-input-character;
2033          redo A;          redo A;
2034        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2035            !!!cp (204);
2036          !!!parse-error (type => 'no SYSTEM literal');          !!!parse-error (type => 'no SYSTEM literal');
2037          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2038          !!!next-input-character;          !!!next-input-character;
# Line 1772  sub _get_next_token ($) { Line 2041  sub _get_next_token ($) {
2041          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2042    
2043          redo A;          redo A;
2044        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2045            !!!cp (205);
2046          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2047    
2048          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1783  sub _get_next_token ($) { Line 2053  sub _get_next_token ($) {
2053    
2054          redo A;          redo A;
2055        } else {        } else {
2056            !!!cp (206);
2057          !!!parse-error (type => 'string after SYSTEM');          !!!parse-error (type => 'string after SYSTEM');
2058          $self->{current_token}->{quirks} = 1;          $self->{current_token}->{quirks} = 1;
2059    
# Line 1791  sub _get_next_token ($) { Line 2062  sub _get_next_token ($) {
2062          redo A;          redo A;
2063        }        }
2064      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE) {
2065        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
2066            !!!cp (207);
2067          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2068          !!!next-input-character;          !!!next-input-character;
2069          redo A;          redo A;
2070        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2071            !!!cp (208);
2072          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
2073    
2074          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1805  sub _get_next_token ($) { Line 2078  sub _get_next_token ($) {
2078          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2079    
2080          redo A;          redo A;
2081        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2082            !!!cp (209);
2083          !!!parse-error (type => 'unclosed SYSTEM literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2084    
2085          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1816  sub _get_next_token ($) { Line 2090  sub _get_next_token ($) {
2090    
2091          redo A;          redo A;
2092        } else {        } else {
2093            !!!cp (210);
2094          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2095              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2096          ## Stay in the state          ## Stay in the state
2097          !!!next-input-character;          !!!next-input-character;
2098          redo A;          redo A;
2099        }        }
2100      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE) {
2101        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
2102            !!!cp (211);
2103          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2104          !!!next-input-character;          !!!next-input-character;
2105          redo A;          redo A;
2106        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2107            !!!cp (212);
2108          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
2109    
2110          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1837  sub _get_next_token ($) { Line 2114  sub _get_next_token ($) {
2114          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2115    
2116          redo A;          redo A;
2117        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2118            !!!cp (213);
2119          !!!parse-error (type => 'unclosed SYSTEM literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2120    
2121          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1848  sub _get_next_token ($) { Line 2126  sub _get_next_token ($) {
2126    
2127          redo A;          redo A;
2128        } else {        } else {
2129            !!!cp (214);
2130          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2131              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2132          ## Stay in the state          ## Stay in the state
2133          !!!next-input-character;          !!!next-input-character;
2134          redo A;          redo A;
# Line 1858  sub _get_next_token ($) { Line 2137  sub _get_next_token ($) {
2137        if ({        if ({
2138              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2139              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2140            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2141            !!!cp (215);
2142          ## Stay in the state          ## Stay in the state
2143          !!!next-input-character;          !!!next-input-character;
2144          redo A;          redo A;
2145        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2146            !!!cp (216);
2147          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2148          !!!next-input-character;          !!!next-input-character;
2149    
2150          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2151    
2152          redo A;          redo A;
2153        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2154            !!!cp (217);
2155          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2156    
2157          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
# Line 1880  sub _get_next_token ($) { Line 2162  sub _get_next_token ($) {
2162    
2163          redo A;          redo A;
2164        } else {        } else {
2165            !!!cp (218);
2166          !!!parse-error (type => 'string after SYSTEM literal');          !!!parse-error (type => 'string after SYSTEM literal');
2167          #$self->{current_token}->{quirks} = 1;          #$self->{current_token}->{quirks} = 1;
2168    
# Line 1888  sub _get_next_token ($) { Line 2171  sub _get_next_token ($) {
2171          redo A;          redo A;
2172        }        }
2173      } elsif ($self->{state} == BOGUS_DOCTYPE_STATE) {      } elsif ($self->{state} == BOGUS_DOCTYPE_STATE) {
2174        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
2175            !!!cp (219);
2176          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2177          !!!next-input-character;          !!!next-input-character;
2178    
2179          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2180    
2181          redo A;          redo A;
2182        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2183            !!!cp (220);
2184          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2185          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2186          ## reconsume          ## reconsume
# Line 1904  sub _get_next_token ($) { Line 2189  sub _get_next_token ($) {
2189    
2190          redo A;          redo A;
2191        } else {        } else {
2192            !!!cp (221);
2193          ## Stay in the state          ## Stay in the state
2194          !!!next-input-character;          !!!next-input-character;
2195          redo A;          redo A;
# Line 1923  sub _tokenize_attempt_to_consume_an_enti Line 2209  sub _tokenize_attempt_to_consume_an_enti
2209         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2210         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
2211         $additional => 1,         $additional => 1,
2212        }->{$self->{next_input_character}}) {        }->{$self->{next_char}}) {
2213        !!!cp (1001);
2214      ## Don't consume      ## Don't consume
2215      ## No error      ## No error
2216      return undef;      return undef;
2217    } elsif ($self->{next_input_character} == 0x0023) { # #    } elsif ($self->{next_char} == 0x0023) { # #
2218      !!!next-input-character;      !!!next-input-character;
2219      if ($self->{next_input_character} == 0x0078 or # x      if ($self->{next_char} == 0x0078 or # x
2220          $self->{next_input_character} == 0x0058) { # X          $self->{next_char} == 0x0058) { # X
2221        my $code;        my $code;
2222        X: {        X: {
2223          my $x_char = $self->{next_input_character};          my $x_char = $self->{next_char};
2224          !!!next-input-character;          !!!next-input-character;
2225          if (0x0030 <= $self->{next_input_character} and          if (0x0030 <= $self->{next_char} and
2226              $self->{next_input_character} <= 0x0039) { # 0..9              $self->{next_char} <= 0x0039) { # 0..9
2227              !!!cp (1002);
2228            $code ||= 0;            $code ||= 0;
2229            $code *= 0x10;            $code *= 0x10;
2230            $code += $self->{next_input_character} - 0x0030;            $code += $self->{next_char} - 0x0030;
2231            redo X;            redo X;
2232          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
2233                   $self->{next_input_character} <= 0x0066) { # a..f                   $self->{next_char} <= 0x0066) { # a..f
2234              !!!cp (1003);
2235            $code ||= 0;            $code ||= 0;
2236            $code *= 0x10;            $code *= 0x10;
2237            $code += $self->{next_input_character} - 0x0060 + 9;            $code += $self->{next_char} - 0x0060 + 9;
2238            redo X;            redo X;
2239          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
2240                   $self->{next_input_character} <= 0x0046) { # A..F                   $self->{next_char} <= 0x0046) { # A..F
2241              !!!cp (1004);
2242            $code ||= 0;            $code ||= 0;
2243            $code *= 0x10;            $code *= 0x10;
2244            $code += $self->{next_input_character} - 0x0040 + 9;            $code += $self->{next_char} - 0x0040 + 9;
2245            redo X;            redo X;
2246          } elsif (not defined $code) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2247              !!!cp (1005);
2248            !!!parse-error (type => 'bare hcro');            !!!parse-error (type => 'bare hcro');
2249            !!!back-next-input-character ($x_char, $self->{next_input_character});            !!!back-next-input-character ($x_char, $self->{next_char});
2250            $self->{next_input_character} = 0x0023; # #            $self->{next_char} = 0x0023; # #
2251            return undef;            return undef;
2252          } elsif ($self->{next_input_character} == 0x003B) { # ;          } elsif ($self->{next_char} == 0x003B) { # ;
2253              !!!cp (1006);
2254            !!!next-input-character;            !!!next-input-character;
2255          } else {          } else {
2256              !!!cp (1007);
2257            !!!parse-error (type => 'no refc');            !!!parse-error (type => 'no refc');
2258          }          }
2259    
2260          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2261              !!!cp (1008);
2262            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
2263            $code = 0xFFFD;            $code = 0xFFFD;
2264          } elsif ($code > 0x10FFFF) {          } elsif ($code > 0x10FFFF) {
2265              !!!cp (1009);
2266            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
2267            $code = 0xFFFD;            $code = 0xFFFD;
2268          } elsif ($code == 0x000D) {          } elsif ($code == 0x000D) {
2269              !!!cp (1010);
2270            !!!parse-error (type => 'CR character reference');            !!!parse-error (type => 'CR character reference');
2271            $code = 0x000A;            $code = 0x000A;
2272          } elsif (0x80 <= $code and $code <= 0x9F) {          } elsif (0x80 <= $code and $code <= 0x9F) {
2273              !!!cp (1011);
2274            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
2275            $code = $c1_entity_char->{$code};            $code = $c1_entity_char->{$code};
2276          }          }
# Line 1981  sub _tokenize_attempt_to_consume_an_enti Line 2278  sub _tokenize_attempt_to_consume_an_enti
2278          return {type => CHARACTER_TOKEN, data => chr $code,          return {type => CHARACTER_TOKEN, data => chr $code,
2279                  has_reference => 1};                  has_reference => 1};
2280        } # X        } # X
2281      } elsif (0x0030 <= $self->{next_input_character} and      } elsif (0x0030 <= $self->{next_char} and
2282               $self->{next_input_character} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
2283        my $code = $self->{next_input_character} - 0x0030;        my $code = $self->{next_char} - 0x0030;
2284        !!!next-input-character;        !!!next-input-character;
2285                
2286        while (0x0030 <= $self->{next_input_character} and        while (0x0030 <= $self->{next_char} and
2287                  $self->{next_input_character} <= 0x0039) { # 0..9                  $self->{next_char} <= 0x0039) { # 0..9
2288            !!!cp (1012);
2289          $code *= 10;          $code *= 10;
2290          $code += $self->{next_input_character} - 0x0030;          $code += $self->{next_char} - 0x0030;
2291                    
2292          !!!next-input-character;          !!!next-input-character;
2293        }        }
2294    
2295        if ($self->{next_input_character} == 0x003B) { # ;        if ($self->{next_char} == 0x003B) { # ;
2296            !!!cp (1013);
2297          !!!next-input-character;          !!!next-input-character;
2298        } else {        } else {
2299            !!!cp (1014);
2300          !!!parse-error (type => 'no refc');          !!!parse-error (type => 'no refc');
2301        }        }
2302    
2303        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2304            !!!cp (1015);
2305          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
2306          $code = 0xFFFD;          $code = 0xFFFD;
2307        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
2308            !!!cp (1016);
2309          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
2310          $code = 0xFFFD;          $code = 0xFFFD;
2311        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
2312            !!!cp (1017);
2313          !!!parse-error (type => 'CR character reference');          !!!parse-error (type => 'CR character reference');
2314          $code = 0x000A;          $code = 0x000A;
2315        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
2316            !!!cp (1018);
2317          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
2318          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
2319        }        }
2320                
2321        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};
2322      } else {      } else {
2323          !!!cp (1019);
2324        !!!parse-error (type => 'bare nero');        !!!parse-error (type => 'bare nero');
2325        !!!back-next-input-character ($self->{next_input_character});        !!!back-next-input-character ($self->{next_char});
2326        $self->{next_input_character} = 0x0023; # #        $self->{next_char} = 0x0023; # #
2327        return undef;        return undef;
2328      }      }
2329    } elsif ((0x0041 <= $self->{next_input_character} and    } elsif ((0x0041 <= $self->{next_char} and
2330              $self->{next_input_character} <= 0x005A) or              $self->{next_char} <= 0x005A) or
2331             (0x0061 <= $self->{next_input_character} and             (0x0061 <= $self->{next_char} and
2332              $self->{next_input_character} <= 0x007A)) {              $self->{next_char} <= 0x007A)) {
2333      my $entity_name = chr $self->{next_input_character};      my $entity_name = chr $self->{next_char};
2334      !!!next-input-character;      !!!next-input-character;
2335    
2336      my $value = $entity_name;      my $value = $entity_name;
# Line 2035  sub _tokenize_attempt_to_consume_an_enti Line 2340  sub _tokenize_attempt_to_consume_an_enti
2340    
2341      while (length $entity_name < 10 and      while (length $entity_name < 10 and
2342             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
2343             ((0x0041 <= $self->{next_input_character} and # a             ((0x0041 <= $self->{next_char} and # a
2344               $self->{next_input_character} <= 0x005A) or # x               $self->{next_char} <= 0x005A) or # x
2345              (0x0061 <= $self->{next_input_character} and # a              (0x0061 <= $self->{next_char} and # a
2346               $self->{next_input_character} <= 0x007A) or # z               $self->{next_char} <= 0x007A) or # z
2347              (0x0030 <= $self->{next_input_character} and # 0              (0x0030 <= $self->{next_char} and # 0
2348               $self->{next_input_character} <= 0x0039) or # 9               $self->{next_char} <= 0x0039) or # 9
2349              $self->{next_input_character} == 0x003B)) { # ;              $self->{next_char} == 0x003B)) { # ;
2350        $entity_name .= chr $self->{next_input_character};        $entity_name .= chr $self->{next_char};
2351        if (defined $EntityChar->{$entity_name}) {        if (defined $EntityChar->{$entity_name}) {
2352          if ($self->{next_input_character} == 0x003B) { # ;          if ($self->{next_char} == 0x003B) { # ;
2353              !!!cp (1020);
2354            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
2355            $match = 1;            $match = 1;
2356            !!!next-input-character;            !!!next-input-character;
2357            last;            last;
2358          } else {          } else {
2359              !!!cp (1021);
2360            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
2361            $match = -1;            $match = -1;
2362            !!!next-input-character;            !!!next-input-character;
2363          }          }
2364        } else {        } else {
2365          $value .= chr $self->{next_input_character};          !!!cp (1022);
2366            $value .= chr $self->{next_char};
2367          $match *= 2;          $match *= 2;
2368          !!!next-input-character;          !!!next-input-character;
2369        }        }
2370      }      }
2371            
2372      if ($match > 0) {      if ($match > 0) {
2373          !!!cp (1023);
2374        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};
2375      } elsif ($match < 0) {      } elsif ($match < 0) {
2376        !!!parse-error (type => 'no refc');        !!!parse-error (type => 'no refc');
2377        if ($in_attr and $match < -1) {        if ($in_attr and $match < -1) {
2378            !!!cp (1024);
2379          return {type => CHARACTER_TOKEN, data => '&'.$entity_name};          return {type => CHARACTER_TOKEN, data => '&'.$entity_name};
2380        } else {        } else {
2381            !!!cp (1025);
2382          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};
2383        }        }
2384      } else {      } else {
2385          !!!cp (1026);
2386        !!!parse-error (type => 'bare ero');        !!!parse-error (type => 'bare ero');
2387        ## NOTE: "No characters are consumed" in the spec.        ## NOTE: "No characters are consumed" in the spec.
2388        return {type => CHARACTER_TOKEN, data => '&'.$value};        return {type => CHARACTER_TOKEN, data => '&'.$value};
2389      }      }
2390    } else {    } else {
2391        !!!cp (1027);
2392      ## no characters are consumed      ## no characters are consumed
2393      !!!parse-error (type => 'bare ero');      !!!parse-error (type => 'bare ero');
2394      return undef;      return undef;
# Line 2115  sub _construct_tree ($) { Line 2428  sub _construct_tree ($) {
2428        
2429    !!!next-token;    !!!next-token;
2430    
   $self->{insertion_mode} = BEFORE_HEAD_IM;  
2431    undef $self->{form_element};    undef $self->{form_element};
2432    undef $self->{head_element};    undef $self->{head_element};
2433    $self->{open_elements} = [];    $self->{open_elements} = [];
2434    undef $self->{inner_html_node};    undef $self->{inner_html_node};
2435    
2436      ## NOTE: The "initial" insertion mode.
2437    $self->_tree_construction_initial; # MUST    $self->_tree_construction_initial; # MUST
2438    
2439      ## NOTE: The "before html" insertion mode.
2440    $self->_tree_construction_root_element;    $self->_tree_construction_root_element;
2441      $self->{insertion_mode} = BEFORE_HEAD_IM;
2442    
2443      ## NOTE: The "before head" insertion mode and so on.
2444    $self->_tree_construction_main;    $self->_tree_construction_main;
2445  } # _construct_tree  } # _construct_tree
2446    
2447  sub _tree_construction_initial ($) {  sub _tree_construction_initial ($) {
2448    my $self = shift;    my $self = shift;
2449    
2450      ## NOTE: "initial" insertion mode
2451    
2452    INITIAL: {    INITIAL: {
2453      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
2454        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
# Line 2139  sub _tree_construction_initial ($) { Line 2460  sub _tree_construction_initial ($) {
2460        if (not defined $token->{name} or # <!DOCTYPE>        if (not defined $token->{name} or # <!DOCTYPE>
2461            defined $token->{public_identifier} or            defined $token->{public_identifier} or
2462            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
2463            !!!cp ('t1');
2464          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5');
2465        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
2466            !!!cp ('t2');
2467          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
2468          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5');
2469          } else {
2470            !!!cp ('t3');
2471        }        }
2472                
2473        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
# Line 2156  sub _tree_construction_initial ($) { Line 2481  sub _tree_construction_initial ($) {
2481        $self->{document}->append_child ($doctype);        $self->{document}->append_child ($doctype);
2482                
2483        if ($token->{quirks} or $doctype_name ne 'HTML') {        if ($token->{quirks} or $doctype_name ne 'HTML') {
2484            !!!cp ('t4');
2485          $self->{document}->manakai_compat_mode ('quirks');          $self->{document}->manakai_compat_mode ('quirks');
2486        } elsif (defined $token->{public_identifier}) {        } elsif (defined $token->{public_identifier}) {
2487          my $pubid = $token->{public_identifier};          my $pubid = $token->{public_identifier};
# Line 2234  sub _tree_construction_initial ($) { Line 2560  sub _tree_construction_initial ($) {
2560            "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,            "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,
2561            "HTML" => 1,            "HTML" => 1,
2562          }->{$pubid}) {          }->{$pubid}) {
2563              !!!cp ('t5');
2564            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
2565          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or
2566                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {
2567            if (defined $token->{system_identifier}) {            if (defined $token->{system_identifier}) {
2568                !!!cp ('t6');
2569              $self->{document}->manakai_compat_mode ('quirks');              $self->{document}->manakai_compat_mode ('quirks');
2570            } else {            } else {
2571                !!!cp ('t7');
2572              $self->{document}->manakai_compat_mode ('limited quirks');              $self->{document}->manakai_compat_mode ('limited quirks');
2573            }            }
2574          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 Frameset//EN" or          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 FRAMESET//EN" or
2575                   $pubid eq "-//W3C//DTD XHTML 1.0 Transitional//EN") {                   $pubid eq "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN") {
2576              !!!cp ('t8');
2577            $self->{document}->manakai_compat_mode ('limited quirks');            $self->{document}->manakai_compat_mode ('limited quirks');
2578            } else {
2579              !!!cp ('t9');
2580          }          }
2581          } else {
2582            !!!cp ('t10');
2583        }        }
2584        if (defined $token->{system_identifier}) {        if (defined $token->{system_identifier}) {
2585          my $sysid = $token->{system_identifier};          my $sysid = $token->{system_identifier};
2586          $sysid =~ tr/A-Z/a-z/;          $sysid =~ tr/A-Z/a-z/;
2587          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") {
2588              ## TODO: Check the spec: PUBLIC "(limited quirks)" "(quirks)"
2589            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
2590              !!!cp ('t11');
2591            } else {
2592              !!!cp ('t12');
2593          }          }
2594          } else {
2595            !!!cp ('t13');
2596        }        }
2597                
2598        ## Go to the root element phase.        ## Go to the "before html" insertion mode.
2599        !!!next-token;        !!!next-token;
2600        return;        return;
2601      } elsif ({      } elsif ({
# Line 2263  sub _tree_construction_initial ($) { Line 2603  sub _tree_construction_initial ($) {
2603                END_TAG_TOKEN, 1,                END_TAG_TOKEN, 1,
2604                END_OF_FILE_TOKEN, 1,                END_OF_FILE_TOKEN, 1,
2605               }->{$token->{type}}) {               }->{$token->{type}}) {
2606          !!!cp ('t14');
2607        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE');
2608        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2609        ## Go to the root element phase        ## Go to the "before html" insertion mode.
2610        ## reprocess        ## reprocess
2611        return;        return;
2612      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
# Line 2273  sub _tree_construction_initial ($) { Line 2614  sub _tree_construction_initial ($) {
2614          ## Ignore the token          ## Ignore the token
2615    
2616          unless (length $token->{data}) {          unless (length $token->{data}) {
2617            ## Stay in the phase            !!!cp ('t15');
2618              ## Stay in the insertion mode.
2619            !!!next-token;            !!!next-token;
2620            redo INITIAL;            redo INITIAL;
2621            } else {
2622              !!!cp ('t16');
2623          }          }
2624          } else {
2625            !!!cp ('t17');
2626        }        }
2627    
2628        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE');
2629        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2630        ## Go to the root element phase        ## Go to the "before html" insertion mode.
2631        ## reprocess        ## reprocess
2632        return;        return;
2633      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
2634          !!!cp ('t18');
2635        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
2636        $self->{document}->append_child ($comment);        $self->{document}->append_child ($comment);
2637                
2638        ## Stay in the phase.        ## Stay in the insertion mode.
2639        !!!next-token;        !!!next-token;
2640        redo INITIAL;        redo INITIAL;
2641      } else {      } else {
2642        die "$0: $token->{type}: Unknown token type";        die "$0: $token->{type}: Unknown token type";
2643      }      }
2644    } # INITIAL    } # INITIAL
2645    
2646      die "$0: _tree_construction_initial: This should be never reached";
2647  } # _tree_construction_initial  } # _tree_construction_initial
2648    
2649  sub _tree_construction_root_element ($) {  sub _tree_construction_root_element ($) {
2650    my $self = shift;    my $self = shift;
2651    
2652      ## NOTE: "before html" insertion mode.
2653        
2654    B: {    B: {
2655        if ($token->{type} == DOCTYPE_TOKEN) {        if ($token->{type} == DOCTYPE_TOKEN) {
2656            !!!cp ('t19');
2657          !!!parse-error (type => 'in html:#DOCTYPE');          !!!parse-error (type => 'in html:#DOCTYPE');
2658          ## Ignore the token          ## Ignore the token
2659          ## Stay in the phase          ## Stay in the insertion mode.
2660          !!!next-token;          !!!next-token;
2661          redo B;          redo B;
2662        } elsif ($token->{type} == COMMENT_TOKEN) {        } elsif ($token->{type} == COMMENT_TOKEN) {
2663            !!!cp ('t20');
2664          my $comment = $self->{document}->create_comment ($token->{data});          my $comment = $self->{document}->create_comment ($token->{data});
2665          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
2666          ## Stay in the phase          ## Stay in the insertion mode.
2667          !!!next-token;          !!!next-token;
2668          redo B;          redo B;
2669        } elsif ($token->{type} == CHARACTER_TOKEN) {        } elsif ($token->{type} == CHARACTER_TOKEN) {
# Line 2318  sub _tree_construction_root_element ($) Line 2671  sub _tree_construction_root_element ($)
2671            ## Ignore the token.            ## Ignore the token.
2672    
2673            unless (length $token->{data}) {            unless (length $token->{data}) {
2674              ## Stay in the phase              !!!cp ('t21');
2675                ## Stay in the insertion mode.
2676              !!!next-token;              !!!next-token;
2677              redo B;              redo B;
2678              } else {
2679                !!!cp ('t22');
2680            }            }
2681            } else {
2682              !!!cp ('t23');
2683          }          }
2684    
2685          $self->{application_cache_selection}->(undef);          $self->{application_cache_selection}->(undef);
2686    
2687          #          #
2688        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
2689          if ($token->{tag_name} eq 'html' and          if ($token->{tag_name} eq 'html') {
2690              $token->{attributes}->{manifest}) {            my $root_element;
2691            $self->{application_cache_selection}            !!!create-element ($root_element, $token->{tag_name}, $token->{attributes});
2692                 ->($token->{attributes}->{manifest}->{value});            $self->{document}->append_child ($root_element);
2693            ## ISSUE: No relative reference resolution?            push @{$self->{open_elements}}, [$root_element, 'html'];
2694    
2695              if ($token->{attributes}->{manifest}) {
2696                !!!cp ('t24');
2697                $self->{application_cache_selection}
2698                    ->($token->{attributes}->{manifest}->{value});
2699                ## ISSUE: No relative reference resolution?
2700              } else {
2701                !!!cp ('t25');
2702                $self->{application_cache_selection}->(undef);
2703              }
2704    
2705              !!!next-token;
2706              return; ## Go to the "before head" insertion mode.
2707          } else {          } else {
2708            $self->{application_cache_selection}->(undef);            !!!cp ('t25.1');
2709              #
2710          }          }
   
         ## ISSUE: There is an issue in the spec  
         #  
2711        } elsif ({        } elsif ({
2712                  END_TAG_TOKEN, 1,                  END_TAG_TOKEN, 1,
2713                  END_OF_FILE_TOKEN, 1,                  END_OF_FILE_TOKEN, 1,
2714                 }->{$token->{type}}) {                 }->{$token->{type}}) {
2715          $self->{application_cache_selection}->(undef);          !!!cp ('t26');
   
         ## ISSUE: There is an issue in the spec  
2716          #          #
2717        } else {        } else {
2718          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
2719        }        }
2720    
2721        my $root_element; !!!create-element ($root_element, 'html');      my $root_element; !!!create-element ($root_element, 'html');
2722        $self->{document}->append_child ($root_element);      $self->{document}->append_child ($root_element);
2723        push @{$self->{open_elements}}, [$root_element, 'html'];      push @{$self->{open_elements}}, [$root_element, 'html'];
2724        ## reprocess  
2725        #redo B;      $self->{application_cache_selection}->(undef);
2726        return; ## Go to the main phase.  
2727        ## NOTE: Reprocess the token.
2728        return; ## Go to the "before head" insertion mode.
2729    
2730        ## ISSUE: There is an issue in the spec
2731    } # B    } # B
2732    
2733      die "$0: _tree_construction_root_element: This should never be reached";
2734  } # _tree_construction_root_element  } # _tree_construction_root_element
2735    
2736  sub _reset_insertion_mode ($) {  sub _reset_insertion_mode ($) {
# Line 2372  sub _reset_insertion_mode ($) { Line 2745  sub _reset_insertion_mode ($) {
2745            
2746      ## Step 3      ## Step 3
2747      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"!?  
2748        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
2749          $last = 1;          $last = 1;
2750          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
2751            if ($self->{inner_html_node}->[1] eq 'td' or            if ($self->{inner_html_node}->[1] eq 'td' or
2752                $self->{inner_html_node}->[1] eq 'th') {                $self->{inner_html_node}->[1] eq 'th') {
2753                !!!cp ('t27');
2754              #              #
2755            } else {            } else {
2756                !!!cp ('t28');
2757              $node = $self->{inner_html_node};              $node = $self->{inner_html_node};
2758            }            }
2759          }          }
# Line 2392  sub _reset_insertion_mode ($) { Line 2762  sub _reset_insertion_mode ($) {
2762        ## Step 4..13        ## Step 4..13
2763        my $new_mode = {        my $new_mode = {
2764                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
2765                          ## NOTE: |option| and |optgroup| do not set
2766                          ## insertion mode to "in select" by themselves.
2767                        td => IN_CELL_IM,                        td => IN_CELL_IM,
2768                        th => IN_CELL_IM,                        th => IN_CELL_IM,
2769                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
# Line 2410  sub _reset_insertion_mode ($) { Line 2782  sub _reset_insertion_mode ($) {
2782        ## Step 14        ## Step 14
2783        if ($node->[1] eq 'html') {        if ($node->[1] eq 'html') {
2784          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
2785              !!!cp ('t29');
2786            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
2787          } else {          } else {
2788              ## ISSUE: Can this state be reached?
2789              !!!cp ('t30');
2790            $self->{insertion_mode} = AFTER_HEAD_IM;            $self->{insertion_mode} = AFTER_HEAD_IM;
2791          }          }
2792          return;          return;
2793          } else {
2794            !!!cp ('t31');
2795        }        }
2796                
2797        ## Step 15        ## Step 15
# Line 2427  sub _reset_insertion_mode ($) { Line 2804  sub _reset_insertion_mode ($) {
2804        ## Step 17        ## Step 17
2805        redo S3;        redo S3;
2806      } # S3      } # S3
2807    
2808      die "$0: _reset_insertion_mode: This line should never be reached";
2809  } # _reset_insertion_mode  } # _reset_insertion_mode
2810    
2811  sub _tree_construction_main ($) {  sub _tree_construction_main ($) {
# Line 2448  sub _tree_construction_main ($) { Line 2827  sub _tree_construction_main ($) {
2827      return if $entry->[0] eq '#marker';      return if $entry->[0] eq '#marker';
2828      for (@{$self->{open_elements}}) {      for (@{$self->{open_elements}}) {
2829        if ($entry->[0] eq $_->[0]) {        if ($entry->[0] eq $_->[0]) {
2830            !!!cp ('t32');
2831          return;          return;
2832        }        }
2833      }      }
# Line 2462  sub _tree_construction_main ($) { Line 2842  sub _tree_construction_main ($) {
2842    
2843        ## Step 6        ## Step 6
2844        if ($entry->[0] eq '#marker') {        if ($entry->[0] eq '#marker') {
2845            !!!cp ('t33_1');
2846          #          #
2847        } else {        } else {
2848          my $in_open_elements;          my $in_open_elements;
2849          OE: for (@{$self->{open_elements}}) {          OE: for (@{$self->{open_elements}}) {
2850            if ($entry->[0] eq $_->[0]) {            if ($entry->[0] eq $_->[0]) {
2851                !!!cp ('t33');
2852              $in_open_elements = 1;              $in_open_elements = 1;
2853              last OE;              last OE;
2854            }            }
2855          }          }
2856          if ($in_open_elements) {          if ($in_open_elements) {
2857              !!!cp ('t34');
2858            #            #
2859          } else {          } else {
2860              ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
2861              !!!cp ('t35');
2862            redo S4;            redo S4;
2863          }          }
2864        }        }
# Line 2496  sub _tree_construction_main ($) { Line 2881  sub _tree_construction_main ($) {
2881    
2882        ## Step 11        ## Step 11
2883        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
2884            !!!cp ('t36');
2885          ## Step 7'          ## Step 7'
2886          $i++;          $i++;
2887          $entry = $active_formatting_elements->[$i];          $entry = $active_formatting_elements->[$i];
2888                    
2889          redo S7;          redo S7;
2890        }        }
2891    
2892          !!!cp ('t37');
2893      } # S7      } # S7
2894    }; # $reconstruct_active_formatting_elements    }; # $reconstruct_active_formatting_elements
2895    
2896    my $clear_up_to_marker = sub {    my $clear_up_to_marker = sub {
2897      for (reverse 0..$#$active_formatting_elements) {      for (reverse 0..$#$active_formatting_elements) {
2898        if ($active_formatting_elements->[$_]->[0] eq '#marker') {        if ($active_formatting_elements->[$_]->[0] eq '#marker') {
2899            !!!cp ('t38');
2900          splice @$active_formatting_elements, $_;          splice @$active_formatting_elements, $_;
2901          return;          return;
2902        }        }
2903      }      }
2904    
2905        !!!cp ('t39');
2906    }; # $clear_up_to_marker    }; # $clear_up_to_marker
2907    
2908    my $parse_rcdata = sub ($$) {    my $insert;
2909      my ($content_model_flag, $insert) = @_;  
2910      my $parse_rcdata = sub ($) {
2911        my ($content_model_flag) = @_;
2912    
2913      ## Step 1      ## Step 1
2914      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
# Line 2523  sub _tree_construction_main ($) { Line 2916  sub _tree_construction_main ($) {
2916      !!!create-element ($el, $start_tag_name, $token->{attributes});      !!!create-element ($el, $start_tag_name, $token->{attributes});
2917    
2918      ## Step 2      ## Step 2
2919      $insert->($el); # /context node/->append_child ($el)      $insert->($el);
2920    
2921      ## Step 3      ## Step 3
2922      $self->{content_model} = $content_model_flag; # CDATA or RCDATA      $self->{content_model} = $content_model_flag; # CDATA or RCDATA
# Line 2533  sub _tree_construction_main ($) { Line 2926  sub _tree_construction_main ($) {
2926      my $text = '';      my $text = '';
2927      !!!next-token;      !!!next-token;
2928      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
2929          !!!cp ('t40');
2930        $text .= $token->{data};        $text .= $token->{data};
2931        !!!next-token;        !!!next-token;
2932      }      }
2933    
2934      ## Step 5      ## Step 5
2935      if (length $text) {      if (length $text) {
2936          !!!cp ('t41');
2937        my $text = $self->{document}->create_text_node ($text);        my $text = $self->{document}->create_text_node ($text);
2938        $el->append_child ($text);        $el->append_child ($text);
2939      }      }
# Line 2547  sub _tree_construction_main ($) { Line 2942  sub _tree_construction_main ($) {
2942      $self->{content_model} = PCDATA_CONTENT_MODEL;      $self->{content_model} = PCDATA_CONTENT_MODEL;
2943    
2944      ## Step 7      ## Step 7
2945      if ($token->{type} == END_TAG_TOKEN and $token->{tag_name} eq $start_tag_name) {      if ($token->{type} == END_TAG_TOKEN and
2946            $token->{tag_name} eq $start_tag_name) {
2947          !!!cp ('t42');
2948        ## 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});  
2949      } else {      } else {
2950        die "$0: $content_model_flag in parse_rcdata";        ## NOTE: An end-of-file token.
2951          if ($content_model_flag == CDATA_CONTENT_MODEL) {
2952            !!!cp ('t43');
2953            !!!parse-error (type => 'in CDATA:#'.$token->{type});
2954          } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
2955            !!!cp ('t44');
2956            !!!parse-error (type => 'in RCDATA:#'.$token->{type});
2957          } else {
2958            die "$0: $content_model_flag in parse_rcdata";
2959          }
2960      }      }
2961      !!!next-token;      !!!next-token;
2962    }; # $parse_rcdata    }; # $parse_rcdata
2963    
2964    my $script_start_tag = sub ($) {    my $script_start_tag = sub () {
     my $insert = $_[0];  
2965      my $script_el;      my $script_el;
2966      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, 'script', $token->{attributes});
2967      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
# Line 2571  sub _tree_construction_main ($) { Line 2972  sub _tree_construction_main ($) {
2972      my $text = '';      my $text = '';
2973      !!!next-token;      !!!next-token;
2974      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
2975          !!!cp ('t45');
2976        $text .= $token->{data};        $text .= $token->{data};
2977        !!!next-token;        !!!next-token;
2978      } # stop if non-character token or tokenizer stops tokenising      } # stop if non-character token or tokenizer stops tokenising
2979      if (length $text) {      if (length $text) {
2980          !!!cp ('t46');
2981        $script_el->manakai_append_text ($text);        $script_el->manakai_append_text ($text);
2982      }      }
2983                                
# Line 2582  sub _tree_construction_main ($) { Line 2985  sub _tree_construction_main ($) {
2985    
2986      if ($token->{type} == END_TAG_TOKEN and      if ($token->{type} == END_TAG_TOKEN and
2987          $token->{tag_name} eq 'script') {          $token->{tag_name} eq 'script') {
2988          !!!cp ('t47');
2989        ## Ignore the token        ## Ignore the token
2990      } else {      } else {
2991          !!!cp ('t48');
2992        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!parse-error (type => 'in CDATA:#'.$token->{type});
2993        ## ISSUE: And ignore?        ## ISSUE: And ignore?
2994        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
2995      }      }
2996            
2997      if (defined $self->{inner_html_node}) {      if (defined $self->{inner_html_node}) {
2998          !!!cp ('t49');
2999        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3000      } else {      } else {
3001          !!!cp ('t50');
3002        ## TODO: $old_insertion_point = current insertion point        ## TODO: $old_insertion_point = current insertion point
3003        ## TODO: insertion point = just before the next input character        ## TODO: insertion point = just before the next input character
3004    
# Line 2605  sub _tree_construction_main ($) { Line 3012  sub _tree_construction_main ($) {
3012      !!!next-token;      !!!next-token;
3013    }; # $script_start_tag    }; # $script_start_tag
3014    
3015      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
3016      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
3017      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3018    
3019    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3020      my $tag_name = shift;      my $tag_name = shift;
3021    
3022        ## NOTE: The adoption agency algorithm (AAA).
3023    
3024      FET: {      FET: {
3025        ## Step 1        ## Step 1
3026        my $formatting_element;        my $formatting_element;
3027        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
3028        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3029          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {
3030              !!!cp ('t51');
3031            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
3032            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
3033            last AFE;            last AFE;
3034          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {
3035              !!!cp ('t52');
3036            last AFE;            last AFE;
3037          }          }
3038        } # AFE        } # AFE
3039        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3040            !!!cp ('t53');
3041          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!parse-error (type => 'unmatched end tag:'.$tag_name);
3042          ## Ignore the token          ## Ignore the token
3043          !!!next-token;          !!!next-token;
# Line 2634  sub _tree_construction_main ($) { Line 3050  sub _tree_construction_main ($) {
3050          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3051          if ($node->[0] eq $formatting_element->[0]) {          if ($node->[0] eq $formatting_element->[0]) {
3052            if ($in_scope) {            if ($in_scope) {
3053                !!!cp ('t54');
3054              $formatting_element_i_in_open = $_;              $formatting_element_i_in_open = $_;
3055              last INSCOPE;              last INSCOPE;
3056            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3057                !!!cp ('t55');
3058              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3059              ## Ignore the token              ## Ignore the token
3060              !!!next-token;              !!!next-token;
3061              return;              return;
3062            }            }
3063          } elsif ({          } elsif ({
3064                    table => 1, caption => 1, td => 1, th => 1,                    applet => 1, table => 1, caption => 1, td => 1, th => 1,
3065                    button => 1, marquee => 1, object => 1, html => 1,                    button => 1, marquee => 1, object => 1, html => 1,
3066                   }->{$node->[1]}) {                   }->{$node->[1]}) {
3067              !!!cp ('t56');
3068            $in_scope = 0;            $in_scope = 0;
3069          }          }
3070        } # INSCOPE        } # INSCOPE
3071        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3072            !!!cp ('t57');
3073          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3074          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3075          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3076          return;          return;
3077        }        }
3078        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3079            !!!cp ('t58');
3080          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3081        }        }
3082                
# Line 2667  sub _tree_construction_main ($) { Line 3088  sub _tree_construction_main ($) {
3088          if (not $formatting_category->{$node->[1]} and          if (not $formatting_category->{$node->[1]} and
3089              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3090              ($special_category->{$node->[1]} or              ($special_category->{$node->[1]} or
3091               $scoping_category->{$node->[1]})) {               $scoping_category->{$node->[1]})) { ## Scoping is redundant, maybe
3092              !!!cp ('t59');
3093            $furthest_block = $node;            $furthest_block = $node;
3094            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
3095          } elsif ($node->[0] eq $formatting_element->[0]) {          } elsif ($node->[0] eq $formatting_element->[0]) {
3096              !!!cp ('t60');
3097            last OE;            last OE;
3098          }          }
3099        } # OE        } # OE
3100                
3101        ## Step 3        ## Step 3
3102        unless (defined $furthest_block) { # MUST        unless (defined $furthest_block) { # MUST
3103            !!!cp ('t61');
3104          splice @{$self->{open_elements}}, $formatting_element_i_in_open;          splice @{$self->{open_elements}}, $formatting_element_i_in_open;
3105          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
3106          !!!next-token;          !!!next-token;
# Line 2689  sub _tree_construction_main ($) { Line 3113  sub _tree_construction_main ($) {
3113        ## Step 5        ## Step 5
3114        my $furthest_block_parent = $furthest_block->[0]->parent_node;        my $furthest_block_parent = $furthest_block->[0]->parent_node;
3115        if (defined $furthest_block_parent) {        if (defined $furthest_block_parent) {
3116            !!!cp ('t62');
3117          $furthest_block_parent->remove_child ($furthest_block->[0]);          $furthest_block_parent->remove_child ($furthest_block->[0]);
3118        }        }
3119                
# Line 2711  sub _tree_construction_main ($) { Line 3136  sub _tree_construction_main ($) {
3136          S7S2: {          S7S2: {
3137            for (reverse 0..$#$active_formatting_elements) {            for (reverse 0..$#$active_formatting_elements) {
3138              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
3139                  !!!cp ('t63');
3140                $node_i_in_active = $_;                $node_i_in_active = $_;
3141                last S7S2;                last S7S2;
3142              }              }
# Line 2724  sub _tree_construction_main ($) { Line 3150  sub _tree_construction_main ($) {
3150                    
3151          ## Step 4          ## Step 4
3152          if ($last_node->[0] eq $furthest_block->[0]) {          if ($last_node->[0] eq $furthest_block->[0]) {
3153              !!!cp ('t64');
3154            $bookmark_prev_el = $node->[0];            $bookmark_prev_el = $node->[0];
3155          }          }
3156                    
3157          ## Step 5          ## Step 5
3158          if ($node->[0]->has_child_nodes ()) {          if ($node->[0]->has_child_nodes ()) {
3159              !!!cp ('t65');
3160            my $clone = [$node->[0]->clone_node (0), $node->[1]];            my $clone = [$node->[0]->clone_node (0), $node->[1]];
3161            $active_formatting_elements->[$node_i_in_active] = $clone;            $active_formatting_elements->[$node_i_in_active] = $clone;
3162            $self->{open_elements}->[$node_i_in_open] = $clone;            $self->{open_elements}->[$node_i_in_open] = $clone;
# Line 2746  sub _tree_construction_main ($) { Line 3174  sub _tree_construction_main ($) {
3174        } # S7          } # S7  
3175                
3176        ## Step 8        ## Step 8
3177        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ({
3178               table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,
3179              }->{$common_ancestor_node->[1]}) {
3180            my $foster_parent_element;
3181            my $next_sibling;
3182                             OE: for (reverse 0..$#{$self->{open_elements}}) {
3183                               if ($self->{open_elements}->[$_]->[1] eq 'table') {
3184                                 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3185                                 if (defined $parent and $parent->node_type == 1) {
3186                                   !!!cp ('t65.1');
3187                                   $foster_parent_element = $parent;
3188                                   $next_sibling = $self->{open_elements}->[$_]->[0];
3189                                 } else {
3190                                   !!!cp ('t65.2');
3191                                   $foster_parent_element
3192                                     = $self->{open_elements}->[$_ - 1]->[0];
3193                                 }
3194                                 last OE;
3195                               }
3196                             } # OE
3197                             $foster_parent_element = $self->{open_elements}->[0]->[0]
3198                               unless defined $foster_parent_element;
3199            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
3200            $open_tables->[-1]->[1] = 1; # tainted
3201          } else {
3202            !!!cp ('t65.3');
3203            $common_ancestor_node->[0]->append_child ($last_node->[0]);
3204          }
3205                
3206        ## Step 9        ## Step 9
3207        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 2763  sub _tree_construction_main ($) { Line 3218  sub _tree_construction_main ($) {
3218        my $i;        my $i;
3219        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3220          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
3221              !!!cp ('t66');
3222            splice @$active_formatting_elements, $_, 1;            splice @$active_formatting_elements, $_, 1;
3223            $i-- and last AFE if defined $i;            $i-- and last AFE if defined $i;
3224          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
3225              !!!cp ('t67');
3226            $i = $_;            $i = $_;
3227          }          }
3228        } # AFE        } # AFE
# Line 2775  sub _tree_construction_main ($) { Line 3232  sub _tree_construction_main ($) {
3232        undef $i;        undef $i;
3233        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3234          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
3235              !!!cp ('t68');
3236            splice @{$self->{open_elements}}, $_, 1;            splice @{$self->{open_elements}}, $_, 1;
3237            $i-- and last OE if defined $i;            $i-- and last OE if defined $i;
3238          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
3239              !!!cp ('t69');
3240            $i = $_;            $i = $_;
3241          }          }
3242        } # OE        } # OE
# Line 2788  sub _tree_construction_main ($) { Line 3247  sub _tree_construction_main ($) {
3247      } # FET      } # FET
3248    }; # $formatting_end_tag    }; # $formatting_end_tag
3249    
3250    my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
3251      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
3252    }; # $insert_to_current    }; # $insert_to_current
3253    
3254    my $insert_to_foster = sub {    my $insert_to_foster = sub {
3255                         my $child = shift;      my $child = shift;
3256                         if ({      if ({
3257                              table => 1, tbody => 1, tfoot => 1,           table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,
3258                              thead => 1, tr => 1,          }->{$self->{open_elements}->[-1]->[1]}) {
3259                             }->{$self->{open_elements}->[-1]->[1]}) {        # MUST
3260                           # MUST        my $foster_parent_element;
3261                           my $foster_parent_element;        my $next_sibling;
                          my $next_sibling;  
3262                           OE: for (reverse 0..$#{$self->{open_elements}}) {                           OE: for (reverse 0..$#{$self->{open_elements}}) {
3263                             if ($self->{open_elements}->[$_]->[1] eq 'table') {                             if ($self->{open_elements}->[$_]->[1] eq 'table') {
3264                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3265                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3266                                   !!!cp ('t70');
3267                                 $foster_parent_element = $parent;                                 $foster_parent_element = $parent;
3268                                 $next_sibling = $self->{open_elements}->[$_]->[0];                                 $next_sibling = $self->{open_elements}->[$_]->[0];
3269                               } else {                               } else {
3270                                   !!!cp ('t71');
3271                                 $foster_parent_element                                 $foster_parent_element
3272                                   = $self->{open_elements}->[$_ - 1]->[0];                                   = $self->{open_elements}->[$_ - 1]->[0];
3273                               }                               }
# Line 2818  sub _tree_construction_main ($) { Line 3278  sub _tree_construction_main ($) {
3278                             unless defined $foster_parent_element;                             unless defined $foster_parent_element;
3279                           $foster_parent_element->insert_before                           $foster_parent_element->insert_before
3280                             ($child, $next_sibling);                             ($child, $next_sibling);
3281                         } else {        $open_tables->[-1]->[1] = 1; # tainted
3282                           $self->{open_elements}->[-1]->[0]->append_child ($child);      } else {
3283                         }        !!!cp ('t72');
3284          $self->{open_elements}->[-1]->[0]->append_child ($child);
3285        }
3286    }; # $insert_to_foster    }; # $insert_to_foster
3287    
   my $insert;  
   
3288    B: {    B: {
3289      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
3290          !!!cp ('t73');
3291        !!!parse-error (type => 'DOCTYPE in the middle');        !!!parse-error (type => 'DOCTYPE in the middle');
3292        ## Ignore the token        ## Ignore the token
3293        ## Stay in the phase        ## Stay in the phase
3294        !!!next-token;        !!!next-token;
3295        redo B;        redo 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;  
3296      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
3297               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
3298        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3299          ## Turn into the main phase          !!!cp ('t79');
3300          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html');
3301          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
3302        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3303          ## Turn into the main phase          !!!cp ('t80');
3304          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html');
3305          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
3306          } else {
3307            !!!cp ('t81');
3308        }        }
3309    
3310  ## ISSUE: "aa<html>" is not a parse error.        !!!cp ('t82');
3311  ## ISSUE: "<html>" in fragment is not a parse error.        !!!parse-error (type => 'not first start tag');
       unless ($token->{first_start_tag}) {  
         !!!parse-error (type => 'not first start tag');  
       }  
3312        my $top_el = $self->{open_elements}->[0]->[0];        my $top_el = $self->{open_elements}->[0]->[0];
3313        for my $attr_name (keys %{$token->{attributes}}) {        for my $attr_name (keys %{$token->{attributes}}) {
3314          unless ($top_el->has_attribute_ns (undef, $attr_name)) {          unless ($top_el->has_attribute_ns (undef, $attr_name)) {
3315              !!!cp ('t84');
3316            $top_el->set_attribute_ns            $top_el->set_attribute_ns
3317              (undef, [undef, $attr_name],              (undef, [undef, $attr_name],
3318               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
# Line 2890  sub _tree_construction_main ($) { Line 3323  sub _tree_construction_main ($) {
3323      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
3324        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
3325        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
3326            !!!cp ('t85');
3327          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
3328        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
3329            !!!cp ('t86');
3330          $self->{open_elements}->[0]->[0]->append_child ($comment);          $self->{open_elements}->[0]->[0]->append_child ($comment);
3331        } else {        } else {
3332            !!!cp ('t87');
3333          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
3334        }        }
3335        !!!next-token;        !!!next-token;
# Line 2901  sub _tree_construction_main ($) { Line 3337  sub _tree_construction_main ($) {
3337      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & HEAD_IMS) {
3338        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
3339          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3340            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3341                !!!cp ('t88.2');
3342                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3343              } else {
3344                !!!cp ('t88.1');
3345                ## Ignore the token.
3346                !!!next-token;
3347                redo B;
3348              }
3349            unless (length $token->{data}) {            unless (length $token->{data}) {
3350                !!!cp ('t88');
3351              !!!next-token;              !!!next-token;
3352              redo B;              redo B;
3353            }            }
3354          }          }
3355    
3356          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3357              !!!cp ('t89');
3358            ## As if <head>            ## As if <head>
3359            !!!create-element ($self->{head_element}, 'head');            !!!create-element ($self->{head_element}, 'head');
3360            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
# Line 2919  sub _tree_construction_main ($) { Line 3365  sub _tree_construction_main ($) {
3365    
3366            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
3367          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3368              !!!cp ('t90');
3369            ## As if </noscript>            ## As if </noscript>
3370            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
3371            !!!parse-error (type => 'in noscript:#character');            !!!parse-error (type => 'in noscript:#character');
# Line 2929  sub _tree_construction_main ($) { Line 3376  sub _tree_construction_main ($) {
3376    
3377            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
3378          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3379              !!!cp ('t91');
3380            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
3381    
3382            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
3383            } else {
3384              !!!cp ('t92');
3385          }          }
3386    
3387              ## "after head" insertion mode              ## "after head" insertion mode
# Line 2943  sub _tree_construction_main ($) { Line 3393  sub _tree_construction_main ($) {
3393            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
3394              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3395                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3396                    !!!cp ('t93');
3397                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});
3398                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3399                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];
# Line 2950  sub _tree_construction_main ($) { Line 3401  sub _tree_construction_main ($) {
3401                  !!!next-token;                  !!!next-token;
3402                  redo B;                  redo B;
3403                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3404                    !!!cp ('t94');
3405                  #                  #
3406                } else {                } else {
3407                    !!!cp ('t95');
3408                  !!!parse-error (type => 'in head:head'); # or in head noscript                  !!!parse-error (type => 'in head:head'); # or in head noscript
3409                  ## Ignore the token                  ## Ignore the token
3410                  !!!next-token;                  !!!next-token;
3411                  redo B;                  redo B;
3412                }                }
3413              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3414                  !!!cp ('t96');
3415                ## As if <head>                ## As if <head>
3416                !!!create-element ($self->{head_element}, 'head');                !!!create-element ($self->{head_element}, 'head');
3417                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
# Line 2965  sub _tree_construction_main ($) { Line 3419  sub _tree_construction_main ($) {
3419    
3420                $self->{insertion_mode} = IN_HEAD_IM;                $self->{insertion_mode} = IN_HEAD_IM;
3421                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
3422                } else {
3423                  !!!cp ('t97');
3424              }              }
3425    
3426              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
3427                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3428                    !!!cp ('t98');
3429                  ## As if </noscript>                  ## As if </noscript>
3430                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3431                  !!!parse-error (type => 'in noscript:base');                  !!!parse-error (type => 'in noscript:base');
3432                                
3433                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3434                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3435                  } else {
3436                    !!!cp ('t99');
3437                }                }
3438    
3439                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3440                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3441                    !!!cp ('t100');
3442                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3443                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3444                  } else {
3445                    !!!cp ('t101');
3446                }                }
3447                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
3448                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3449                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3450                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3451                !!!next-token;                !!!next-token;
3452                redo B;                redo B;
3453              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
3454                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3455                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3456                    !!!cp ('t102');
3457                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3458                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3459                  } else {
3460                    !!!cp ('t103');
3461                }                }
3462                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
3463                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3464                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3465                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3466                !!!next-token;                !!!next-token;
3467                redo B;                redo B;
3468              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
3469                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3470                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3471                    !!!cp ('t104');
3472                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3473                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3474                  } else {
3475                    !!!cp ('t105');
3476                }                }
3477                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
3478                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.
3479    
3480                unless ($self->{confident}) {                unless ($self->{confident}) {
3481                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) { ## TODO: And if supported
3482                      !!!cp ('t106');
3483                    $self->{change_encoding}                    $self->{change_encoding}
3484                        ->($self, $token->{attributes}->{charset}->{value});                        ->($self, $token->{attributes}->{charset}->{value});
3485                                        
# Line 3025  sub _tree_construction_main ($) { Line 3494  sub _tree_construction_main ($) {
3494                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
3495                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
3496                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
3497                        !!!cp ('t107');
3498                      $self->{change_encoding}                      $self->{change_encoding}
3499                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);
3500                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3501                          ->set_user_data (manakai_has_reference =>                          ->set_user_data (manakai_has_reference =>
3502                                               $token->{attributes}->{content}                                               $token->{attributes}->{content}
3503                                                     ->{has_reference});                                                     ->{has_reference});
3504                      } else {
3505                        !!!cp ('t108');
3506                    }                    }
3507                  }                  }
3508                } else {                } else {
3509                  if ($token->{attributes}->{charset}) {                  if ($token->{attributes}->{charset}) {
3510                      !!!cp ('t109');
3511                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3512                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
3513                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
3514                                                 ->{has_reference});                                                 ->{has_reference});
3515                  }                  }
3516                  if ($token->{attributes}->{content}) {                  if ($token->{attributes}->{content}) {
3517                      !!!cp ('t110');
3518                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3519                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
3520                                             $token->{attributes}->{content}                                             $token->{attributes}->{content}
# Line 3048  sub _tree_construction_main ($) { Line 3522  sub _tree_construction_main ($) {
3522                  }                  }
3523                }                }
3524    
3525                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3526                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3527                !!!next-token;                !!!next-token;
3528                redo B;                redo B;
3529              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
3530                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3531                    !!!cp ('t111');
3532                  ## As if </noscript>                  ## As if </noscript>
3533                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3534                  !!!parse-error (type => 'in noscript:title');                  !!!parse-error (type => 'in noscript:title');
# Line 3061  sub _tree_construction_main ($) { Line 3536  sub _tree_construction_main ($) {
3536                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3537                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3538                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3539                    !!!cp ('t112');
3540                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3541                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3542                  } else {
3543                    !!!cp ('t113');
3544                }                }
3545    
3546                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3547                my $parent = defined $self->{head_element} ? $self->{head_element}                my $parent = defined $self->{head_element} ? $self->{head_element}
3548                    : $self->{open_elements}->[-1]->[0];                    : $self->{open_elements}->[-1]->[0];
3549                $parse_rcdata->(RCDATA_CONTENT_MODEL,                $parse_rcdata->(RCDATA_CONTENT_MODEL);
3550                                sub { $parent->append_child ($_[0]) });                pop @{$self->{open_elements}} # <head>
               pop @{$self->{open_elements}}  
3551                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3552                redo B;                redo B;
3553              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style') {
# Line 3078  sub _tree_construction_main ($) { Line 3555  sub _tree_construction_main ($) {
3555                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
3556                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3557                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3558                    !!!cp ('t114');
3559                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3560                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3561                  } else {
3562                    !!!cp ('t115');
3563                }                }
3564                $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);                $parse_rcdata->(CDATA_CONTENT_MODEL);
3565                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3566                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3567                redo B;                redo B;
3568              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
3569                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
3570                    !!!cp ('t116');
3571                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
3572                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes});
3573                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
3574                  !!!next-token;                  !!!next-token;
3575                  redo B;                  redo B;
3576                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3577                    !!!cp ('t117');
3578                  !!!parse-error (type => 'in noscript:noscript');                  !!!parse-error (type => 'in noscript:noscript');
3579                  ## Ignore the token                  ## Ignore the token
3580                  !!!next-token;                  !!!next-token;
3581                  redo B;                  redo B;
3582                } else {                } else {
3583                    !!!cp ('t118');
3584                  #                  #
3585                }                }
3586              } elsif ($token->{tag_name} eq 'script') {              } elsif ($token->{tag_name} eq 'script') {
3587                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3588                    !!!cp ('t119');
3589                  ## As if </noscript>                  ## As if </noscript>
3590                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3591                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:script');
# Line 3109  sub _tree_construction_main ($) { Line 3593  sub _tree_construction_main ($) {
3593                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3594                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3595                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3596                    !!!cp ('t120');
3597                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name});
3598                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3599                  } else {
3600                    !!!cp ('t121');
3601                }                }
3602    
3603                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3604                $script_start_tag->($insert_to_current);                $script_start_tag->();
3605                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3606                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3607                redo B;                redo B;
3608              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
3609                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
3610                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3611                    !!!cp ('t122');
3612                  ## As if </noscript>                  ## As if </noscript>
3613                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3614                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});
# Line 3131  sub _tree_construction_main ($) { Line 3619  sub _tree_construction_main ($) {
3619                                    
3620                  ## Reprocess in the "after head" insertion mode...                  ## Reprocess in the "after head" insertion mode...
3621                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3622                    !!!cp ('t124');
3623                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3624                                    
3625                  ## Reprocess in the "after head" insertion mode...                  ## Reprocess in the "after head" insertion mode...
3626                  } else {
3627                    !!!cp ('t125');
3628                }                }
3629    
3630                ## "after head" insertion mode                ## "after head" insertion mode
3631                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
3632                if ($token->{tag_name} eq 'body') {                if ($token->{tag_name} eq 'body') {
3633                    !!!cp ('t126');
3634                  $self->{insertion_mode} = IN_BODY_IM;                  $self->{insertion_mode} = IN_BODY_IM;
3635                } elsif ($token->{tag_name} eq 'frameset') {                } elsif ($token->{tag_name} eq 'frameset') {
3636                    !!!cp ('t127');
3637                  $self->{insertion_mode} = IN_FRAMESET_IM;                  $self->{insertion_mode} = IN_FRAMESET_IM;
3638                } else {                } else {
3639                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
# Line 3148  sub _tree_construction_main ($) { Line 3641  sub _tree_construction_main ($) {
3641                !!!next-token;                !!!next-token;
3642                redo B;                redo B;
3643              } else {              } else {
3644                  !!!cp ('t128');
3645                #                #
3646              }              }
3647    
3648              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3649                  !!!cp ('t129');
3650                ## As if </noscript>                ## As if </noscript>
3651                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3652                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});
# Line 3162  sub _tree_construction_main ($) { Line 3657  sub _tree_construction_main ($) {
3657    
3658                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3659              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3660                  !!!cp ('t130');
3661                ## As if </head>                ## As if </head>
3662                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3663    
3664                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3665                } else {
3666                  !!!cp ('t131');
3667              }              }
3668    
3669              ## "after head" insertion mode              ## "after head" insertion mode
# Line 3177  sub _tree_construction_main ($) { Line 3675  sub _tree_construction_main ($) {
3675            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
3676              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3677                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3678                    !!!cp ('t132');
3679                  ## As if <head>                  ## As if <head>
3680                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, 'head');
3681                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
# Line 3188  sub _tree_construction_main ($) { Line 3687  sub _tree_construction_main ($) {
3687                  !!!next-token;                  !!!next-token;
3688                  redo B;                  redo B;
3689                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3690                    !!!cp ('t133');
3691                  ## As if </noscript>                  ## As if </noscript>
3692                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3693                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:/head');
3694                                    
3695                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3696                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 3198  sub _tree_construction_main ($) { Line 3698  sub _tree_construction_main ($) {
3698                  !!!next-token;                  !!!next-token;
3699                  redo B;                  redo B;
3700                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3701                    !!!cp ('t134');
3702                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3703                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
3704                  !!!next-token;                  !!!next-token;
3705                  redo B;                  redo B;
3706                } else {                } else {
3707                    !!!cp ('t135');
3708                  #                  #
3709                }                }
3710              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
3711                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3712                    !!!cp ('t136');
3713                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3714                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3715                  !!!next-token;                  !!!next-token;
3716                  redo B;                  redo B;
3717                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3718                    !!!cp ('t137');
3719                  !!!parse-error (type => 'unmatched end tag:noscript');                  !!!parse-error (type => 'unmatched end tag:noscript');
3720                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
3721                  !!!next-token;                  !!!next-token;
3722                  redo B;                  redo B;
3723                } else {                } else {
3724                    !!!cp ('t138');
3725                  #                  #
3726                }                }
3727              } elsif ({              } elsif ({
3728                        body => 1, html => 1,                        body => 1, html => 1,
3729                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3730                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3731                    !!!cp ('t139');
3732                  ## As if <head>                  ## As if <head>
3733                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, 'head');
3734                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
# Line 3231  sub _tree_construction_main ($) { Line 3737  sub _tree_construction_main ($) {
3737                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3738                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3739                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3740                    !!!cp ('t140');
3741                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3742                  ## Ignore the token                  ## Ignore the token
3743                  !!!next-token;                  !!!next-token;
3744                  redo B;                  redo B;
3745                  } else {
3746                    !!!cp ('t141');
3747                }                }
3748                                
3749                #                #
# Line 3242  sub _tree_construction_main ($) { Line 3751  sub _tree_construction_main ($) {
3751                        p => 1, br => 1,                        p => 1, br => 1,
3752                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3753                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3754                    !!!cp ('t142');
3755                  ## As if <head>                  ## As if <head>
3756                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, 'head');
3757                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
# Line 3249  sub _tree_construction_main ($) { Line 3759  sub _tree_construction_main ($) {
3759    
3760                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3761                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3762                  } else {
3763                    !!!cp ('t143');
3764                }                }
3765    
3766                #                #
3767              } else {              } else {
3768                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3769                    !!!cp ('t144');
3770                  #                  #
3771                } else {                } else {
3772                    !!!cp ('t145');
3773                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3774                  ## Ignore the token                  ## Ignore the token
3775                  !!!next-token;                  !!!next-token;
# Line 3264  sub _tree_construction_main ($) { Line 3778  sub _tree_construction_main ($) {
3778              }              }
3779    
3780              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3781                  !!!cp ('t146');
3782                ## As if </noscript>                ## As if </noscript>
3783                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3784                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});
# Line 3274  sub _tree_construction_main ($) { Line 3789  sub _tree_construction_main ($) {
3789    
3790                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3791              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3792                  !!!cp ('t147');
3793                ## As if </head>                ## As if </head>
3794                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3795    
3796                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3797              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3798    ## ISSUE: This case cannot be reached?
3799                  !!!cp ('t148');
3800                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3801                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
3802                !!!next-token;                !!!next-token;
3803                redo B;                redo B;
3804                } else {
3805                  !!!cp ('t149');
3806              }              }
3807    
3808              ## "after head" insertion mode              ## "after head" insertion mode
# Line 3291  sub _tree_construction_main ($) { Line 3811  sub _tree_construction_main ($) {
3811              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
3812              ## reprocess              ## reprocess
3813              redo B;              redo B;
3814            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3815              die "$0: $token->{type}: Unknown token type";          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3816            }            !!!cp ('t149.1');
3817    
3818              ## NOTE: As if <head>
3819              !!!create-element ($self->{head_element}, 'head');
3820              $self->{open_elements}->[-1]->[0]->append_child
3821                  ($self->{head_element});
3822              #push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3823              #$self->{insertion_mode} = IN_HEAD_IM;
3824              ## NOTE: Reprocess.
3825    
3826              ## NOTE: As if </head>
3827              #pop @{$self->{open_elements}};
3828              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3829              ## NOTE: Reprocess.
3830              
3831              #
3832            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3833              !!!cp ('t149.2');
3834    
3835              ## NOTE: As if </head>
3836              pop @{$self->{open_elements}};
3837              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3838              ## NOTE: Reprocess.
3839    
3840              #
3841            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3842              !!!cp ('t149.3');
3843    
3844              !!!parse-error (type => 'in noscript:#eof');
3845    
3846              ## As if </noscript>
3847              pop @{$self->{open_elements}};
3848              #$self->{insertion_mode} = IN_HEAD_IM;
3849              ## NOTE: Reprocess.
3850    
3851              ## NOTE: As if </head>
3852              pop @{$self->{open_elements}};
3853              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3854              ## NOTE: Reprocess.
3855    
3856              #
3857            } else {
3858              !!!cp ('t149.4');
3859              #
3860            }
3861    
3862            ## NOTE: As if <body>
3863            !!!insert-element ('body');
3864            $self->{insertion_mode} = IN_BODY_IM;
3865            ## NOTE: Reprocess.
3866            redo B;
3867          } else {
3868            die "$0: $token->{type}: Unknown token type";
3869          }
3870    
3871            ## ISSUE: An issue in the spec.            ## ISSUE: An issue in the spec.
3872      } elsif ($self->{insertion_mode} & BODY_IMS) {      } elsif ($self->{insertion_mode} & BODY_IMS) {
3873            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
3874                !!!cp ('t150');
3875              ## NOTE: There is a code clone of "character in body".              ## NOTE: There is a code clone of "character in body".
3876              $reconstruct_active_formatting_elements->($insert_to_current);              $reconstruct_active_formatting_elements->($insert_to_current);
3877                            
# Line 3312  sub _tree_construction_main ($) { Line 3886  sub _tree_construction_main ($) {
3886                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
3887                if ($self->{insertion_mode} == IN_CELL_IM) {                if ($self->{insertion_mode} == IN_CELL_IM) {
3888                  ## have an element in table scope                  ## have an element in table scope
3889                  my $tn;                  for (reverse 0..$#{$self->{open_elements}}) {
                 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
3890                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
3891                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {
3892                      $tn = $node->[1];                      !!!cp ('t151');
3893                      last INSCOPE;  
3894                        ## Close the cell
3895                        !!!back-token; # <?>
3896                        $token = {type => END_TAG_TOKEN, tag_name => $node->[1]};
3897                        redo B;
3898                    } elsif ({                    } elsif ({
3899                              table => 1, html => 1,                              table => 1, html => 1,
3900                             }->{$node->[1]}) {                             }->{$node->[1]}) {
3901                      last INSCOPE;                      !!!cp ('t152');
3902                    }                      ## ISSUE: This case can never be reached, maybe.
3903                  } # INSCOPE                      last;
                   unless (defined $tn) {  
                     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
3904                    }                    }
3905                                    }
3906                  ## Close the cell  
3907                  !!!back-token; # <?>                  !!!cp ('t153');
3908                  $token = {type => END_TAG_TOKEN, tag_name => $tn};                  !!!parse-error (type => 'start tag not allowed',
3909                        value => $token->{tag_name});
3910                    ## Ignore the token
3911                    !!!next-token;
3912                  redo B;                  redo B;
3913                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
3914                  !!!parse-error (type => 'not closed:caption');                  !!!parse-error (type => 'not closed:caption');
3915                                    
3916                  ## As if </caption>                  ## NOTE: As if </caption>.
3917                  ## have a table element in table scope                  ## have a table element in table scope
3918                  my $i;                  my $i;
3919                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
3920                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
3921                    if ($node->[1] eq 'caption') {                      my $node = $self->{open_elements}->[$_];
3922                      $i = $_;                      if ($node->[1] eq 'caption') {
3923                      last INSCOPE;                        !!!cp ('t155');
3924                    } elsif ({                        $i = $_;
3925                              table => 1, html => 1,                        last INSCOPE;
3926                             }->{$node->[1]}) {                      } elsif ({
3927                      last INSCOPE;                                table => 1, html => 1,
3928                                 }->{$node->[1]}) {
3929                          !!!cp ('t156');
3930                          last;
3931                        }
3932                    }                    }
3933    
3934                      !!!cp ('t157');
3935                      !!!parse-error (type => 'start tag not allowed',
3936                                      value => $token->{tag_name});
3937                      ## Ignore the token
3938                      !!!next-token;
3939                      redo B;
3940                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!parse-error (type => 'unmatched end tag:caption');  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
3941                                    
3942                  ## generate implied end tags                  ## generate implied end tags
3943                  if ({                  while ({
3944                       dd => 1, dt => 1, li => 1, p => 1,                          dd => 1, dt => 1, li => 1, p => 1,
3945                       td => 1, th => 1, tr => 1,                         }->{$self->{open_elements}->[-1]->[1]}) {
3946                       tbody => 1, tfoot=> 1, thead => 1,                    !!!cp ('t158');
3947                      }->{$self->{open_elements}->[-1]->[1]}) {                    pop @{$self->{open_elements}};
                   !!!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;  
3948                  }                  }
3949    
3950                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
3951                      !!!cp ('t159');
3952                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3953                    } else {
3954                      !!!cp ('t160');
3955                  }                  }
3956                                    
3957                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3386  sub _tree_construction_main ($) { Line 3963  sub _tree_construction_main ($) {
3963                  ## reprocess                  ## reprocess
3964                  redo B;                  redo B;
3965                } else {                } else {
3966                    !!!cp ('t161');
3967                  #                  #
3968                }                }
3969              } else {              } else {
3970                  !!!cp ('t162');
3971                #                #
3972              }              }
3973            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
# Line 3399  sub _tree_construction_main ($) { Line 3978  sub _tree_construction_main ($) {
3978                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3979                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
3980                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[1] eq $token->{tag_name}) {
3981                        !!!cp ('t163');
3982                      $i = $_;                      $i = $_;
3983                      last INSCOPE;                      last INSCOPE;
3984                    } elsif ({                    } elsif ({
3985                              table => 1, html => 1,                              table => 1, html => 1,
3986                             }->{$node->[1]}) {                             }->{$node->[1]}) {
3987                        !!!cp ('t164');
3988                      last INSCOPE;                      last INSCOPE;
3989                    }                    }
3990                  } # INSCOPE                  } # INSCOPE
3991                    unless (defined $i) {                    unless (defined $i) {
3992                        !!!cp ('t165');
3993                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3994                      ## Ignore the token                      ## Ignore the token
3995                      !!!next-token;                      !!!next-token;
# Line 3415  sub _tree_construction_main ($) { Line 3997  sub _tree_construction_main ($) {
3997                    }                    }
3998                                    
3999                  ## generate implied end tags                  ## generate implied end tags
4000                  if ({                  while ({
4001                       dd => 1, dt => 1, li => 1, p => 1,                          dd => 1, dt => 1, li => 1, p => 1,
4002                       td => ($token->{tag_name} eq 'th'),                         }->{$self->{open_elements}->[-1]->[1]}) {
4003                       th => ($token->{tag_name} eq 'td'),                    !!!cp ('t166');
4004                       tr => 1,                    pop @{$self->{open_elements}};
                      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;  
4005                  }                  }
4006                    
4007                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
4008                      !!!cp ('t167');
4009                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4010                    } else {
4011                      !!!cp ('t168');
4012                  }                  }
4013                                    
4014                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3441  sub _tree_construction_main ($) { Line 4020  sub _tree_construction_main ($) {
4020                  !!!next-token;                  !!!next-token;
4021                  redo B;                  redo B;
4022                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4023                    !!!cp ('t169');
4024                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4025                  ## Ignore the token                  ## Ignore the token
4026                  !!!next-token;                  !!!next-token;
4027                  redo B;                  redo B;
4028                } else {                } else {
4029                    !!!cp ('t170');
4030                  #                  #
4031                }                }
4032              } elsif ($token->{tag_name} eq 'caption') {              } elsif ($token->{tag_name} eq 'caption') {
4033                if ($self->{insertion_mode} == IN_CAPTION_IM) {                if ($self->{insertion_mode} == IN_CAPTION_IM) {
4034                  ## have a table element in table scope                  ## have a table element in table scope
4035                  my $i;                  my $i;
4036                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4037                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4038                    if ($node->[1] eq $token->{tag_name}) {                      my $node = $self->{open_elements}->[$_];
4039                      $i = $_;                      if ($node->[1] eq $token->{tag_name}) {
4040                      last INSCOPE;                        !!!cp ('t171');
4041                    } elsif ({                        $i = $_;
4042                              table => 1, html => 1,                        last INSCOPE;
4043                             }->{$node->[1]}) {                      } elsif ({
4044                      last INSCOPE;                                table => 1, html => 1,
4045                                 }->{$node->[1]}) {
4046                          !!!cp ('t172');
4047                          last;
4048                        }
4049                    }                    }
4050    
4051                      !!!cp ('t173');
4052                      !!!parse-error (type => 'unmatched end tag',
4053                                      value => $token->{tag_name});
4054                      ## Ignore the token
4055                      !!!next-token;
4056                      redo B;
4057                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4058                                    
4059                  ## generate implied end tags                  ## generate implied end tags
4060                  if ({                  while ({
4061                       dd => 1, dt => 1, li => 1, p => 1,                          dd => 1, dt => 1, li => 1, p => 1,
4062                       td => 1, th => 1, tr => 1,                         }->{$self->{open_elements}->[-1]->[1]}) {
4063                       tbody => 1, tfoot=> 1, thead => 1,                    !!!cp ('t174');
4064                      }->{$self->{open_elements}->[-1]->[1]}) {                    pop @{$self->{open_elements}};
                   !!!back-token;  
                   $token = {type => END_TAG_TOKEN,  
                             tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                   redo B;  
4065                  }                  }
4066                                    
4067                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4068                      !!!cp ('t175');
4069                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4070                    } else {
4071                      !!!cp ('t176');
4072                  }                  }
4073                                    
4074                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3495  sub _tree_construction_main ($) { Line 4080  sub _tree_construction_main ($) {
4080                  !!!next-token;                  !!!next-token;
4081                  redo B;                  redo B;
4082                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4083                    !!!cp ('t177');
4084                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4085                  ## Ignore the token                  ## Ignore the token
4086                  !!!next-token;                  !!!next-token;
4087                  redo B;                  redo B;
4088                } else {                } else {
4089                    !!!cp ('t178');
4090                  #                  #
4091                }                }
4092              } elsif ({              } elsif ({
# Line 3510  sub _tree_construction_main ($) { Line 4097  sub _tree_construction_main ($) {
4097                ## have an element in table scope                ## have an element in table scope
4098                my $i;                my $i;
4099                my $tn;                my $tn;
4100                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: {
4101                  my $node = $self->{open_elements}->[$_];                  for (reverse 0..$#{$self->{open_elements}}) {
4102                  if ($node->[1] eq $token->{tag_name}) {                    my $node = $self->{open_elements}->[$_];
4103                    $i = $_;                    if ($node->[1] eq $token->{tag_name}) {
4104                    last INSCOPE;                      !!!cp ('t179');
4105                  } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {                      $i = $_;
4106                    $tn = $node->[1];  
4107                    ## NOTE: There is exactly one |td| or |th| element                      ## Close the cell
4108                    ## in scope in the stack of open elements by definition.                      !!!back-token; # </?>
4109                  } elsif ({                      $token = {type => END_TAG_TOKEN, tag_name => $tn};
4110                            table => 1, html => 1,                      redo B;
4111                           }->{$node->[1]}) {                    } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {
4112                    last INSCOPE;                      !!!cp ('t180');
4113                        $tn = $node->[1];
4114                        ## NOTE: There is exactly one |td| or |th| element
4115                        ## in scope in the stack of open elements by definition.
4116                      } elsif ({
4117                                table => 1, html => 1,
4118                               }->{$node->[1]}) {
4119                        ## ISSUE: Can this be reached?
4120                        !!!cp ('t181');
4121                        last;
4122                      }
4123                  }                  }
4124                } # INSCOPE  
4125                unless (defined $i) {                  !!!cp ('t182');
4126                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag',
4127                        value => $token->{tag_name});
4128                  ## Ignore the token                  ## Ignore the token
4129                  !!!next-token;                  !!!next-token;
4130                  redo B;                  redo B;
4131                }                } # INSCOPE
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => END_TAG_TOKEN, tag_name => $tn};  
               redo B;  
4132              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
4133                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4134                !!!parse-error (type => 'not closed:caption');                !!!parse-error (type => 'not closed:caption');
# Line 3546  sub _tree_construction_main ($) { Line 4139  sub _tree_construction_main ($) {
4139                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4140                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4141                  if ($node->[1] eq 'caption') {                  if ($node->[1] eq 'caption') {
4142                      !!!cp ('t184');
4143                    $i = $_;                    $i = $_;
4144                    last INSCOPE;                    last INSCOPE;
4145                  } elsif ({                  } elsif ({
4146                            table => 1, html => 1,                            table => 1, html => 1,
4147                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4148                      !!!cp ('t185');
4149                    last INSCOPE;                    last INSCOPE;
4150                  }                  }
4151                } # INSCOPE                } # INSCOPE
4152                unless (defined $i) {                unless (defined $i) {
4153                    !!!cp ('t186');
4154                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!parse-error (type => 'unmatched end tag:caption');
4155                  ## Ignore the token                  ## Ignore the token
4156                  !!!next-token;                  !!!next-token;
# Line 3562  sub _tree_construction_main ($) { Line 4158  sub _tree_construction_main ($) {
4158                }                }
4159                                
4160                ## generate implied end tags                ## generate implied end tags
4161                if ({                while ({
4162                     dd => 1, dt => 1, li => 1, p => 1,                        dd => 1, dt => 1, li => 1, p => 1,
4163                     td => 1, th => 1, tr => 1,                       }->{$self->{open_elements}->[-1]->[1]}) {
4164                     tbody => 1, tfoot=> 1, thead => 1,                  !!!cp ('t187');
4165                    }->{$self->{open_elements}->[-1]->[1]}) {                  pop @{$self->{open_elements}};
                 !!!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;  
4166                }                }
4167    
4168                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4169                    !!!cp ('t188');
4170                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4171                  } else {
4172                    !!!cp ('t189');
4173                }                }
4174    
4175                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 3591  sub _tree_construction_main ($) { Line 4184  sub _tree_construction_main ($) {
4184                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
4185                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4186                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
4187                    !!!cp ('t190');
4188                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4189                  ## Ignore the token                  ## Ignore the token
4190                  !!!next-token;                  !!!next-token;
4191                  redo B;                  redo B;
4192                } else {                } else {
4193                    !!!cp ('t191');
4194                  #                  #
4195                }                }
4196              } elsif ({              } elsif ({
# Line 3603  sub _tree_construction_main ($) { Line 4198  sub _tree_construction_main ($) {
4198                        thead => 1, tr => 1,                        thead => 1, tr => 1,
4199                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
4200                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4201                  !!!cp ('t192');
4202                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4203                ## Ignore the token                ## Ignore the token
4204                !!!next-token;                !!!next-token;
4205                redo B;                redo B;
4206              } else {              } else {
4207                  !!!cp ('t193');
4208                #                #
4209              }              }
4210          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4211            for my $entry (@{$self->{open_elements}}) {
4212              if (not {
4213                dd => 1, dt => 1, li => 1, p => 1, tbody => 1, td => 1, tfoot => 1,
4214                th => 1, thead => 1, tr => 1, body => 1, html => 1,
4215              }->{$entry->[1]}) {
4216                !!!cp ('t75');
4217                !!!parse-error (type => 'in body:#eof');
4218                last;
4219              }
4220            }
4221    
4222            ## Stop parsing.
4223            last B;
4224        } else {        } else {
4225          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
4226        }        }
# Line 3618  sub _tree_construction_main ($) { Line 4229  sub _tree_construction_main ($) {
4229        #        #
4230      } elsif ($self->{insertion_mode} & TABLE_IMS) {      } elsif ($self->{insertion_mode} & TABLE_IMS) {
4231        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4232              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if (not $open_tables->[-1]->[1] and # tainted
4233                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              $token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4234              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4235                                
4236                unless (length $token->{data}) {            unless (length $token->{data}) {
4237                  !!!next-token;              !!!cp ('t194');
4238                  redo B;              !!!next-token;
4239                }              redo B;
4240              }            } else {
4241                !!!cp ('t195');
4242              }
4243            }
4244    
4245              !!!parse-error (type => 'in table:#character');              !!!parse-error (type => 'in table:#character');
4246    
# Line 3647  sub _tree_construction_main ($) { Line 4262  sub _tree_construction_main ($) {
4262                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] eq 'table') {
4263                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4264                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
4265                        !!!cp ('t196');
4266                      $foster_parent_element = $parent;                      $foster_parent_element = $parent;
4267                      $next_sibling = $self->{open_elements}->[$_]->[0];                      $next_sibling = $self->{open_elements}->[$_]->[0];
4268                      $prev_sibling = $next_sibling->previous_sibling;                      $prev_sibling = $next_sibling->previous_sibling;
4269                    } else {                    } else {
4270                        !!!cp ('t197');
4271                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
4272                      $prev_sibling = $foster_parent_element->last_child;                      $prev_sibling = $foster_parent_element->last_child;
4273                    }                    }
# Line 3662  sub _tree_construction_main ($) { Line 4279  sub _tree_construction_main ($) {
4279                  unless defined $foster_parent_element;                  unless defined $foster_parent_element;
4280                if (defined $prev_sibling and                if (defined $prev_sibling and
4281                    $prev_sibling->node_type == 3) {                    $prev_sibling->node_type == 3) {
4282                    !!!cp ('t198');
4283                  $prev_sibling->manakai_append_text ($token->{data});                  $prev_sibling->manakai_append_text ($token->{data});
4284                } else {                } else {
4285                    !!!cp ('t199');
4286                  $foster_parent_element->insert_before                  $foster_parent_element->insert_before
4287                    ($self->{document}->create_text_node ($token->{data}),                    ($self->{document}->create_text_node ($token->{data}),
4288                     $next_sibling);                     $next_sibling);
4289                }                }
4290              } else {            $open_tables->[-1]->[1] = 1; # tainted
4291                $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          } else {
4292              }            !!!cp ('t200');
4293              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4294            }
4295                            
4296              !!!next-token;          !!!next-token;
4297              redo B;          redo B;
4298        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4299              if ({              if ({
4300                   tr => ($self->{insertion_mode} != IN_ROW_IM),                   tr => ($self->{insertion_mode} != IN_ROW_IM),
# Line 3683  sub _tree_construction_main ($) { Line 4304  sub _tree_construction_main ($) {
4304                  ## Clear back to table context                  ## Clear back to table context
4305                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4306                         $self->{open_elements}->[-1]->[1] ne 'html') {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4307                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t201');
4308                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4309                  }                  }
4310                                    
# Line 3694  sub _tree_construction_main ($) { Line 4315  sub _tree_construction_main ($) {
4315    
4316                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4317                  unless ($token->{tag_name} eq 'tr') {                  unless ($token->{tag_name} eq 'tr') {
4318                      !!!cp ('t202');
4319                    !!!parse-error (type => 'missing start tag:tr');                    !!!parse-error (type => 'missing start tag:tr');
4320                  }                  }
4321                                    
# Line 3701  sub _tree_construction_main ($) { Line 4323  sub _tree_construction_main ($) {
4323                  while (not {                  while (not {
4324                    tbody => 1, tfoot => 1, thead => 1, html => 1,                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4325                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4326                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t203');
4327                      ## ISSUE: Can this case be reached?
4328                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4329                  }                  }
4330                                    
4331                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
4332                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
4333                      !!!cp ('t204');
4334                    !!!insert-element ($token->{tag_name}, $token->{attributes});                    !!!insert-element ($token->{tag_name}, $token->{attributes});
4335                    !!!next-token;                    !!!next-token;
4336                    redo B;                    redo B;
4337                  } else {                  } else {
4338                      !!!cp ('t205');
4339                    !!!insert-element ('tr');                    !!!insert-element ('tr');
4340                    ## reprocess in the "in row" insertion mode                    ## reprocess in the "in row" insertion mode
4341                  }                  }
4342                  } else {
4343                    !!!cp ('t206');
4344                }                }
4345    
4346                ## Clear back to table row context                ## Clear back to table row context
4347                while (not {                while (not {
4348                  tr => 1, html => 1,                  tr => 1, html => 1,
4349                }->{$self->{open_elements}->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4350                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t207');
4351                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4352                }                }
4353                                
# Line 3743  sub _tree_construction_main ($) { Line 4370  sub _tree_construction_main ($) {
4370                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4371                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4372                    if ($node->[1] eq 'tr') {                    if ($node->[1] eq 'tr') {
4373                        !!!cp ('t208');
4374                      $i = $_;                      $i = $_;
4375                      last INSCOPE;                      last INSCOPE;
4376                    } elsif ({                    } elsif ({
4377                              table => 1, html => 1,                              html => 1,
4378    
4379                                ## NOTE: This element does not appear here, maybe.
4380                                table => 1,
4381                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4382                        !!!cp ('t209');
4383                      last INSCOPE;                      last INSCOPE;
4384                    }                    }
4385                  } # INSCOPE                  } # INSCOPE
4386                  unless (defined $i) {                  unless (defined $i) {
4387                    !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});                   !!!cp ('t210');
4388    ## TODO: This type is wrong.
4389                     !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});
4390                    ## Ignore the token                    ## Ignore the token
4391                    !!!next-token;                    !!!next-token;
4392                    redo B;                    redo B;
# Line 3762  sub _tree_construction_main ($) { Line 4396  sub _tree_construction_main ($) {
4396                  while (not {                  while (not {
4397                    tr => 1, html => 1,                    tr => 1, html => 1,
4398                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4399                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t211');
4400                      ## ISSUE: Can this case be reached?
4401                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4402                  }                  }
4403                                    
4404                  pop @{$self->{open_elements}}; # tr                  pop @{$self->{open_elements}}; # tr
4405                  $self->{insertion_mode} = IN_TABLE_BODY_IM;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
4406                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
4407                      !!!cp ('t212');
4408                    ## reprocess                    ## reprocess
4409                    redo B;                    redo B;
4410                  } else {                  } else {
4411                      !!!cp ('t213');
4412                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
4413                  }                  }
4414                }                }
# Line 3784  sub _tree_construction_main ($) { Line 4421  sub _tree_construction_main ($) {
4421                    if ({                    if ({
4422                         tbody => 1, thead => 1, tfoot => 1,                         tbody => 1, thead => 1, tfoot => 1,
4423                        }->{$node->[1]}) {                        }->{$node->[1]}) {
4424                        !!!cp ('t214');
4425                      $i = $_;                      $i = $_;
4426                      last INSCOPE;                      last INSCOPE;
4427                    } elsif ({                    } elsif ({
4428                              table => 1, html => 1,                              table => 1, html => 1,
4429                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4430                        !!!cp ('t215');
4431                      last INSCOPE;                      last INSCOPE;
4432                    }                    }
4433                  } # INSCOPE                  } # INSCOPE
4434                  unless (defined $i) {                  unless (defined $i) {
4435                      !!!cp ('t216');
4436    ## TODO: This erorr type ios wrong.
4437                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4438                    ## Ignore the token                    ## Ignore the token
4439                    !!!next-token;                    !!!next-token;
# Line 3803  sub _tree_construction_main ($) { Line 4444  sub _tree_construction_main ($) {
4444                  while (not {                  while (not {
4445                    tbody => 1, tfoot => 1, thead => 1, html => 1,                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4446                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4447                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t217');
4448                      ## ISSUE: Can this state be reached?
4449                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4450                  }                  }
4451                                    
# Line 3817  sub _tree_construction_main ($) { Line 4459  sub _tree_construction_main ($) {
4459                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4460                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4461                  ## reprocess in "in table" insertion mode...                  ## reprocess in "in table" insertion mode...
4462                  } else {
4463                    !!!cp ('t218');
4464                }                }
4465    
4466                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
4467                  ## Clear back to table context                  ## Clear back to table context
4468                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4469                         $self->{open_elements}->[-1]->[1] ne 'html') {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4470                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t219');
4471                      ## ISSUE: Can this state be reached?
4472                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4473                  }                  }
4474                                    
# Line 3839  sub _tree_construction_main ($) { Line 4484  sub _tree_construction_main ($) {
4484                  ## Clear back to table context                  ## Clear back to table context
4485                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4486                         $self->{open_elements}->[-1]->[1] ne 'html') {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4487                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t220');
4488                      ## ISSUE: Can this state be reached?
4489                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4490                  }                  }
4491                                    
# Line 3868  sub _tree_construction_main ($) { Line 4514  sub _tree_construction_main ($) {
4514                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4515                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4516                  if ($node->[1] eq 'table') {                  if ($node->[1] eq 'table') {
4517                      !!!cp ('t221');
4518                    $i = $_;                    $i = $_;
4519                    last INSCOPE;                    last INSCOPE;
4520                  } elsif ({                  } elsif ({
4521                            table => 1, html => 1,                            #table => 1,
4522                              html => 1,
4523                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4524                      !!!cp ('t222');
4525                    last INSCOPE;                    last INSCOPE;
4526                  }                  }
4527                } # INSCOPE                } # INSCOPE
4528                unless (defined $i) {                unless (defined $i) {
4529                    !!!cp ('t223');
4530    ## TODO: The following is wrong, maybe.
4531                  !!!parse-error (type => 'unmatched end tag:table');                  !!!parse-error (type => 'unmatched end tag:table');
4532                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
4533                  !!!next-token;                  !!!next-token;
4534                  redo B;                  redo B;
4535                }                }
4536                                
4537    ## TODO: Followings are removed from the latest spec.
4538                ## generate implied end tags                ## generate implied end tags
4539                if ({                while ({
4540                     dd => 1, dt => 1, li => 1, p => 1,                        dd => 1, dt => 1, li => 1, p => 1,
4541                     td => 1, th => 1, tr => 1,                       }->{$self->{open_elements}->[-1]->[1]}) {
4542                     tbody => 1, tfoot=> 1, thead => 1,                  !!!cp ('t224');
4543                    }->{$self->{open_elements}->[-1]->[1]}) {                  pop @{$self->{open_elements}};
                 !!!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;  
4544                }                }
4545    
4546                if ($self->{open_elements}->[-1]->[1] ne 'table') {                if ($self->{open_elements}->[-1]->[1] ne 'table') {
4547                    !!!cp ('t225');
4548    ## ISSUE: Can this case be reached?
4549                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4550                  } else {
4551                    !!!cp ('t226');
4552                }                }
4553    
4554                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
4555                  pop @{$open_tables};
4556    
4557                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
4558    
4559                ## reprocess                ## reprocess
4560                redo B;                redo B;
4561          } else {          } elsif ($token->{tag_name} eq 'style') {
4562            !!!parse-error (type => 'in table:'.$token->{tag_name});            if (not $open_tables->[-1]->[1]) { # tainted
4563                !!!cp ('t227.8');
4564                ## NOTE: This is a "as if in head" code clone.
4565                $parse_rcdata->(CDATA_CONTENT_MODEL);
4566                redo B;
4567              } else {
4568                !!!cp ('t227.7');
4569                #
4570              }
4571            } elsif ($token->{tag_name} eq 'script') {
4572              if (not $open_tables->[-1]->[1]) { # tainted
4573                !!!cp ('t227.6');
4574                ## NOTE: This is a "as if in head" code clone.
4575                $script_start_tag->();
4576                redo B;
4577              } else {
4578                !!!cp ('t227.5');
4579                #
4580              }
4581            } elsif ($token->{tag_name} eq 'input') {
4582              if (not $open_tables->[-1]->[1]) { # tainted
4583                if ($token->{attributes}->{type}) { ## TODO: case
4584                  my $type = lc $token->{attributes}->{type}->{value};
4585                  if ($type eq 'hidden') {
4586                    !!!cp ('t227.3');
4587                    !!!parse-error (type => 'in table:'.$token->{tag_name});
4588    
4589            $insert = $insert_to_foster;                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4590    
4591                    ## TODO: form element pointer
4592    
4593                    pop @{$self->{open_elements}};
4594    
4595                    !!!next-token;
4596                    redo B;
4597                  } else {
4598                    !!!cp ('t227.2');
4599                    #
4600                  }
4601                } else {
4602                  !!!cp ('t227.1');
4603                  #
4604                }
4605              } else {
4606                !!!cp ('t227.4');
4607                #
4608              }
4609            } else {
4610              !!!cp ('t227');
4611            #            #
4612          }          }
4613    
4614            !!!parse-error (type => 'in table:'.$token->{tag_name});
4615    
4616            $insert = $insert_to_foster;
4617            #
4618        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
4619              if ($token->{tag_name} eq 'tr' and              if ($token->{tag_name} eq 'tr' and
4620                  $self->{insertion_mode} == IN_ROW_IM) {                  $self->{insertion_mode} == IN_ROW_IM) {
# Line 3921  sub _tree_construction_main ($) { Line 4623  sub _tree_construction_main ($) {
4623                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4624                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4625                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4626                      !!!cp ('t228');
4627                    $i = $_;                    $i = $_;
4628                    last INSCOPE;                    last INSCOPE;
4629                  } elsif ({                  } elsif ({
4630                            table => 1, html => 1,                            table => 1, html => 1,
4631                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4632                      !!!cp ('t229');
4633                    last INSCOPE;                    last INSCOPE;
4634                  }                  }
4635                } # INSCOPE                } # INSCOPE
4636                unless (defined $i) {                unless (defined $i) {
4637                    !!!cp ('t230');
4638                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4639                  ## Ignore the token                  ## Ignore the token
4640                  !!!next-token;                  !!!next-token;
4641                  redo B;                  redo B;
4642                  } else {
4643                    !!!cp ('t232');
4644                }                }
4645    
4646                ## Clear back to table row context                ## Clear back to table row context
4647                while (not {                while (not {
4648                  tr => 1, html => 1,                  tr => 1, html => 1,
4649                }->{$self->{open_elements}->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4650                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t231');
4651    ## ISSUE: Can this state be reached?
4652                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4653                }                }
4654    
# Line 3956  sub _tree_construction_main ($) { Line 4664  sub _tree_construction_main ($) {
4664                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4665                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4666                    if ($node->[1] eq 'tr') {                    if ($node->[1] eq 'tr') {
4667                        !!!cp ('t233');
4668                      $i = $_;                      $i = $_;
4669                      last INSCOPE;                      last INSCOPE;
4670                    } elsif ({                    } elsif ({
4671                              table => 1, html => 1,                              table => 1, html => 1,
4672                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4673                        !!!cp ('t234');
4674                      last INSCOPE;                      last INSCOPE;
4675                    }                    }
4676                  } # INSCOPE                  } # INSCOPE
4677                  unless (defined $i) {                  unless (defined $i) {
4678                      !!!cp ('t235');
4679    ## TODO: The following is wrong.
4680                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});
4681                    ## Ignore the token                    ## Ignore the token
4682                    !!!next-token;                    !!!next-token;
# Line 3975  sub _tree_construction_main ($) { Line 4687  sub _tree_construction_main ($) {
4687                  while (not {                  while (not {
4688                    tr => 1, html => 1,                    tr => 1, html => 1,
4689                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4690                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t236');
4691    ## ISSUE: Can this state be reached?
4692                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4693                  }                  }
4694                                    
# Line 3992  sub _tree_construction_main ($) { Line 4705  sub _tree_construction_main ($) {
4705                    if ({                    if ({
4706                         tbody => 1, thead => 1, tfoot => 1,                         tbody => 1, thead => 1, tfoot => 1,
4707                        }->{$node->[1]}) {                        }->{$node->[1]}) {
4708                        !!!cp ('t237');
4709                      $i = $_;                      $i = $_;
4710                      last INSCOPE;                      last INSCOPE;
4711                    } elsif ({                    } elsif ({
4712                              table => 1, html => 1,                              table => 1, html => 1,
4713                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4714                        !!!cp ('t238');
4715                      last INSCOPE;                      last INSCOPE;
4716                    }                    }
4717                  } # INSCOPE                  } # INSCOPE
4718                  unless (defined $i) {                  unless (defined $i) {
4719                      !!!cp ('t239');
4720                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4721                    ## Ignore the token                    ## Ignore the token
4722                    !!!next-token;                    !!!next-token;
# Line 4011  sub _tree_construction_main ($) { Line 4727  sub _tree_construction_main ($) {
4727                  while (not {                  while (not {
4728                    tbody => 1, tfoot => 1, thead => 1, html => 1,                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4729                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4730                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t240');
4731                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4732                  }                  }
4733                                    
# Line 4027  sub _tree_construction_main ($) { Line 4743  sub _tree_construction_main ($) {
4743                  ## reprocess in the "in table" insertion mode...                  ## reprocess in the "in table" insertion mode...
4744                }                }
4745    
4746                  ## NOTE: </table> in the "in table" insertion mode.
4747                  ## When you edit the code fragment below, please ensure that
4748                  ## the code for <table> in the "in table" insertion mode
4749                  ## is synced with it.
4750    
4751                ## have a table element in table scope                ## have a table element in table scope
4752                my $i;                my $i;
4753                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4754                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4755                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4756                      !!!cp ('t241');
4757                    $i = $_;                    $i = $_;
4758                    last INSCOPE;                    last INSCOPE;
4759                  } elsif ({                  } elsif ({
4760                            table => 1, html => 1,                            table => 1, html => 1,
4761                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4762                      !!!cp ('t242');
4763                    last INSCOPE;                    last INSCOPE;
4764                  }                  }
4765                } # INSCOPE                } # INSCOPE
4766                unless (defined $i) {                unless (defined $i) {
4767                    !!!cp ('t243');
4768                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4769                  ## Ignore the token                  ## Ignore the token
4770                  !!!next-token;                  !!!next-token;
4771                  redo B;                  redo B;
4772                }                }
   
               ## 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]);  
               }  
4773                                    
4774                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
4775                  pop @{$open_tables};
4776                                
4777                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
4778                                
# Line 4079  sub _tree_construction_main ($) { Line 4788  sub _tree_construction_main ($) {
4788                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4789                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4790                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[1] eq $token->{tag_name}) {
4791                        !!!cp ('t247');
4792                      $i = $_;                      $i = $_;
4793                      last INSCOPE;                      last INSCOPE;
4794                    } elsif ({                    } elsif ({
4795                              table => 1, html => 1,                              table => 1, html => 1,
4796                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4797                        !!!cp ('t248');
4798                      last INSCOPE;                      last INSCOPE;
4799                    }                    }
4800                  } # INSCOPE                  } # INSCOPE
4801                    unless (defined $i) {                    unless (defined $i) {
4802                        !!!cp ('t249');
4803                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4804                      ## Ignore the token                      ## Ignore the token
4805                      !!!next-token;                      !!!next-token;
# Line 4100  sub _tree_construction_main ($) { Line 4812  sub _tree_construction_main ($) {
4812                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4813                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4814                    if ($node->[1] eq 'tr') {                    if ($node->[1] eq 'tr') {
4815                        !!!cp ('t250');
4816                      $i = $_;                      $i = $_;
4817                      last INSCOPE;                      last INSCOPE;
4818                    } elsif ({                    } elsif ({
4819                              table => 1, html => 1,                              table => 1, html => 1,
4820                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4821                        !!!cp ('t251');
4822                      last INSCOPE;                      last INSCOPE;
4823                    }                    }
4824                  } # INSCOPE                  } # INSCOPE
4825                    unless (defined $i) {                    unless (defined $i) {
4826                        !!!cp ('t252');
4827                      !!!parse-error (type => 'unmatched end tag:tr');                      !!!parse-error (type => 'unmatched end tag:tr');
4828                      ## Ignore the token                      ## Ignore the token
4829                      !!!next-token;                      !!!next-token;
# Line 4119  sub _tree_construction_main ($) { Line 4834  sub _tree_construction_main ($) {
4834                  while (not {                  while (not {
4835                    tr => 1, html => 1,                    tr => 1, html => 1,
4836                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4837                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t253');
4838    ## ISSUE: Can this case be reached?
4839                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4840                  }                  }
4841                                    
# Line 4133  sub _tree_construction_main ($) { Line 4849  sub _tree_construction_main ($) {
4849                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4850                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4851                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4852                      !!!cp ('t254');
4853                    $i = $_;                    $i = $_;
4854                    last INSCOPE;                    last INSCOPE;
4855                  } elsif ({                  } elsif ({
4856                            table => 1, html => 1,                            table => 1, html => 1,
4857                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4858                      !!!cp ('t255');
4859                    last INSCOPE;                    last INSCOPE;
4860                  }                  }
4861                } # INSCOPE                } # INSCOPE
4862                unless (defined $i) {                unless (defined $i) {
4863                    !!!cp ('t256');
4864                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4865                  ## Ignore the token                  ## Ignore the token
4866                  !!!next-token;                  !!!next-token;
# Line 4152  sub _tree_construction_main ($) { Line 4871  sub _tree_construction_main ($) {
4871                while (not {                while (not {
4872                  tbody => 1, tfoot => 1, thead => 1, html => 1,                  tbody => 1, tfoot => 1, thead => 1, html => 1,
4873                }->{$self->{open_elements}->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4874                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t257');
4875    ## ISSUE: Can this case be reached?
4876                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4877                }                }
4878    
# Line 4166  sub _tree_construction_main ($) { Line 4886  sub _tree_construction_main ($) {
4886                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
4887                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
4888                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4889                  !!!cp ('t258');
4890                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4891                ## Ignore the token                ## Ignore the token
4892                !!!next-token;                !!!next-token;
4893                redo B;                redo B;
4894          } else {          } else {
4895              !!!cp ('t259');
4896            !!!parse-error (type => 'in table:/'.$token->{tag_name});            !!!parse-error (type => 'in table:/'.$token->{tag_name});
4897    
4898            $insert = $insert_to_foster;            $insert = $insert_to_foster;
4899            #            #
4900          }          }
4901          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4902            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
4903                    @{$self->{open_elements}} == 1) { # redundant, maybe
4904              !!!parse-error (type => 'in body:#eof');
4905              !!!cp ('t259.1');
4906              #
4907            } else {
4908              !!!cp ('t259.2');
4909              #
4910            }
4911    
4912            ## Stop parsing
4913            last B;
4914        } else {        } else {
4915          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
4916        }        }
# Line 4184  sub _tree_construction_main ($) { Line 4919  sub _tree_construction_main ($) {
4919              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4920                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4921                unless (length $token->{data}) {                unless (length $token->{data}) {
4922                    !!!cp ('t260');
4923                  !!!next-token;                  !!!next-token;
4924                  redo B;                  redo B;
4925                }                }
4926              }              }
4927                            
4928                !!!cp ('t261');
4929              #              #
4930            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
4931              if ($token->{tag_name} eq 'col') {              if ($token->{tag_name} eq 'col') {
4932                  !!!cp ('t262');
4933                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
4934                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
4935                !!!next-token;                !!!next-token;
4936                redo B;                redo B;
4937              } else {              } else {
4938                  !!!cp ('t263');
4939                #                #
4940              }              }
4941            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
4942              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
4943                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] eq 'html') {
4944                    !!!cp ('t264');
4945                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!parse-error (type => 'unmatched end tag:colgroup');
4946                  ## Ignore the token                  ## Ignore the token
4947                  !!!next-token;                  !!!next-token;
4948                  redo B;                  redo B;
4949                } else {                } else {
4950                    !!!cp ('t265');
4951                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
4952                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4953                  !!!next-token;                  !!!next-token;
4954                  redo B;                              redo B;            
4955                }                }
4956              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
4957                  !!!cp ('t266');
4958                !!!parse-error (type => 'unmatched end tag:col');                !!!parse-error (type => 'unmatched end tag:col');
4959                ## Ignore the token                ## Ignore the token
4960                !!!next-token;                !!!next-token;
4961                redo B;                redo B;
4962              } else {              } else {
4963                  !!!cp ('t267');
4964                #                #
4965              }              }
4966            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4967              #          if ($self->{open_elements}->[-1]->[1] eq 'html' or
4968            }              @{$self->{open_elements}} == 1) { # redundant, maybe
4969              !!!cp ('t270.2');
4970              ## Stop parsing.
4971              last B;
4972            } else {
4973              ## NOTE: As if </colgroup>.
4974              !!!cp ('t270.1');
4975              pop @{$self->{open_elements}}; # colgroup
4976              $self->{insertion_mode} = IN_TABLE_IM;
4977              ## Reprocess.
4978              redo B;
4979            }
4980          } else {
4981            die "$0: $token->{type}: Unknown token type";
4982          }
4983    
4984            ## As if </colgroup>            ## As if </colgroup>
4985            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] eq 'html') {
4986                !!!cp ('t269');
4987    ## TODO: Wrong error type?
4988              !!!parse-error (type => 'unmatched end tag:colgroup');              !!!parse-error (type => 'unmatched end tag:colgroup');
4989              ## Ignore the token              ## Ignore the token
4990              !!!next-token;              !!!next-token;
4991              redo B;              redo B;
4992            } else {            } else {
4993                !!!cp ('t270');
4994              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
4995              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
4996              ## reprocess              ## reprocess
4997              redo B;              redo B;
4998            }            }
4999      } elsif ($self->{insertion_mode} == IN_SELECT_IM) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
5000        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
5001            !!!cp ('t271');
5002          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5003          !!!next-token;          !!!next-token;
5004          redo B;          redo B;
5005        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5006              if ($token->{tag_name} eq 'option') {              if ($token->{tag_name} eq 'option') {
5007                if ($self->{open_elements}->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5008                    !!!cp ('t272');
5009                  ## As if </option>                  ## As if </option>
5010                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5011                  } else {
5012                    !!!cp ('t273');
5013                }                }
5014    
5015                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
# Line 4253  sub _tree_construction_main ($) { Line 5017  sub _tree_construction_main ($) {
5017                redo B;                redo B;
5018              } elsif ($token->{tag_name} eq 'optgroup') {              } elsif ($token->{tag_name} eq 'optgroup') {
5019                if ($self->{open_elements}->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5020                    !!!cp ('t274');
5021                  ## As if </option>                  ## As if </option>
5022                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5023                  } else {
5024                    !!!cp ('t275');
5025                }                }
5026    
5027                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
5028                    !!!cp ('t276');
5029                  ## As if </optgroup>                  ## As if </optgroup>
5030                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5031                  } else {
5032                    !!!cp ('t277');
5033                }                }
5034    
5035                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes});
5036                !!!next-token;                !!!next-token;
5037                redo B;                redo B;
5038              } elsif ($token->{tag_name} eq 'select') {          } elsif ($token->{tag_name} eq 'select' or
5039                !!!parse-error (type => 'not closed:select');                   $token->{tag_name} eq 'input' or
5040                ## As if </select> instead                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5041                      {
5042                       caption => 1, table => 1,
5043                       tbody => 1, tfoot => 1, thead => 1,
5044                       tr => 1, td => 1, th => 1,
5045                      }->{$token->{tag_name}})) {
5046              ## TODO: The type below is not good - <select> is replaced by </select>
5047              !!!parse-error (type => 'not closed:select');
5048              ## NOTE: As if the token were </select> (<select> case) or
5049              ## as if there were </select> (otherwise).
5050                ## have an element in table scope                ## have an element in table scope
5051                my $i;                my $i;
5052                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5053                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5054                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq 'select') {
5055                      !!!cp ('t278');
5056                    $i = $_;                    $i = $_;
5057                    last INSCOPE;                    last INSCOPE;
5058                  } elsif ({                  } elsif ({
5059                            table => 1, html => 1,                            table => 1, html => 1,
5060                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5061                      !!!cp ('t279');
5062                    last INSCOPE;                    last INSCOPE;
5063                  }                  }
5064                } # INSCOPE                } # INSCOPE
5065                unless (defined $i) {                unless (defined $i) {
5066                    !!!cp ('t280');
5067                  !!!parse-error (type => 'unmatched end tag:select');                  !!!parse-error (type => 'unmatched end tag:select');
5068                  ## Ignore the token                  ## Ignore the token
5069                  !!!next-token;                  !!!next-token;
5070                  redo B;                  redo B;
5071                }                }
5072                                
5073                  !!!cp ('t281');
5074                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5075    
5076                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5077    
5078                !!!next-token;            if ($token->{tag_name} eq 'select') {
5079                redo B;              !!!cp ('t281.2');
5080                !!!next-token;
5081                redo B;
5082              } else {
5083                !!!cp ('t281.1');
5084                ## Reprocess the token.
5085                redo B;
5086              }
5087          } else {          } else {
5088              !!!cp ('t282');
5089            !!!parse-error (type => 'in select:'.$token->{tag_name});            !!!parse-error (type => 'in select:'.$token->{tag_name});
5090            ## Ignore the token            ## Ignore the token
5091            !!!next-token;            !!!next-token;
# Line 4304  sub _tree_construction_main ($) { Line 5095  sub _tree_construction_main ($) {
5095              if ($token->{tag_name} eq 'optgroup') {              if ($token->{tag_name} eq 'optgroup') {
5096                if ($self->{open_elements}->[-1]->[1] eq 'option' and                if ($self->{open_elements}->[-1]->[1] eq 'option' and
5097                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {
5098                    !!!cp ('t283');
5099                  ## As if </option>                  ## As if </option>
5100                  splice @{$self->{open_elements}}, -2;                  splice @{$self->{open_elements}}, -2;
5101                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
5102                    !!!cp ('t284');
5103                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5104                } else {                } else {
5105                    !!!cp ('t285');
5106                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5107                  ## Ignore the token                  ## Ignore the token
5108                }                }
# Line 4316  sub _tree_construction_main ($) { Line 5110  sub _tree_construction_main ($) {
5110                redo B;                redo B;
5111              } elsif ($token->{tag_name} eq 'option') {              } elsif ($token->{tag_name} eq 'option') {
5112                if ($self->{open_elements}->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5113                    !!!cp ('t286');
5114                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5115                } else {                } else {
5116                    !!!cp ('t287');
5117                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5118                  ## Ignore the token                  ## Ignore the token
5119                }                }
# Line 4329  sub _tree_construction_main ($) { Line 5125  sub _tree_construction_main ($) {
5125                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5126                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5127                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
5128                      !!!cp ('t288');
5129                    $i = $_;                    $i = $_;
5130                    last INSCOPE;                    last INSCOPE;
5131                  } elsif ({                  } elsif ({
5132                            table => 1, html => 1,                            table => 1, html => 1,
5133                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5134                      !!!cp ('t289');
5135                    last INSCOPE;                    last INSCOPE;
5136                  }                  }
5137                } # INSCOPE                } # INSCOPE
5138                unless (defined $i) {                unless (defined $i) {
5139                    !!!cp ('t290');
5140                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5141                  ## Ignore the token                  ## Ignore the token
5142                  !!!next-token;                  !!!next-token;
5143                  redo B;                  redo B;
5144                }                }
5145                                
5146                  !!!cp ('t291');
5147                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5148    
5149                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5150    
5151                !!!next-token;                !!!next-token;
5152                redo B;                redo B;
5153              } elsif ({          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5154                        caption => 1, table => 1, tbody => 1,                   {
5155                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                    caption => 1, table => 1, tbody => 1,
5156                       }->{$token->{tag_name}}) {                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
5157                     }->{$token->{tag_name}}) {
5158    ## TODO: The following is wrong?
5159                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5160                                
5161                ## have an element in table scope                ## have an element in table scope
# Line 4361  sub _tree_construction_main ($) { Line 5163  sub _tree_construction_main ($) {
5163                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5164                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5165                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
5166                      !!!cp ('t292');
5167                    $i = $_;                    $i = $_;
5168                    last INSCOPE;                    last INSCOPE;
5169                  } elsif ({                  } elsif ({
5170                            table => 1, html => 1,                            table => 1, html => 1,
5171                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5172                      !!!cp ('t293');
5173                    last INSCOPE;                    last INSCOPE;
5174                  }                  }
5175                } # INSCOPE                } # INSCOPE
5176                unless (defined $i) {                unless (defined $i) {
5177                    !!!cp ('t294');
5178                  ## Ignore the token                  ## Ignore the token
5179                  !!!next-token;                  !!!next-token;
5180                  redo B;                  redo B;
# Line 4381  sub _tree_construction_main ($) { Line 5186  sub _tree_construction_main ($) {
5186                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5187                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5188                  if ($node->[1] eq 'select') {                  if ($node->[1] eq 'select') {
5189                      !!!cp ('t295');
5190                    $i = $_;                    $i = $_;
5191                    last INSCOPE;                    last INSCOPE;
5192                  } elsif ({                  } elsif ({
5193                            table => 1, html => 1,                            table => 1, html => 1,
5194                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5195    ## ISSUE: Can this state be reached?
5196                      !!!cp ('t296');
5197                    last INSCOPE;                    last INSCOPE;
5198                  }                  }
5199                } # INSCOPE                } # INSCOPE
5200                unless (defined $i) {                unless (defined $i) {
5201                    !!!cp ('t297');
5202    ## TODO: The following error type is correct?
5203                  !!!parse-error (type => 'unmatched end tag:select');                  !!!parse-error (type => 'unmatched end tag:select');
5204                  ## Ignore the </select> token                  ## Ignore the </select> token
5205                  !!!next-token; ## TODO: ok?                  !!!next-token; ## TODO: ok?
5206                  redo B;                  redo B;
5207                }                }
5208                                
5209                  !!!cp ('t298');
5210                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5211    
5212                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
# Line 4403  sub _tree_construction_main ($) { Line 5214  sub _tree_construction_main ($) {
5214                ## reprocess                ## reprocess
5215                redo B;                redo B;
5216          } else {          } else {
5217              !!!cp ('t299');
5218            !!!parse-error (type => 'in select:/'.$token->{tag_name});            !!!parse-error (type => 'in select:/'.$token->{tag_name});
5219            ## Ignore the token            ## Ignore the token
5220            !!!next-token;            !!!next-token;
5221            redo B;            redo B;
5222          }          }
5223          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5224            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5225                    @{$self->{open_elements}} == 1) { # redundant, maybe
5226              !!!cp ('t299.1');
5227              !!!parse-error (type => 'in body:#eof');
5228            } else {
5229              !!!cp ('t299.2');
5230            }
5231    
5232            ## Stop parsing.
5233            last B;
5234        } else {        } else {
5235          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5236        }        }
# Line 4421  sub _tree_construction_main ($) { Line 5244  sub _tree_construction_main ($) {
5244            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5245                        
5246            unless (length $token->{data}) {            unless (length $token->{data}) {
5247                !!!cp ('t300');
5248              !!!next-token;              !!!next-token;
5249              redo B;              redo B;
5250            }            }
5251          }          }
5252                    
5253          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5254              !!!cp ('t301');
5255            !!!parse-error (type => 'after html:#character');            !!!parse-error (type => 'after html:#character');
5256    
5257            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
5258            } else {
5259              !!!cp ('t302');
5260          }          }
5261                    
5262          ## "after body" insertion mode          ## "after body" insertion mode
# Line 4440  sub _tree_construction_main ($) { Line 5267  sub _tree_construction_main ($) {
5267          redo B;          redo B;
5268        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5269          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5270              !!!cp ('t303');
5271            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name});
5272                        
5273            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
5274            } else {
5275              !!!cp ('t304');
5276          }          }
5277    
5278          ## "after body" insertion mode          ## "after body" insertion mode
# Line 4453  sub _tree_construction_main ($) { Line 5283  sub _tree_construction_main ($) {
5283          redo B;          redo B;
5284        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5285          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5286              !!!cp ('t305');
5287            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name});
5288                        
5289            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
5290            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
5291            } else {
5292              !!!cp ('t306');
5293          }          }
5294    
5295          ## "after body" insertion mode          ## "after body" insertion mode
5296          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
5297            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
5298                !!!cp ('t307');
5299              !!!parse-error (type => 'unmatched end tag:html');              !!!parse-error (type => 'unmatched end tag:html');
5300              ## Ignore the token              ## Ignore the token
5301              !!!next-token;              !!!next-token;
5302              redo B;              redo B;
5303            } else {            } else {
5304                !!!cp ('t308');
5305              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
5306              !!!next-token;              !!!next-token;
5307              redo B;              redo B;
5308            }            }
5309          } else {          } else {
5310              !!!cp ('t309');
5311            !!!parse-error (type => 'after body:/'.$token->{tag_name});            !!!parse-error (type => 'after body:/'.$token->{tag_name});
5312    
5313            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
5314            ## reprocess            ## reprocess
5315            redo B;            redo B;
5316          }          }
5317          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5318            !!!cp ('t309.2');
5319            ## Stop parsing
5320            last B;
5321        } else {        } else {
5322          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5323        }        }
# Line 4487  sub _tree_construction_main ($) { Line 5327  sub _tree_construction_main ($) {
5327            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5328                        
5329            unless (length $token->{data}) {            unless (length $token->{data}) {
5330                !!!cp ('t310');
5331              !!!next-token;              !!!next-token;
5332              redo B;              redo B;
5333            }            }
# Line 4494  sub _tree_construction_main ($) { Line 5335  sub _tree_construction_main ($) {
5335                    
5336          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
5337            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5338                !!!cp ('t311');
5339              !!!parse-error (type => 'in frameset:#character');              !!!parse-error (type => 'in frameset:#character');
5340            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
5341                !!!cp ('t312');
5342              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character');
5343            } else { # "after html frameset"            } else { # "after html frameset"
5344                !!!cp ('t313');
5345              !!!parse-error (type => 'after html:#character');              !!!parse-error (type => 'after html:#character');
5346    
5347              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5348              ## Reprocess in the "main" phase, "after frameset"...              ## Reprocess in the "after frameset" insertion mode.
5349              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character');
5350            }            }
5351                        
5352            ## Ignore the token.            ## Ignore the token.
5353            if (length $token->{data}) {            if (length $token->{data}) {
5354                !!!cp ('t314');
5355              ## reprocess the rest of characters              ## reprocess the rest of characters
5356            } else {            } else {
5357                !!!cp ('t315');
5358              !!!next-token;              !!!next-token;
5359            }            }
5360            redo B;            redo B;
# Line 4517  sub _tree_construction_main ($) { Line 5363  sub _tree_construction_main ($) {
5363          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
5364        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5365          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5366              !!!cp ('t316');
5367            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name});
5368    
5369            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
5370            ## Process in the "main" phase, "after frameset" insertion mode...            ## Process in the "after frameset" insertion mode.
5371          }          } else {
5372              !!!cp ('t317');
5373            }
5374    
5375          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
5376              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
5377              !!!cp ('t318');
5378            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes});
5379            !!!next-token;            !!!next-token;
5380            redo B;            redo B;
5381          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
5382                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
5383              !!!cp ('t319');
5384            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!insert-element ($token->{tag_name}, $token->{attributes});
5385            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
5386            !!!next-token;            !!!next-token;
5387            redo B;            redo B;
5388          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
5389              !!!cp ('t320');
5390            ## NOTE: As if in body.            ## NOTE: As if in body.
5391            $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);            $parse_rcdata->(CDATA_CONTENT_MODEL);
5392            redo B;            redo B;
5393          } else {          } else {
5394            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5395                !!!cp ('t321');
5396              !!!parse-error (type => 'in frameset:'.$token->{tag_name});              !!!parse-error (type => 'in frameset:'.$token->{tag_name});
5397            } else {            } else {
5398                !!!cp ('t322');
5399              !!!parse-error (type => 'after frameset:'.$token->{tag_name});              !!!parse-error (type => 'after frameset:'.$token->{tag_name});
5400            }            }
5401            ## Ignore the token            ## Ignore the token
# Line 4550  sub _tree_construction_main ($) { Line 5404  sub _tree_construction_main ($) {
5404          }          }
5405        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5406          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5407              !!!cp ('t323');
5408            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name});
5409    
5410            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
5411            ## Process in the "main" phase, "after frameset" insertion mode...            ## Process in the "after frameset" insertion mode.
5412            } else {
5413              !!!cp ('t324');
5414          }          }
5415    
5416          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
5417              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
5418            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] eq 'html' and
5419                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
5420                !!!cp ('t325');
5421              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5422              ## Ignore the token              ## Ignore the token
5423              !!!next-token;              !!!next-token;
5424            } else {            } else {
5425                !!!cp ('t326');
5426              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5427              !!!next-token;              !!!next-token;
5428            }            }
5429    
5430            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
5431                $self->{open_elements}->[-1]->[1] ne 'frameset') {                $self->{open_elements}->[-1]->[1] ne 'frameset') {
5432                !!!cp ('t327');
5433              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5434              } else {
5435                !!!cp ('t328');
5436            }            }
5437            redo B;            redo B;
5438          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
5439                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
5440              !!!cp ('t329');
5441            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
5442            !!!next-token;            !!!next-token;
5443            redo B;            redo B;
5444          } else {          } else {
5445            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5446                !!!cp ('t330');
5447              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});
5448            } else {            } else {
5449                !!!cp ('t331');
5450              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});
5451            }            }
5452            ## Ignore the token            ## Ignore the token
5453            !!!next-token;            !!!next-token;
5454            redo B;            redo B;
5455          }          }
5456          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5457            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5458                    @{$self->{open_elements}} == 1) { # redundant, maybe
5459              !!!cp ('t331.1');
5460              !!!parse-error (type => 'in body:#eof');
5461            } else {
5462              !!!cp ('t331.2');
5463            }
5464            
5465            ## Stop parsing
5466            last B;
5467        } else {        } else {
5468          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5469        }        }
# Line 4600  sub _tree_construction_main ($) { Line 5476  sub _tree_construction_main ($) {
5476      ## "in body" insertion mode      ## "in body" insertion mode
5477      if ($token->{type} == START_TAG_TOKEN) {      if ($token->{type} == START_TAG_TOKEN) {
5478        if ($token->{tag_name} eq 'script') {        if ($token->{tag_name} eq 'script') {
5479            !!!cp ('t332');
5480          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5481          $script_start_tag->($insert);          $script_start_tag->();
5482          redo B;          redo B;
5483        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
5484            !!!cp ('t333');
5485          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5486          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL);
5487          redo B;          redo B;
5488        } elsif ({        } elsif ({
5489                  base => 1, link => 1,                  base => 1, link => 1,
5490                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5491            !!!cp ('t334');
5492          ## 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
5493          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5494          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
# Line 4622  sub _tree_construction_main ($) { Line 5501  sub _tree_construction_main ($) {
5501    
5502          unless ($self->{confident}) {          unless ($self->{confident}) {
5503            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) { ## TODO: And if supported
5504                !!!cp ('t335');
5505              $self->{change_encoding}              $self->{change_encoding}
5506                  ->($self, $token->{attributes}->{charset}->{value});                  ->($self, $token->{attributes}->{charset}->{value});
5507                            
# Line 4636  sub _tree_construction_main ($) { Line 5516  sub _tree_construction_main ($) {
5516                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
5517                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
5518                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
5519                  !!!cp ('t336');
5520                $self->{change_encoding}                $self->{change_encoding}
5521                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);
5522                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
# Line 4646  sub _tree_construction_main ($) { Line 5527  sub _tree_construction_main ($) {
5527            }            }
5528          } else {          } else {
5529            if ($token->{attributes}->{charset}) {            if ($token->{attributes}->{charset}) {
5530                !!!cp ('t337');
5531              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5532                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
5533                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
5534                                           ->{has_reference});                                           ->{has_reference});
5535            }            }
5536            if ($token->{attributes}->{content}) {            if ($token->{attributes}->{content}) {
5537                !!!cp ('t338');
5538              $meta_el->[0]->get_attribute_node_ns (undef, 'content')              $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5539                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
5540                                       $token->{attributes}->{content}                                       $token->{attributes}->{content}
# Line 4662  sub _tree_construction_main ($) { Line 5545  sub _tree_construction_main ($) {
5545          !!!next-token;          !!!next-token;
5546          redo B;          redo B;
5547        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
5548          !!!parse-error (type => 'in body:title');          !!!cp ('t341');
5549          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5550          $parse_rcdata->(RCDATA_CONTENT_MODEL, sub {          $parse_rcdata->(RCDATA_CONTENT_MODEL);
           if (defined $self->{head_element}) {  
             $self->{head_element}->append_child ($_[0]);  
           } else {  
             $insert->($_[0]);  
           }  
         });  
5551          redo B;          redo B;
5552        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
5553          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body:body');
5554                                
5555          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
5556              $self->{open_elements}->[1]->[1] ne 'body') {              $self->{open_elements}->[1]->[1] ne 'body') {
5557              !!!cp ('t342');
5558            ## Ignore the token            ## Ignore the token
5559          } else {          } else {
5560            my $body_el = $self->{open_elements}->[1]->[0];            my $body_el = $self->{open_elements}->[1]->[0];
5561            for my $attr_name (keys %{$token->{attributes}}) {            for my $attr_name (keys %{$token->{attributes}}) {
5562              unless ($body_el->has_attribute_ns (undef, $attr_name)) {              unless ($body_el->has_attribute_ns (undef, $attr_name)) {
5563                  !!!cp ('t343');
5564                $body_el->set_attribute_ns                $body_el->set_attribute_ns
5565                  (undef, [undef, $attr_name],                  (undef, [undef, $attr_name],
5566                   $token->{attributes}->{$attr_name}->{value});                   $token->{attributes}->{$attr_name}->{value});
# Line 4692  sub _tree_construction_main ($) { Line 5571  sub _tree_construction_main ($) {
5571          redo B;          redo B;
5572        } elsif ({        } elsif ({
5573                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
5574                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1,
5575                    h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
5576                  menu => 1, ol => 1, p => 1, ul => 1,                  menu => 1, ol => 1, p => 1, ul => 1,
5577                  pre => 1,                  pre => 1, listing => 1,
5578                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5579          ## has a p element in scope          ## has a p element in scope
5580          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5581            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5582                !!!cp ('t344');
5583              !!!back-token;              !!!back-token;
5584              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5585              redo B;              redo B;
5586            } elsif ({            } elsif ({
5587                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5588                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5589                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5590                !!!cp ('t345');
5591              last INSCOPE;              last INSCOPE;
5592            }            }
5593          } # INSCOPE          } # INSCOPE
5594                        
5595          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5596          if ($token->{tag_name} eq 'pre') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
5597            !!!next-token;            !!!next-token;
5598            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
5599              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
5600              unless (length $token->{data}) {              unless (length $token->{data}) {
5601                  !!!cp ('t346');
5602                !!!next-token;                !!!next-token;
5603                } else {
5604                  !!!cp ('t349');
5605              }              }
5606              } else {
5607                !!!cp ('t348');
5608            }            }
5609          } else {          } else {
5610              !!!cp ('t347');
5611            !!!next-token;            !!!next-token;
5612          }          }
5613          redo B;          redo B;
5614        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
5615          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
5616              !!!cp ('t350');
5617            !!!parse-error (type => 'in form:form');            !!!parse-error (type => 'in form:form');
5618            ## Ignore the token            ## Ignore the token
5619            !!!next-token;            !!!next-token;
# Line 4733  sub _tree_construction_main ($) { Line 5622  sub _tree_construction_main ($) {
5622            ## has a p element in scope            ## has a p element in scope
5623            INSCOPE: for (reverse @{$self->{open_elements}}) {            INSCOPE: for (reverse @{$self->{open_elements}}) {
5624              if ($_->[1] eq 'p') {              if ($_->[1] eq 'p') {
5625                  !!!cp ('t351');
5626                !!!back-token;                !!!back-token;
5627                $token = {type => END_TAG_TOKEN, tag_name => 'p'};                $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5628                redo B;                redo B;
5629              } elsif ({              } elsif ({
5630                        table => 1, caption => 1, td => 1, th => 1,                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
5631                        button => 1, marquee => 1, object => 1, html => 1,                        button => 1, marquee => 1, object => 1, html => 1,
5632                       }->{$_->[1]}) {                       }->{$_->[1]}) {
5633                  !!!cp ('t352');
5634                last INSCOPE;                last INSCOPE;
5635              }              }
5636            } # INSCOPE            } # INSCOPE
# Line 4753  sub _tree_construction_main ($) { Line 5644  sub _tree_construction_main ($) {
5644          ## has a p element in scope          ## has a p element in scope
5645          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5646            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5647                !!!cp ('t353');
5648              !!!back-token;              !!!back-token;
5649              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5650              redo B;              redo B;
5651            } elsif ({            } elsif ({
5652                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5653                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5654                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5655                !!!cp ('t354');
5656              last INSCOPE;              last INSCOPE;
5657            }            }
5658          } # INSCOPE          } # INSCOPE
# Line 4771  sub _tree_construction_main ($) { Line 5664  sub _tree_construction_main ($) {
5664            ## Step 2            ## Step 2
5665            if ($node->[1] eq 'li') {            if ($node->[1] eq 'li') {
5666              if ($i != -1) {              if ($i != -1) {
5667                  !!!cp ('t355');
5668                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'end tag missing:'.
5669                                $self->{open_elements}->[-1]->[1]);                                $self->{open_elements}->[-1]->[1]);
5670                } else {
5671                  !!!cp ('t356');
5672              }              }
5673              splice @{$self->{open_elements}}, $i;              splice @{$self->{open_elements}}, $i;
5674              last LI;              last LI;
5675              } else {
5676                !!!cp ('t357');
5677            }            }
5678                        
5679            ## Step 3            ## Step 3
# Line 4784  sub _tree_construction_main ($) { Line 5682  sub _tree_construction_main ($) {
5682                ($special_category->{$node->[1]} or                ($special_category->{$node->[1]} or
5683                 $scoping_category->{$node->[1]}) and                 $scoping_category->{$node->[1]}) and
5684                $node->[1] ne 'address' and $node->[1] ne 'div') {                $node->[1] ne 'address' and $node->[1] ne 'div') {
5685                !!!cp ('t358');
5686              last LI;              last LI;
5687            }            }
5688                        
5689              !!!cp ('t359');
5690            ## Step 4            ## Step 4
5691            $i--;            $i--;
5692            $node = $self->{open_elements}->[$i];            $node = $self->{open_elements}->[$i];
# Line 4800  sub _tree_construction_main ($) { Line 5700  sub _tree_construction_main ($) {
5700          ## has a p element in scope          ## has a p element in scope
5701          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5702            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5703                !!!cp ('t360');
5704              !!!back-token;              !!!back-token;
5705              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5706              redo B;              redo B;
5707            } elsif ({            } elsif ({
5708                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5709                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5710                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5711                !!!cp ('t361');
5712              last INSCOPE;              last INSCOPE;
5713            }            }
5714          } # INSCOPE          } # INSCOPE
# Line 4818  sub _tree_construction_main ($) { Line 5720  sub _tree_construction_main ($) {
5720            ## Step 2            ## Step 2
5721            if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {            if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {
5722              if ($i != -1) {              if ($i != -1) {
5723                  !!!cp ('t362');
5724                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'end tag missing:'.
5725                                $self->{open_elements}->[-1]->[1]);                                $self->{open_elements}->[-1]->[1]);
5726                } else {
5727                  !!!cp ('t363');
5728              }              }
5729              splice @{$self->{open_elements}}, $i;              splice @{$self->{open_elements}}, $i;
5730              last LI;              last LI;
5731              } else {
5732                !!!cp ('t364');
5733            }            }
5734                        
5735            ## Step 3            ## Step 3
# Line 4831  sub _tree_construction_main ($) { Line 5738  sub _tree_construction_main ($) {
5738                ($special_category->{$node->[1]} or                ($special_category->{$node->[1]} or
5739                 $scoping_category->{$node->[1]}) and                 $scoping_category->{$node->[1]}) and
5740                $node->[1] ne 'address' and $node->[1] ne 'div') {                $node->[1] ne 'address' and $node->[1] ne 'div') {
5741                !!!cp ('t365');
5742              last LI;              last LI;
5743            }            }
5744                        
5745              !!!cp ('t366');
5746            ## Step 4            ## Step 4
5747            $i--;            $i--;
5748            $node = $self->{open_elements}->[$i];            $node = $self->{open_elements}->[$i];
# Line 4847  sub _tree_construction_main ($) { Line 5756  sub _tree_construction_main ($) {
5756          ## has a p element in scope          ## has a p element in scope
5757          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5758            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5759                !!!cp ('t367');
5760              !!!back-token;              !!!back-token;
5761              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5762              redo B;              redo B;
5763            } elsif ({            } elsif ({
5764                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5765                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5766                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5767                !!!cp ('t368');
5768              last INSCOPE;              last INSCOPE;
5769            }            }
5770          } # INSCOPE          } # INSCOPE
# Line 4864  sub _tree_construction_main ($) { Line 5775  sub _tree_construction_main ($) {
5775                        
5776          !!!next-token;          !!!next-token;
5777          redo B;          redo 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;  
5778        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
5779          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
5780            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
5781            if ($node->[1] eq 'a') {            if ($node->[1] eq 'a') {
5782                !!!cp ('t371');
5783              !!!parse-error (type => 'in a:a');              !!!parse-error (type => 'in a:a');
5784                            
5785              !!!back-token;              !!!back-token;
# Line 4921  sub _tree_construction_main ($) { Line 5788  sub _tree_construction_main ($) {
5788                            
5789              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
5790                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
5791                    !!!cp ('t372');
5792                  splice @$active_formatting_elements, $_, 1;                  splice @$active_formatting_elements, $_, 1;
5793                  last AFE2;                  last AFE2;
5794                }                }
5795              } # AFE2              } # AFE2
5796              OE: for (reverse 0..$#{$self->{open_elements}}) {              OE: for (reverse 0..$#{$self->{open_elements}}) {
5797                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
5798                    !!!cp ('t373');
5799                  splice @{$self->{open_elements}}, $_, 1;                  splice @{$self->{open_elements}}, $_, 1;
5800                  last OE;                  last OE;
5801                }                }
5802              } # OE              } # OE
5803              last AFE;              last AFE;
5804            } elsif ($node->[0] eq '#marker') {            } elsif ($node->[0] eq '#marker') {
5805                !!!cp ('t374');
5806              last AFE;              last AFE;
5807            }            }
5808          } # AFE          } # AFE
# Line 4949  sub _tree_construction_main ($) { Line 5819  sub _tree_construction_main ($) {
5819                  s => 1, small => 1, strile => 1,                  s => 1, small => 1, strile => 1,
5820                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
5821                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5822            !!!cp ('t375');
5823          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5824                    
5825          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
# Line 4963  sub _tree_construction_main ($) { Line 5834  sub _tree_construction_main ($) {
5834          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5835            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5836            if ($node->[1] eq 'nobr') {            if ($node->[1] eq 'nobr') {
5837                !!!cp ('t376');
5838              !!!parse-error (type => 'in nobr:nobr');              !!!parse-error (type => 'in nobr:nobr');
5839              !!!back-token;              !!!back-token;
5840              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};
5841              redo B;              redo B;
5842            } elsif ({            } elsif ({
5843                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5844                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5845                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5846                !!!cp ('t377');
5847              last INSCOPE;              last INSCOPE;
5848            }            }
5849          } # INSCOPE          } # INSCOPE
# Line 4985  sub _tree_construction_main ($) { Line 5858  sub _tree_construction_main ($) {
5858          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5859            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5860            if ($node->[1] eq 'button') {            if ($node->[1] eq 'button') {
5861                !!!cp ('t378');
5862              !!!parse-error (type => 'in button:button');              !!!parse-error (type => 'in button:button');
5863              !!!back-token;              !!!back-token;
5864              $token = {type => END_TAG_TOKEN, tag_name => 'button'};              $token = {type => END_TAG_TOKEN, tag_name => 'button'};
5865              redo B;              redo B;
5866            } elsif ({            } elsif ({
5867                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5868                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5869                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5870                !!!cp ('t379');
5871              last INSCOPE;              last INSCOPE;
5872            }            }
5873          } # INSCOPE          } # INSCOPE
# Line 5000  sub _tree_construction_main ($) { Line 5875  sub _tree_construction_main ($) {
5875          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5876                        
5877          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5878    
5879            ## TODO: associate with $self->{form_element} if defined
5880    
5881          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
5882    
5883          !!!next-token;          !!!next-token;
5884          redo B;          redo B;
5885        } elsif ($token->{tag_name} eq 'marquee' or        } elsif ({
5886                 $token->{tag_name} eq 'object') {                  applet => 1, marquee => 1, object => 1,
5887                   }->{$token->{tag_name}}) {
5888            !!!cp ('t380');
5889          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5890                    
5891          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
# Line 5014  sub _tree_construction_main ($) { Line 5894  sub _tree_construction_main ($) {
5894          !!!next-token;          !!!next-token;
5895          redo B;          redo B;
5896        } elsif ($token->{tag_name} eq 'xmp') {        } elsif ($token->{tag_name} eq 'xmp') {
5897            !!!cp ('t381');
5898          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5899          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL);
5900          redo B;          redo B;
5901        } elsif ($token->{tag_name} eq 'table') {        } elsif ($token->{tag_name} eq 'table') {
5902          ## has a p element in scope          ## has a p element in scope
5903          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5904            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5905                !!!cp ('t382');
5906              !!!back-token;              !!!back-token;
5907              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5908              redo B;              redo B;
5909            } elsif ({            } elsif ({
5910                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5911                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5912                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5913                !!!cp ('t383');
5914              last INSCOPE;              last INSCOPE;
5915            }            }
5916          } # INSCOPE          } # INSCOPE
5917                        
5918          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
5919                      push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
5920    
5921          $self->{insertion_mode} = IN_TABLE_IM;          $self->{insertion_mode} = IN_TABLE_IM;
5922                        
5923          !!!next-token;          !!!next-token;
# Line 5044  sub _tree_construction_main ($) { Line 5928  sub _tree_construction_main ($) {
5928                  image => 1,                  image => 1,
5929                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5930          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'image') {
5931              !!!cp ('t384');
5932            !!!parse-error (type => 'image');            !!!parse-error (type => 'image');
5933            $token->{tag_name} = 'img';            $token->{tag_name} = 'img';
5934            } else {
5935              !!!cp ('t385');
5936          }          }
5937    
5938          ## NOTE: There is an "as if <br>" code clone.          ## NOTE: There is an "as if <br>" code clone.
# Line 5060  sub _tree_construction_main ($) { Line 5947  sub _tree_construction_main ($) {
5947          ## has a p element in scope          ## has a p element in scope
5948          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5949            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5950                !!!cp ('t386');
5951              !!!back-token;              !!!back-token;
5952              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p'};
5953              redo B;              redo B;
5954            } elsif ({            } elsif ({
5955                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5956                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5957                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5958                !!!cp ('t387');
5959              last INSCOPE;              last INSCOPE;
5960            }            }
5961          } # INSCOPE          } # INSCOPE
# Line 5077  sub _tree_construction_main ($) { Line 5966  sub _tree_construction_main ($) {
5966          !!!next-token;          !!!next-token;
5967          redo B;          redo B;
5968        } elsif ($token->{tag_name} eq 'input') {        } elsif ($token->{tag_name} eq 'input') {
5969            !!!cp ('t388');
5970          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5971                    
5972          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
# Line 5089  sub _tree_construction_main ($) { Line 5979  sub _tree_construction_main ($) {
5979          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex');
5980                    
5981          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
5982              !!!cp ('t389');
5983            ## Ignore the token            ## Ignore the token
5984            !!!next-token;            !!!next-token;
5985            redo B;            redo B;
# Line 5108  sub _tree_construction_main ($) { Line 5999  sub _tree_construction_main ($) {
5999                          {type => START_TAG_TOKEN, tag_name => 'label'},                          {type => START_TAG_TOKEN, tag_name => 'label'},
6000                         );                         );
6001            if ($prompt_attr) {            if ($prompt_attr) {
6002                !!!cp ('t390');
6003              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};
6004            } else {            } else {
6005                !!!cp ('t391');
6006              push @tokens, {type => CHARACTER_TOKEN,              push @tokens, {type => CHARACTER_TOKEN,
6007                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD
6008              ## TODO: make this configurable              ## TODO: make this configurable
# Line 5141  sub _tree_construction_main ($) { Line 6034  sub _tree_construction_main ($) {
6034          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
6035            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
6036            unless (length $token->{data}) {            unless (length $token->{data}) {
6037                !!!cp ('t392');
6038              !!!next-token;              !!!next-token;
6039              } else {
6040                !!!cp ('t393');
6041            }            }
6042            } else {
6043              !!!cp ('t394');
6044          }          }
6045          while ($token->{type} == CHARACTER_TOKEN) {          while ($token->{type} == CHARACTER_TOKEN) {
6046              !!!cp ('t395');
6047            $text .= $token->{data};            $text .= $token->{data};
6048            !!!next-token;            !!!next-token;
6049          }          }
6050          if (length $text) {          if (length $text) {
6051              !!!cp ('t396');
6052            $el->manakai_append_text ($text);            $el->manakai_append_text ($text);
6053          }          }
6054                    
# Line 5156  sub _tree_construction_main ($) { Line 6056  sub _tree_construction_main ($) {
6056                    
6057          if ($token->{type} == END_TAG_TOKEN and          if ($token->{type} == END_TAG_TOKEN and
6058              $token->{tag_name} eq $tag_name) {              $token->{tag_name} eq $tag_name) {
6059              !!!cp ('t397');
6060            ## Ignore the token            ## Ignore the token
6061          } else {          } else {
6062              !!!cp ('t398');
6063            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!parse-error (type => 'in RCDATA:#'.$token->{type});
6064          }          }
6065          !!!next-token;          !!!next-token;
# Line 5168  sub _tree_construction_main ($) { Line 6070  sub _tree_construction_main ($) {
6070                  noframes => 1,                  noframes => 1,
6071                  noscript => 0, ## TODO: 1 if scripting is enabled                  noscript => 0, ## TODO: 1 if scripting is enabled
6072                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6073            !!!cp ('t399');
6074          ## NOTE: There is an "as if in body" code clone.          ## NOTE: There is an "as if in body" code clone.
6075          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL);
6076          redo B;          redo B;
6077        } elsif ($token->{tag_name} eq 'select') {        } elsif ($token->{tag_name} eq 'select') {
6078            !!!cp ('t400');
6079          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6080                    
6081          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
6082    
6083            ## TODO: associate with $self->{form_element} if defined
6084                    
6085          $self->{insertion_mode} = IN_SELECT_IM;          if ($self->{insertion_mode} & TABLE_IMS or
6086                $self->{insertion_mode} & BODY_TABLE_IMS or
6087                $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
6088              !!!cp ('t400.1');
6089              $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
6090            } else {
6091              !!!cp ('t400.2');
6092              $self->{insertion_mode} = IN_SELECT_IM;
6093            }
6094          !!!next-token;          !!!next-token;
6095          redo B;          redo B;
6096        } elsif ({        } elsif ({
# Line 5185  sub _tree_construction_main ($) { Line 6099  sub _tree_construction_main ($) {
6099                  tbody => 1, td => 1, tfoot => 1, th => 1,                  tbody => 1, td => 1, tfoot => 1, th => 1,
6100                  thead => 1, tr => 1,                  thead => 1, tr => 1,
6101                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6102            !!!cp ('t401');
6103          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!parse-error (type => 'in body:'.$token->{tag_name});
6104          ## Ignore the token          ## Ignore the token
6105          !!!next-token;          !!!next-token;
# Line 5192  sub _tree_construction_main ($) { Line 6107  sub _tree_construction_main ($) {
6107                    
6108          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
6109        } else {        } else {
6110            !!!cp ('t402');
6111          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6112                    
6113          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes});
# Line 5201  sub _tree_construction_main ($) { Line 6117  sub _tree_construction_main ($) {
6117        }        }
6118      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
6119        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
6120          if (@{$self->{open_elements}} > 1 and          ## has a |body| element in scope
6121              $self->{open_elements}->[1]->[1] eq 'body') {          my $i;
6122            for (@{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
6123              unless ({            if ($_->[1] eq 'body') {
6124                         dd => 1, dt => 1, li => 1, p => 1, td => 1,              !!!cp ('t405');
6125                         th => 1, tr => 1, body => 1, html => 1,              $i = $_;
6126                       tbody => 1, tfoot => 1, thead => 1,              last INSCOPE;
6127                      }->{$_->[1]}) {            } elsif ({
6128                !!!parse-error (type => 'not closed:'.$_->[1]);                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
6129              }                      button => 1, marquee => 1, object => 1, html => 1,
6130                       }->{$_->[1]}) {
6131                !!!cp ('t405.1');
6132                last INSCOPE;
6133            }            }
6134            } # INSCOPE
6135            $self->{insertion_mode} = AFTER_BODY_IM;          unless (defined $i) {
           !!!next-token;  
           redo B;  
         } else {  
6136            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6137            ## Ignore the token            ## NOTE: Ignore the token.
6138            !!!next-token;            !!!next-token;
6139            redo B;            redo B;
6140          }          }
6141    
6142            for (@{$self->{open_elements}}) {
6143              unless ({
6144                       dd => 1, dt => 1, li => 1, p => 1, td => 1,
6145                       th => 1, tr => 1, body => 1, html => 1,
6146                       tbody => 1, tfoot => 1, thead => 1,
6147                      }->{$_->[1]}) {
6148                !!!cp ('t403');
6149                !!!parse-error (type => 'not closed:'.$_->[1]);
6150                last;
6151              } else {
6152                !!!cp ('t404');
6153              }
6154            }
6155    
6156            $self->{insertion_mode} = AFTER_BODY_IM;
6157            !!!next-token;
6158            redo B;
6159        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
6160          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {
6161            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
6162            if ($self->{open_elements}->[-1]->[1] ne 'body') {            if ($self->{open_elements}->[-1]->[1] ne 'body') {
6163                !!!cp ('t406');
6164              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);
6165              } else {
6166                !!!cp ('t407');
6167            }            }
6168            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
6169            ## reprocess            ## reprocess
6170            redo B;            redo B;
6171          } else {          } else {
6172              !!!cp ('t408');
6173            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6174            ## Ignore the token            ## Ignore the token
6175            !!!next-token;            !!!next-token;
# Line 5241  sub _tree_construction_main ($) { Line 6179  sub _tree_construction_main ($) {
6179                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
6180                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1, listing => 1,
6181                  menu => 1, ol => 1, pre => 1, ul => 1,                  menu => 1, ol => 1, pre => 1, ul => 1,
                 p => 1,  
6182                  dd => 1, dt => 1, li => 1,                  dd => 1, dt => 1, li => 1,
6183                  button => 1, marquee => 1, object => 1,                  applet => 1, button => 1, marquee => 1, object => 1,
6184                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6185          ## has an element in scope          ## has an element in scope
6186          my $i;          my $i;
6187          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6188            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6189            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] eq $token->{tag_name}) {
6190              ## 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;  
             }  
6191              $i = $_;              $i = $_;
6192              last INSCOPE unless $token->{tag_name} eq 'p';              last INSCOPE;
6193            } elsif ({            } elsif ({
6194                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
6195                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6196                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6197                !!!cp ('t411');
6198              last INSCOPE;              last INSCOPE;
6199            }            }
6200          } # INSCOPE          } # INSCOPE
6201            
6202          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          unless (defined $i) { # has an element in scope
6203            if (defined $i) {            !!!cp ('t413');
6204              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6205            } else {
6206              ## Step 1. generate implied end tags
6207              while ({
6208                      dd => ($token->{tag_name} ne 'dd'),
6209                      dt => ($token->{tag_name} ne 'dt'),
6210                      li => ($token->{tag_name} ne 'li'),
6211                      p => 1,
6212                     }->{$self->{open_elements}->[-1]->[1]}) {
6213                !!!cp ('t409');
6214                pop @{$self->{open_elements}};
6215              }
6216    
6217              ## Step 2.
6218              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6219                !!!cp ('t412');
6220              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6221            } else {            } else {
6222              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t414');
6223            }            }
6224          }  
6225                      ## Step 3.
         if (defined $i) {  
6226            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6227          } elsif ($token->{tag_name} eq 'p') {  
6228            ## As if <p>, then reprocess the current token            ## Step 4.
6229            my $el;            $clear_up_to_marker->()
6230            !!!create-element ($el, 'p');                if {
6231            $insert->($el);                  applet => 1, button => 1, marquee => 1, object => 1,
6232                  }->{$token->{tag_name}};
6233          }          }
         $clear_up_to_marker->()  
           if {  
             button => 1, marquee => 1, object => 1,  
           }->{$token->{tag_name}};  
6234          !!!next-token;          !!!next-token;
6235          redo B;          redo B;
6236        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
6237            undef $self->{form_element};
6238    
6239          ## has an element in scope          ## has an element in scope
6240            my $i;
6241          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6242            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6243            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] eq $token->{tag_name}) {
6244              ## generate implied end tags              !!!cp ('t418');
6245              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;  
             }  
6246              last INSCOPE;              last INSCOPE;
6247            } elsif ({            } elsif ({
6248                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
6249                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6250                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6251                !!!cp ('t419');
6252              last INSCOPE;              last INSCOPE;
6253            }            }
6254          } # INSCOPE          } # INSCOPE
6255            
6256          if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {          unless (defined $i) { # has an element in scope
6257            pop @{$self->{open_elements}};            !!!cp ('t421');
         } else {  
6258            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6259            } else {
6260              ## Step 1. generate implied end tags
6261              while ({
6262                      dd => 1, dt => 1, li => 1, p => 1,
6263                     }->{$self->{open_elements}->[-1]->[1]}) {
6264                !!!cp ('t417');
6265                pop @{$self->{open_elements}};
6266              }
6267              
6268              ## Step 2.
6269              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6270                !!!cp ('t417.1');
6271                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6272              } else {
6273                !!!cp ('t420');
6274              }  
6275              
6276              ## Step 3.
6277              splice @{$self->{open_elements}}, $i;
6278          }          }
6279    
         undef $self->{form_element};  
6280          !!!next-token;          !!!next-token;
6281          redo B;          redo B;
6282        } elsif ({        } elsif ({
# Line 5340  sub _tree_construction_main ($) { Line 6289  sub _tree_construction_main ($) {
6289            if ({            if ({
6290                 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6291                }->{$node->[1]}) {                }->{$node->[1]}) {
6292              ## generate implied end tags              !!!cp ('t423');
             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;  
             }  
6293              $i = $_;              $i = $_;
6294              last INSCOPE;              last INSCOPE;
6295            } elsif ({            } elsif ({
6296                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
6297                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6298                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6299                !!!cp ('t424');
6300              last INSCOPE;              last INSCOPE;
6301            }            }
6302          } # INSCOPE          } # INSCOPE
6303            
6304          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          unless (defined $i) { # has an element in scope
6305              !!!cp ('t425.1');
6306            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6307            } else {
6308              ## Step 1. generate implied end tags
6309              while ({
6310                      dd => 1, dt => 1, li => 1, p => 1,
6311                     }->{$self->{open_elements}->[-1]->[1]}) {
6312                !!!cp ('t422');
6313                pop @{$self->{open_elements}};
6314              }
6315              
6316              ## Step 2.
6317              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6318                !!!cp ('t425');
6319                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6320              } else {
6321                !!!cp ('t426');
6322              }
6323    
6324              ## Step 3.
6325              splice @{$self->{open_elements}}, $i;
6326          }          }
6327                    
6328          splice @{$self->{open_elements}}, $i if defined $i;          !!!next-token;
6329            redo B;
6330          } elsif ($token->{tag_name} eq 'p') {
6331            ## has an element in scope
6332            my $i;
6333            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6334              my $node = $self->{open_elements}->[$_];
6335              if ($node->[1] eq $token->{tag_name}) {
6336                !!!cp ('t410.1');
6337                $i = $_;
6338                last INSCOPE;
6339              } elsif ({
6340                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
6341                        button => 1, marquee => 1, object => 1, html => 1,
6342                       }->{$node->[1]}) {
6343                !!!cp ('t411.1');
6344                last INSCOPE;
6345              }
6346            } # INSCOPE
6347    
6348            if (defined $i) {
6349              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6350                !!!cp ('t412.1');
6351                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6352              } else {
6353                !!!cp ('t414.1');
6354              }
6355    
6356              splice @{$self->{open_elements}}, $i;
6357            } else {
6358              !!!cp ('t413.1');
6359              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6360    
6361              !!!cp ('t415.1');
6362              ## As if <p>, then reprocess the current token
6363              my $el;
6364              !!!create-element ($el, 'p');
6365              $insert->($el);
6366              ## NOTE: Not inserted into |$self->{open_elements}|.
6367            }
6368    
6369          !!!next-token;          !!!next-token;
6370          redo B;          redo B;
6371        } elsif ({        } elsif ({
# Line 5374  sub _tree_construction_main ($) { Line 6374  sub _tree_construction_main ($) {
6374                  nobr => 1, s => 1, small => 1, strile => 1,                  nobr => 1, s => 1, small => 1, strile => 1,
6375                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
6376                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6377            !!!cp ('t427');
6378          $formatting_end_tag->($token->{tag_name});          $formatting_end_tag->($token->{tag_name});
6379          redo B;          redo B;
6380        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
6381            !!!cp ('t428');
6382          !!!parse-error (type => 'unmatched end tag:br');          !!!parse-error (type => 'unmatched end tag:br');
6383    
6384          ## As if <br>          ## As if <br>
# Line 5401  sub _tree_construction_main ($) { Line 6403  sub _tree_construction_main ($) {
6403                  table => 1, textarea => 1, wbr => 1,                  table => 1, textarea => 1, wbr => 1,
6404                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
6405                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6406            !!!cp ('t429');
6407          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6408          ## Ignore the token          ## Ignore the token
6409          !!!next-token;          !!!next-token;
# Line 5418  sub _tree_construction_main ($) { Line 6421  sub _tree_construction_main ($) {
6421            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] eq $token->{tag_name}) {
6422              ## Step 1              ## Step 1
6423              ## generate implied end tags              ## generate implied end tags
6424              if ({              while ({
6425                   dd => 1, dt => 1, li => 1, p => 1,                      dd => 1, dt => 1, li => 1, p => 1,
6426                   td => 1, th => 1, tr => 1,                     }->{$self->{open_elements}->[-1]->[1]}) {
6427                   tbody => 1, tfoot => 1, thead => 1,                !!!cp ('t430');
6428                  }->{$self->{open_elements}->[-1]->[1]}) {                ## ISSUE: Can this case be reached?
6429                !!!back-token;                pop @{$self->{open_elements}};
               $token = {type => END_TAG_TOKEN,  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               redo B;  
6430              }              }
6431                    
6432              ## Step 2              ## Step 2
6433              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {
6434                  !!!cp ('t431');
6435                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
6436                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
6437                } else {
6438                  !!!cp ('t432');
6439              }              }
6440                            
6441              ## Step 3              ## Step 3
# Line 5446  sub _tree_construction_main ($) { Line 6449  sub _tree_construction_main ($) {
6449                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
6450                  ($special_category->{$node->[1]} or                  ($special_category->{$node->[1]} or
6451                   $scoping_category->{$node->[1]})) {                   $scoping_category->{$node->[1]})) {
6452                  !!!cp ('t433');
6453                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
6454                ## Ignore the token                ## Ignore the token
6455                !!!next-token;                !!!next-token;
6456                last S2;                last S2;
6457              }              }
6458    
6459                !!!cp ('t434');
6460            }            }
6461                        
6462            ## Step 4            ## Step 4
# Line 5466  sub _tree_construction_main ($) { Line 6472  sub _tree_construction_main ($) {
6472      redo B;      redo B;
6473    } # B    } # B
6474    
   ## 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  
   
6475    ## Stop parsing # MUST    ## Stop parsing # MUST
6476        
6477    ## TODO: script stuffs    ## TODO: script stuffs
# Line 5512  sub set_inner_html ($$$) { Line 6513  sub set_inner_html ($$$) {
6513      my $p = $class->new;      my $p = $class->new;
6514      $p->{document} = $doc;      $p->{document} = $doc;
6515    
6516      ## Step 9 # MUST      ## Step 8 # MUST
6517      my $i = 0;      my $i = 0;
6518      my $line = 1;      my $line = 1;
6519      my $column = 0;      my $column = 0;
6520      $p->{set_next_input_character} = sub {      $p->{set_next_char} = sub {
6521        my $self = shift;        my $self = shift;
6522    
6523        pop @{$self->{prev_input_character}};        pop @{$self->{prev_char}};
6524        unshift @{$self->{prev_input_character}}, $self->{next_input_character};        unshift @{$self->{prev_char}}, $self->{next_char};
6525    
6526        $self->{next_input_character} = -1 and return if $i >= length $$s;        $self->{next_char} = -1 and return if $i >= length $$s;
6527        $self->{next_input_character} = ord substr $$s, $i++, 1;        $self->{next_char} = ord substr $$s, $i++, 1;
6528        $column++;        $column++;
6529    
6530        if ($self->{next_input_character} == 0x000A) { # LF        if ($self->{next_char} == 0x000A) { # LF
6531          $line++;          $line++;
6532          $column = 0;          $column = 0;
6533        } elsif ($self->{next_input_character} == 0x000D) { # CR          !!!cp ('i1');
6534          } elsif ($self->{next_char} == 0x000D) { # CR
6535          $i++ if substr ($$s, $i, 1) eq "\x0A";          $i++ if substr ($$s, $i, 1) eq "\x0A";
6536          $self->{next_input_character} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
6537          $line++;          $line++;
6538          $column = 0;          $column = 0;
6539        } elsif ($self->{next_input_character} > 0x10FFFF) {          !!!cp ('i2');
6540          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        } elsif ($self->{next_char} > 0x10FFFF) {
6541        } elsif ($self->{next_input_character} == 0x0000) { # NULL          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6542            !!!cp ('i3');
6543          } elsif ($self->{next_char} == 0x0000) { # NULL
6544            !!!cp ('i4');
6545          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
6546          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6547        }        }
6548      };      };
6549      $p->{prev_input_character} = [-1, -1, -1];      $p->{prev_char} = [-1, -1, -1];
6550      $p->{next_input_character} = -1;      $p->{next_char} = -1;
6551            
6552      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
6553        my (%opt) = @_;        my (%opt) = @_;
# Line 5575  sub set_inner_html ($$$) { Line 6580  sub set_inner_html ($$$) {
6580    
6581      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $node_ln];
6582    
6583      ## Step 4      ## Step 3
6584      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
6585        ('http://www.w3.org/1999/xhtml', [undef, 'html']);        ('http://www.w3.org/1999/xhtml', [undef, 'html']);
6586    
6587      ## Step 5 # MUST      ## Step 4 # MUST
6588      $doc->append_child ($root);      $doc->append_child ($root);
6589    
6590      ## Step 6 # MUST      ## Step 5 # MUST
6591      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, 'html'];
6592    
6593      undef $p->{head_element};      undef $p->{head_element};
6594    
6595      ## Step 7 # MUST      ## Step 6 # MUST
6596      $p->_reset_insertion_mode;      $p->_reset_insertion_mode;
6597    
6598      ## Step 8 # MUST      ## Step 7 # MUST
6599      my $anode = $node;      my $anode = $node;
6600      AN: while (defined $anode) {      AN: while (defined $anode) {
6601        if ($anode->node_type == 1) {        if ($anode->node_type == 1) {
6602          my $nsuri = $anode->namespace_uri;          my $nsuri = $anode->namespace_uri;
6603          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
6604            if ($anode->manakai_local_name eq 'form') {            if ($anode->manakai_local_name eq 'form') {
6605                !!!cp ('i5');
6606              $p->{form_element} = $anode;              $p->{form_element} = $anode;
6607              last AN;              last AN;
6608            }            }
# Line 5605  sub set_inner_html ($$$) { Line 6611  sub set_inner_html ($$$) {
6611        $anode = $anode->parent_node;        $anode = $anode->parent_node;
6612      } # AN      } # AN
6613            
6614      ## Step 3 # MUST      ## Step 9 # MUST
     ## Step 10 # MUST  
6615      {      {
6616        my $self = $p;        my $self = $p;
6617        !!!next-token;        !!!next-token;
6618      }      }
6619      $p->_tree_construction_main;      $p->_tree_construction_main;
6620    
6621      ## Step 11 # MUST      ## Step 10 # MUST
6622      my @cn = @{$node->child_nodes};      my @cn = @{$node->child_nodes};
6623      for (@cn) {      for (@cn) {
6624        $node->remove_child ($_);        $node->remove_child ($_);
6625      }      }
6626      ## ISSUE: mutation events? read-only?      ## ISSUE: mutation events? read-only?
6627    
6628      ## Step 12 # MUST      ## Step 11 # MUST
6629      @cn = @{$root->child_nodes};      @cn = @{$root->child_nodes};
6630      for (@cn) {      for (@cn) {
6631        $this_doc->adopt_node ($_);        $this_doc->adopt_node ($_);

Legend:
Removed from v.1.75  
changed lines
  Added in v.1.108

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24