/[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.72 by wakaba, Sun Mar 2 14:32:26 2008 UTC revision 1.122 by wakaba, Sun Apr 6 06:34:11 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 108  sub parse_byte_string ($$$$;$) { Line 108  sub parse_byte_string ($$$$;$) {
108    $self->{change_encoding} = sub {    $self->{change_encoding} = sub {
109      my $self = shift;      my $self = shift;
110      my $charset = lc shift;      my $charset = lc shift;
111        my $token = shift;
112      ## TODO: if $charset is supported      ## TODO: if $charset is supported
113      ## TODO: normalize charset name      ## TODO: normalize charset name
114    
# Line 126  sub parse_byte_string ($$$$;$) { Line 127  sub parse_byte_string ($$$$;$) {
127      }      }
128    
129      !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.      !!!parse-error (type => 'charset label detected:'.$self->{input_encoding}.
130          ':'.$charset, level => 'w');          ':'.$charset, level => 'w', token => $token);
131    
132      ## Step 3      ## Step 3
133      # if (can) {      # if (can) {
# Line 177  sub parse_string ($$$;$) { Line 178  sub parse_string ($$$;$) {
178        if defined $self->{input_encoding};        if defined $self->{input_encoding};
179    
180    my $i = 0;    my $i = 0;
181    my $line = 1;    $self->{line_prev} = $self->{line} = 1;
182    my $column = 0;    $self->{column_prev} = $self->{column} = 0;
183    $self->{set_next_input_character} = sub {    $self->{set_next_char} = sub {
184      my $self = shift;      my $self = shift;
185    
186      pop @{$self->{prev_input_character}};      pop @{$self->{prev_char}};
187      unshift @{$self->{prev_input_character}}, $self->{next_input_character};      unshift @{$self->{prev_char}}, $self->{next_char};
188    
189      $self->{next_input_character} = -1 and return if $i >= length $$s;      $self->{next_char} = -1 and return if $i >= length $$s;
190      $self->{next_input_character} = ord substr $$s, $i++, 1;      $self->{next_char} = ord substr $$s, $i++, 1;
191      $column++;  
192        ($self->{line_prev}, $self->{column_prev})
193            = ($self->{line}, $self->{column});
194        $self->{column}++;
195            
196      if ($self->{next_input_character} == 0x000A) { # LF      if ($self->{next_char} == 0x000A) { # LF
197        $line++;        $self->{line}++;
198        $column = 0;        $self->{column} = 0;
199      } elsif ($self->{next_input_character} == 0x000D) { # CR      } elsif ($self->{next_char} == 0x000D) { # CR
200        $i++ if substr ($$s, $i, 1) eq "\x0A";        $i++ if substr ($$s, $i, 1) eq "\x0A";
201        $self->{next_input_character} = 0x000A; # LF # MUST        $self->{next_char} = 0x000A; # LF # MUST
202        $line++;        $self->{line}++;
203        $column = 0;        $self->{column} = 0;
204      } elsif ($self->{next_input_character} > 0x10FFFF) {      } elsif ($self->{next_char} > 0x10FFFF) {
205        $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
206      } elsif ($self->{next_input_character} == 0x0000) { # NULL      } elsif ($self->{next_char} == 0x0000) { # NULL
207        !!!parse-error (type => 'NULL');        !!!parse-error (type => 'NULL');
208        $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
209      }      }
210    };    };
211    $self->{prev_input_character} = [-1, -1, -1];    $self->{prev_char} = [-1, -1, -1];
212    $self->{next_input_character} = -1;    $self->{next_char} = -1;
213    
214    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
215      my (%opt) = @_;      my (%opt) = @_;
216      warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";      my $line = $opt{token} ? $opt{token}->{line} : $opt{line};
217        my $column = $opt{token} ? $opt{token}->{column} : $opt{column};
218        warn "Parse error ($opt{type}) at line $line column $column\n";
219    };    };
220    $self->{parse_error} = sub {    $self->{parse_error} = sub {
221      $onerror->(@_, line => $line, column => $column);      $onerror->(line => $self->{line}, column => $self->{column}, @_);
222    };    };
223    
224    $self->_initialize_tokenizer;    $self->_initialize_tokenizer;
# Line 220  sub parse_string ($$$;$) { Line 226  sub parse_string ($$$;$) {
226    $self->_construct_tree;    $self->_construct_tree;
227    $self->_terminate_tree_constructor;    $self->_terminate_tree_constructor;
228    
229      delete $self->{parse_error}; # remove loop
230    
231    return $self->{document};    return $self->{document};
232  } # parse_string  } # parse_string
233    
234  sub new ($) {  sub new ($) {
235    my $class = shift;    my $class = shift;
236    my $self = bless {}, $class;    my $self = bless {}, $class;
237    $self->{set_next_input_character} = sub {    $self->{set_next_char} = sub {
238      $self->{next_input_character} = -1;      $self->{next_char} = -1;
239    };    };
240    $self->{parse_error} = sub {    $self->{parse_error} = sub {
241      #      #
# Line 303  sub TABLE_IMS ()      { 0b1000000 } Line 311  sub TABLE_IMS ()      { 0b1000000 }
311  sub ROW_IMS ()        { 0b10000000 }  sub ROW_IMS ()        { 0b10000000 }
312  sub BODY_AFTER_IMS () { 0b100000000 }  sub BODY_AFTER_IMS () { 0b100000000 }
313  sub FRAME_IMS ()      { 0b1000000000 }  sub FRAME_IMS ()      { 0b1000000000 }
314    sub SELECT_IMS ()     { 0b10000000000 }
315    
316    ## NOTE: "initial" and "before html" insertion modes have no constants.
317    
318    ## NOTE: "after after body" insertion mode.
319  sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }  sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
320    
321    ## NOTE: "after after frameset" insertion mode.
322  sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }  sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
323    
324  sub IN_HEAD_IM () { HEAD_IMS | 0b00 }  sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
325  sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }  sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
326  sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }  sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
# Line 319  sub IN_TABLE_IM () { TABLE_IMS } Line 334  sub IN_TABLE_IM () { TABLE_IMS }
334  sub AFTER_BODY_IM () { BODY_AFTER_IMS }  sub AFTER_BODY_IM () { BODY_AFTER_IMS }
335  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }  sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
336  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }  sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
337  sub IN_SELECT_IM () { 0b01 }  sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
338    sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
339  sub IN_COLUMN_GROUP_IM () { 0b10 }  sub IN_COLUMN_GROUP_IM () { 0b10 }
340    
341  ## 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 349  sub _initialize_tokenizer ($) {
349    undef $self->{last_emitted_start_tag_name};    undef $self->{last_emitted_start_tag_name};
350    undef $self->{last_attribute_value_state};    undef $self->{last_attribute_value_state};
351    $self->{char} = [];    $self->{char} = [];
352    # $self->{next_input_character}    # $self->{next_char}
353    !!!next-input-character;    !!!next-input-character;
354    $self->{token} = [];    $self->{token} = [];
355    # $self->{escape}    # $self->{escape}
# Line 346  sub _initialize_tokenizer ($) { Line 362  sub _initialize_tokenizer ($) {
362  ##   ->{tag_name} (START_TAG_TOKEN, END_TAG_TOKEN)  ##   ->{tag_name} (START_TAG_TOKEN, END_TAG_TOKEN)
363  ##   ->{public_identifier} (DOCTYPE_TOKEN)  ##   ->{public_identifier} (DOCTYPE_TOKEN)
364  ##   ->{system_identifier} (DOCTYPE_TOKEN)  ##   ->{system_identifier} (DOCTYPE_TOKEN)
365  ##   ->{correct} == 1 or 0 (DOCTYPE_TOKEN)  ##   ->{quirks} == 1 or 0 (DOCTYPE_TOKEN): "force-quirks" flag
366  ##   ->{attributes} isa HASH (START_TAG_TOKEN, END_TAG_TOKEN)  ##   ->{attributes} isa HASH (START_TAG_TOKEN, END_TAG_TOKEN)
367  ##        ->{name}  ##        ->{name}
368  ##        ->{value}  ##        ->{value}
# Line 384  sub _get_next_token ($) { Line 400  sub _get_next_token ($) {
400    
401    A: {    A: {
402      if ($self->{state} == DATA_STATE) {      if ($self->{state} == DATA_STATE) {
403        if ($self->{next_input_character} == 0x0026) { # &        if ($self->{next_char} == 0x0026) { # &
404          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA          if ($self->{content_model} & CM_ENTITY and # PCDATA | RCDATA
405              not $self->{escape}) {              not $self->{escape}) {
406              !!!cp (1);
407            $self->{state} = ENTITY_DATA_STATE;            $self->{state} = ENTITY_DATA_STATE;
408            !!!next-input-character;            !!!next-input-character;
409            redo A;            redo A;
410          } else {          } else {
411              !!!cp (2);
412            #            #
413          }          }
414        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
415          if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA          if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
416            unless ($self->{escape}) {            unless ($self->{escape}) {
417              if ($self->{prev_input_character}->[0] == 0x002D and # -              if ($self->{prev_char}->[0] == 0x002D and # -
418                  $self->{prev_input_character}->[1] == 0x0021 and # !                  $self->{prev_char}->[1] == 0x0021 and # !
419                  $self->{prev_input_character}->[2] == 0x003C) { # <                  $self->{prev_char}->[2] == 0x003C) { # <
420                  !!!cp (3);
421                $self->{escape} = 1;                $self->{escape} = 1;
422                } else {
423                  !!!cp (4);
424              }              }
425              } else {
426                !!!cp (5);
427            }            }
428          }          }
429                    
430          #          #
431        } elsif ($self->{next_input_character} == 0x003C) { # <        } elsif ($self->{next_char} == 0x003C) { # <
432          if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA          if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA
433              (($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA              (($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA
434               not $self->{escape})) {               not $self->{escape})) {
435              !!!cp (6);
436            $self->{state} = TAG_OPEN_STATE;            $self->{state} = TAG_OPEN_STATE;
437            !!!next-input-character;            !!!next-input-character;
438            redo A;            redo A;
439          } else {          } else {
440              !!!cp (7);
441            #            #
442          }          }
443        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
444          if ($self->{escape} and          if ($self->{escape} and
445              ($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA              ($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA
446            if ($self->{prev_input_character}->[0] == 0x002D and # -            if ($self->{prev_char}->[0] == 0x002D and # -
447                $self->{prev_input_character}->[1] == 0x002D) { # -                $self->{prev_char}->[1] == 0x002D) { # -
448                !!!cp (8);
449              delete $self->{escape};              delete $self->{escape};
450              } else {
451                !!!cp (9);
452            }            }
453            } else {
454              !!!cp (10);
455          }          }
456                    
457          #          #
458        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
459          !!!emit ({type => END_OF_FILE_TOKEN});          !!!cp (11);
460            !!!emit ({type => END_OF_FILE_TOKEN,
461                      line => $self->{line}, column => $self->{column}});
462          last A; ## TODO: ok?          last A; ## TODO: ok?
463          } else {
464            !!!cp (12);
465        }        }
466        # Anything else        # Anything else
467        my $token = {type => CHARACTER_TOKEN,        my $token = {type => CHARACTER_TOKEN,
468                     data => chr $self->{next_input_character}};                     data => chr $self->{next_char},
469                       line => $self->{line}, column => $self->{column},
470                      };
471        ## Stay in the data state        ## Stay in the data state
472        !!!next-input-character;        !!!next-input-character;
473    
# Line 440  sub _get_next_token ($) { Line 476  sub _get_next_token ($) {
476        redo A;        redo A;
477      } elsif ($self->{state} == ENTITY_DATA_STATE) {      } elsif ($self->{state} == ENTITY_DATA_STATE) {
478        ## (cannot happen in CDATA state)        ## (cannot happen in CDATA state)
479    
480          my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
481                
482        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);        my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1);
483    
# Line 447  sub _get_next_token ($) { Line 485  sub _get_next_token ($) {
485        # next-input-character is already done        # next-input-character is already done
486    
487        unless (defined $token) {        unless (defined $token) {
488          !!!emit ({type => CHARACTER_TOKEN, data => '&'});          !!!cp (13);
489            !!!emit ({type => CHARACTER_TOKEN, data => '&',
490                      line => $l, column => $c,
491                     });
492        } else {        } else {
493            !!!cp (14);
494          !!!emit ($token);          !!!emit ($token);
495        }        }
496    
497        redo A;        redo A;
498      } elsif ($self->{state} == TAG_OPEN_STATE) {      } elsif ($self->{state} == TAG_OPEN_STATE) {
499        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
500          if ($self->{next_input_character} == 0x002F) { # /          if ($self->{next_char} == 0x002F) { # /
501              !!!cp (15);
502            !!!next-input-character;            !!!next-input-character;
503            $self->{state} = CLOSE_TAG_OPEN_STATE;            $self->{state} = CLOSE_TAG_OPEN_STATE;
504            redo A;            redo A;
505          } else {          } else {
506              !!!cp (16);
507            ## reconsume            ## reconsume
508            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
509    
510            !!!emit ({type => CHARACTER_TOKEN, data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<',
511                        line => $self->{line_prev},
512                        column => $self->{column_prev},
513                       });
514    
515            redo A;            redo A;
516          }          }
517        } elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA        } elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA
518          if ($self->{next_input_character} == 0x0021) { # !          if ($self->{next_char} == 0x0021) { # !
519              !!!cp (17);
520            $self->{state} = MARKUP_DECLARATION_OPEN_STATE;            $self->{state} = MARKUP_DECLARATION_OPEN_STATE;
521            !!!next-input-character;            !!!next-input-character;
522            redo A;            redo A;
523          } elsif ($self->{next_input_character} == 0x002F) { # /          } elsif ($self->{next_char} == 0x002F) { # /
524              !!!cp (18);
525            $self->{state} = CLOSE_TAG_OPEN_STATE;            $self->{state} = CLOSE_TAG_OPEN_STATE;
526            !!!next-input-character;            !!!next-input-character;
527            redo A;            redo A;
528          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
529                   $self->{next_input_character} <= 0x005A) { # A..Z                   $self->{next_char} <= 0x005A) { # A..Z
530              !!!cp (19);
531            $self->{current_token}            $self->{current_token}
532              = {type => START_TAG_TOKEN,              = {type => START_TAG_TOKEN,
533                 tag_name => chr ($self->{next_input_character} + 0x0020)};                 tag_name => chr ($self->{next_char} + 0x0020),
534                   line => $self->{line_prev},
535                   column => $self->{column_prev}};
536            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
537            !!!next-input-character;            !!!next-input-character;
538            redo A;            redo A;
539          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
540                   $self->{next_input_character} <= 0x007A) { # a..z                   $self->{next_char} <= 0x007A) { # a..z
541              !!!cp (20);
542            $self->{current_token} = {type => START_TAG_TOKEN,            $self->{current_token} = {type => START_TAG_TOKEN,
543                              tag_name => chr ($self->{next_input_character})};                                      tag_name => chr ($self->{next_char}),
544                                        line => $self->{line_prev},
545                                        column => $self->{column_prev}};
546            $self->{state} = TAG_NAME_STATE;            $self->{state} = TAG_NAME_STATE;
547            !!!next-input-character;            !!!next-input-character;
548            redo A;            redo A;
549          } elsif ($self->{next_input_character} == 0x003E) { # >          } elsif ($self->{next_char} == 0x003E) { # >
550            !!!parse-error (type => 'empty start tag');            !!!cp (21);
551              !!!parse-error (type => 'empty start tag',
552                              line => $self->{line_prev},
553                              column => $self->{column_prev});
554            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
555            !!!next-input-character;            !!!next-input-character;
556    
557            !!!emit ({type => CHARACTER_TOKEN, data => '<>'});            !!!emit ({type => CHARACTER_TOKEN, data => '<>',
558                        line => $self->{line_prev},
559                        column => $self->{column_prev},
560                       });
561    
562            redo A;            redo A;
563          } elsif ($self->{next_input_character} == 0x003F) { # ?          } elsif ($self->{next_char} == 0x003F) { # ?
564            !!!parse-error (type => 'pio');            !!!cp (22);
565              !!!parse-error (type => 'pio',
566                              line => $self->{line_prev},
567                              column => $self->{column_prev});
568            $self->{state} = BOGUS_COMMENT_STATE;            $self->{state} = BOGUS_COMMENT_STATE;
569            ## $self->{next_input_character} is intentionally left as is            $self->{current_token} = {type => COMMENT_TOKEN, data => '',
570                                        line => $self->{line_prev},
571                                        column => $self->{column_prev},
572                                       };
573              ## $self->{next_char} is intentionally left as is
574            redo A;            redo A;
575          } else {          } else {
576              !!!cp (23);
577            !!!parse-error (type => 'bare stago');            !!!parse-error (type => 'bare stago');
578            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
579            ## reconsume            ## reconsume
580    
581            !!!emit ({type => CHARACTER_TOKEN, data => '<'});            !!!emit ({type => CHARACTER_TOKEN, data => '<',
582                        line => $self->{line_prev},
583                        column => $self->{column_prev},
584                       });
585    
586            redo A;            redo A;
587          }          }
# Line 517  sub _get_next_token ($) { Line 589  sub _get_next_token ($) {
589          die "$0: $self->{content_model} in tag open";          die "$0: $self->{content_model} in tag open";
590        }        }
591      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
592          my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"
593        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
594          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
595    
596            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>            ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
597            my @next_char;            my @next_char;
598            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++) {
599              push @next_char, $self->{next_input_character};              push @next_char, $self->{next_char};
600              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);              my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);
601              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;              my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;
602              if ($self->{next_input_character} == $c or $self->{next_input_character} == $C) {              if ($self->{next_char} == $c or $self->{next_char} == $C) {
603                  !!!cp (24);
604                !!!next-input-character;                !!!next-input-character;
605                next TAGNAME;                next TAGNAME;
606              } else {              } else {
607                $self->{next_input_character} = shift @next_char; # reconsume                !!!cp (25);
608                  $self->{next_char} = shift @next_char; # reconsume
609                !!!back-next-input-character (@next_char);                !!!back-next-input-character (@next_char);
610                $self->{state} = DATA_STATE;                $self->{state} = DATA_STATE;
611    
612                !!!emit ({type => CHARACTER_TOKEN, data => '</'});                !!!emit ({type => CHARACTER_TOKEN, data => '</',
613                            line => $l, column => $c,
614                           });
615        
616                redo A;                redo A;
617              }              }
618            }            }
619            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
620                
621            unless ($self->{next_input_character} == 0x0009 or # HT            unless ($self->{next_char} == 0x0009 or # HT
622                    $self->{next_input_character} == 0x000A or # LF                    $self->{next_char} == 0x000A or # LF
623                    $self->{next_input_character} == 0x000B or # VT                    $self->{next_char} == 0x000B or # VT
624                    $self->{next_input_character} == 0x000C or # FF                    $self->{next_char} == 0x000C or # FF
625                    $self->{next_input_character} == 0x0020 or # SP                    $self->{next_char} == 0x0020 or # SP
626                    $self->{next_input_character} == 0x003E or # >                    $self->{next_char} == 0x003E or # >
627                    $self->{next_input_character} == 0x002F or # /                    $self->{next_char} == 0x002F or # /
628                    $self->{next_input_character} == -1) {                    $self->{next_char} == -1) {
629              $self->{next_input_character} = shift @next_char; # reconsume              !!!cp (26);
630                $self->{next_char} = shift @next_char; # reconsume
631              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
632              $self->{state} = DATA_STATE;              $self->{state} = DATA_STATE;
633              !!!emit ({type => CHARACTER_TOKEN, data => '</'});              !!!emit ({type => CHARACTER_TOKEN, data => '</',
634                          line => $l, column => $c,
635                         });
636              redo A;              redo A;
637            } else {            } else {
638              $self->{next_input_character} = shift @next_char;              !!!cp (27);
639                $self->{next_char} = shift @next_char;
640              !!!back-next-input-character (@next_char);              !!!back-next-input-character (@next_char);
641              # and consume...              # and consume...
642            }            }
643          } else {          } else {
644            ## No start tag token has ever been emitted            ## No start tag token has ever been emitted
645              !!!cp (28);
646            # next-input-character is already done            # next-input-character is already done
647            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
648            !!!emit ({type => CHARACTER_TOKEN, data => '</'});            !!!emit ({type => CHARACTER_TOKEN, data => '</',
649                        line => $l, column => $c,
650                       });
651            redo A;            redo A;
652          }          }
653        }        }
654                
655        if (0x0041 <= $self->{next_input_character} and        if (0x0041 <= $self->{next_char} and
656            $self->{next_input_character} <= 0x005A) { # A..Z            $self->{next_char} <= 0x005A) { # A..Z
657          $self->{current_token} = {type => END_TAG_TOKEN,          !!!cp (29);
658                            tag_name => chr ($self->{next_input_character} + 0x0020)};          $self->{current_token}
659                = {type => END_TAG_TOKEN,
660                   tag_name => chr ($self->{next_char} + 0x0020),
661                   line => $l, column => $c};
662          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
663          !!!next-input-character;          !!!next-input-character;
664          redo A;          redo A;
665        } elsif (0x0061 <= $self->{next_input_character} and        } elsif (0x0061 <= $self->{next_char} and
666                 $self->{next_input_character} <= 0x007A) { # a..z                 $self->{next_char} <= 0x007A) { # a..z
667            !!!cp (30);
668          $self->{current_token} = {type => END_TAG_TOKEN,          $self->{current_token} = {type => END_TAG_TOKEN,
669                            tag_name => chr ($self->{next_input_character})};                                    tag_name => chr ($self->{next_char}),
670                                      line => $l, column => $c};
671          $self->{state} = TAG_NAME_STATE;          $self->{state} = TAG_NAME_STATE;
672          !!!next-input-character;          !!!next-input-character;
673          redo A;          redo A;
674        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
675          !!!parse-error (type => 'empty end tag');          !!!cp (31);
676            !!!parse-error (type => 'empty end tag',
677                            line => $self->{line_prev}, ## "<" in "</>"
678                            column => $self->{column_prev} - 1);
679          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
680          !!!next-input-character;          !!!next-input-character;
681          redo A;          redo A;
682        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
683            !!!cp (32);
684          !!!parse-error (type => 'bare etago');          !!!parse-error (type => 'bare etago');
685          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
686          # reconsume          # reconsume
687    
688          !!!emit ({type => CHARACTER_TOKEN, data => '</'});          !!!emit ({type => CHARACTER_TOKEN, data => '</',
689                      line => $l, column => $c,
690                     });
691    
692          redo A;          redo A;
693        } else {        } else {
694            !!!cp (33);
695          !!!parse-error (type => 'bogus end tag');          !!!parse-error (type => 'bogus end tag');
696          $self->{state} = BOGUS_COMMENT_STATE;          $self->{state} = BOGUS_COMMENT_STATE;
697          ## $self->{next_input_character} is intentionally left as is          $self->{current_token} = {type => COMMENT_TOKEN, data => '',
698                                      line => $self->{line_prev}, # "<" of "</"
699                                      column => $self->{column_prev} - 1,
700                                     };
701            ## $self->{next_char} is intentionally left as is
702          redo A;          redo A;
703        }        }
704      } elsif ($self->{state} == TAG_NAME_STATE) {      } elsif ($self->{state} == TAG_NAME_STATE) {
705        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
706            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
707            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
708            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
709            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
710            !!!cp (34);
711          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
712          !!!next-input-character;          !!!next-input-character;
713          redo A;          redo A;
714        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
715          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
716            $self->{current_token}->{first_start_tag}            !!!cp (35);
               = not defined $self->{last_emitted_start_tag_name};  
717            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
718          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
719            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
720            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
721              !!!parse-error (type => 'end tag attribute');            #  ## NOTE: This should never be reached.
722            }            #  !!! cp (36);
723              #  !!! parse-error (type => 'end tag attribute');
724              #} else {
725                !!!cp (37);
726              #}
727          } else {          } else {
728            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
729          }          }
# Line 628  sub _get_next_token ($) { Line 733  sub _get_next_token ($) {
733          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
734    
735          redo A;          redo A;
736        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
737                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
738          $self->{current_token}->{tag_name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (38);
739            $self->{current_token}->{tag_name} .= chr ($self->{next_char} + 0x0020);
740            # start tag or end tag            # start tag or end tag
741          ## Stay in this state          ## Stay in this state
742          !!!next-input-character;          !!!next-input-character;
743          redo A;          redo A;
744        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
745          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
746          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
747            $self->{current_token}->{first_start_tag}            !!!cp (39);
               = not defined $self->{last_emitted_start_tag_name};  
748            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
749          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
750            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
751            if ($self->{current_token}->{attributes}) {            #if ($self->{current_token}->{attributes}) {
752              !!!parse-error (type => 'end tag attribute');            #  ## NOTE: This state should never be reached.
753            }            #  !!! cp (40);
754              #  !!! parse-error (type => 'end tag attribute');
755              #} else {
756                !!!cp (41);
757              #}
758          } else {          } else {
759            die "$0: $self->{current_token}->{type}: Unknown token type";            die "$0: $self->{current_token}->{type}: Unknown token type";
760          }          }
# Line 655  sub _get_next_token ($) { Line 764  sub _get_next_token ($) {
764          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
765    
766          redo A;          redo A;
767        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
768          !!!next-input-character;          !!!next-input-character;
769          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
770              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
771              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
772            # permitted slash            # permitted slash
773              !!!cp (42);
774            #            #
775          } else {          } else {
776              !!!cp (43);
777            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
778          }          }
779          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
780          # next-input-character is already done          # next-input-character is already done
781          redo A;          redo A;
782        } else {        } else {
783          $self->{current_token}->{tag_name} .= chr $self->{next_input_character};          !!!cp (44);
784            $self->{current_token}->{tag_name} .= chr $self->{next_char};
785            # start tag or end tag            # start tag or end tag
786          ## Stay in the state          ## Stay in the state
787          !!!next-input-character;          !!!next-input-character;
788          redo A;          redo A;
789        }        }
790      } elsif ($self->{state} == BEFORE_ATTRIBUTE_NAME_STATE) {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_NAME_STATE) {
791        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
792            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
793            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
794            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
795            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
796            !!!cp (45);
797          ## Stay in the state          ## Stay in the state
798          !!!next-input-character;          !!!next-input-character;
799          redo A;          redo A;
800        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
801          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
802            $self->{current_token}->{first_start_tag}            !!!cp (46);
               = not defined $self->{last_emitted_start_tag_name};  
803            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
804          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
805            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
806            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
807                !!!cp (47);
808              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
809              } else {
810                !!!cp (48);
811            }            }
812          } else {          } else {
813            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 818  sub _get_next_token ($) {
818          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
819    
820          redo A;          redo A;
821        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
822                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
823          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (49);
824                                value => ''};          $self->{current_attribute}
825                = {name => chr ($self->{next_char} + 0x0020),
826                   value => '',
827                   line => $self->{line}, column => $self->{column}};
828          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
829          !!!next-input-character;          !!!next-input-character;
830          redo A;          redo A;
831        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
832          !!!next-input-character;          !!!next-input-character;
833          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
834              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
835              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
836            # permitted slash            # permitted slash
837              !!!cp (50);
838            #            #
839          } else {          } else {
840              !!!cp (51);
841            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
842          }          }
843          ## Stay in the state          ## Stay in the state
844          # next-input-character is already done          # next-input-character is already done
845          redo A;          redo A;
846        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
847          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
848          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
849            $self->{current_token}->{first_start_tag}            !!!cp (52);
               = not defined $self->{last_emitted_start_tag_name};  
850            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
851          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
852            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
853            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
854                !!!cp (53);
855              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
856              } else {
857                !!!cp (54);
858            }            }
859          } else {          } else {
860            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 870  sub _get_next_token ($) {
870               0x0022 => 1, # "               0x0022 => 1, # "
871               0x0027 => 1, # '               0x0027 => 1, # '
872               0x003D => 1, # =               0x003D => 1, # =
873              }->{$self->{next_input_character}}) {              }->{$self->{next_char}}) {
874              !!!cp (55);
875            !!!parse-error (type => 'bad attribute name');            !!!parse-error (type => 'bad attribute name');
876            } else {
877              !!!cp (56);
878          }          }
879          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          $self->{current_attribute}
880                                value => ''};              = {name => chr ($self->{next_char}),
881                   value => '',
882                   line => $self->{line}, column => $self->{column}};
883          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
884          !!!next-input-character;          !!!next-input-character;
885          redo A;          redo A;
# Line 761  sub _get_next_token ($) { Line 888  sub _get_next_token ($) {
888        my $before_leave = sub {        my $before_leave = sub {
889          if (exists $self->{current_token}->{attributes} # start tag or end tag          if (exists $self->{current_token}->{attributes} # start tag or end tag
890              ->{$self->{current_attribute}->{name}}) { # MUST              ->{$self->{current_attribute}->{name}}) { # MUST
891            !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name});            !!!cp (57);
892              !!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name}, line => $self->{current_attribute}->{line}, column => $self->{current_attribute}->{column});
893            ## Discard $self->{current_attribute} # MUST            ## Discard $self->{current_attribute} # MUST
894          } else {          } else {
895              !!!cp (58);
896            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}            $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}
897              = $self->{current_attribute};              = $self->{current_attribute};
898          }          }
899        }; # $before_leave        }; # $before_leave
900    
901        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
902            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
903            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
904            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
905            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
906            !!!cp (59);
907          $before_leave->();          $before_leave->();
908          $self->{state} = AFTER_ATTRIBUTE_NAME_STATE;          $self->{state} = AFTER_ATTRIBUTE_NAME_STATE;
909          !!!next-input-character;          !!!next-input-character;
910          redo A;          redo A;
911        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
912            !!!cp (60);
913          $before_leave->();          $before_leave->();
914          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
915          !!!next-input-character;          !!!next-input-character;
916          redo A;          redo A;
917        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
918          $before_leave->();          $before_leave->();
919          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
920            $self->{current_token}->{first_start_tag}            !!!cp (61);
               = not defined $self->{last_emitted_start_tag_name};  
921            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
922          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
923              !!!cp (62);
924            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
925            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
926              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
# Line 803  sub _get_next_token ($) { Line 934  sub _get_next_token ($) {
934          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
935    
936          redo A;          redo A;
937        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
938                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
939          $self->{current_attribute}->{name} .= chr ($self->{next_input_character} + 0x0020);          !!!cp (63);
940            $self->{current_attribute}->{name} .= chr ($self->{next_char} + 0x0020);
941          ## Stay in the state          ## Stay in the state
942          !!!next-input-character;          !!!next-input-character;
943          redo A;          redo A;
944        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
945          $before_leave->();          $before_leave->();
946          !!!next-input-character;          !!!next-input-character;
947          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
948              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
949              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
950            # permitted slash            # permitted slash
951              !!!cp (64);
952            #            #
953          } else {          } else {
954              !!!cp (65);
955            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
956          }          }
957          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
958          # next-input-character is already done          # next-input-character is already done
959          redo A;          redo A;
960        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
961          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
962          $before_leave->();          $before_leave->();
963          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
964            $self->{current_token}->{first_start_tag}            !!!cp (66);
               = not defined $self->{last_emitted_start_tag_name};  
965            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
966          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
967            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
968            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
969                !!!cp (67);
970              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
971              } else {
972                ## NOTE: This state should never be reached.
973                !!!cp (68);
974            }            }
975          } else {          } else {
976            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 982  sub _get_next_token ($) {
982    
983          redo A;          redo A;
984        } else {        } else {
985          if ($self->{next_input_character} == 0x0022 or # "          if ($self->{next_char} == 0x0022 or # "
986              $self->{next_input_character} == 0x0027) { # '              $self->{next_char} == 0x0027) { # '
987              !!!cp (69);
988            !!!parse-error (type => 'bad attribute name');            !!!parse-error (type => 'bad attribute name');
989            } else {
990              !!!cp (70);
991          }          }
992          $self->{current_attribute}->{name} .= chr ($self->{next_input_character});          $self->{current_attribute}->{name} .= chr ($self->{next_char});
993          ## Stay in the state          ## Stay in the state
994          !!!next-input-character;          !!!next-input-character;
995          redo A;          redo A;
996        }        }
997      } elsif ($self->{state} == AFTER_ATTRIBUTE_NAME_STATE) {      } elsif ($self->{state} == AFTER_ATTRIBUTE_NAME_STATE) {
998        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
999            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1000            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1001            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1002            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1003            !!!cp (71);
1004          ## Stay in the state          ## Stay in the state
1005          !!!next-input-character;          !!!next-input-character;
1006          redo A;          redo A;
1007        } elsif ($self->{next_input_character} == 0x003D) { # =        } elsif ($self->{next_char} == 0x003D) { # =
1008            !!!cp (72);
1009          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;          $self->{state} = BEFORE_ATTRIBUTE_VALUE_STATE;
1010          !!!next-input-character;          !!!next-input-character;
1011          redo A;          redo A;
1012        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1013          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1014            $self->{current_token}->{first_start_tag}            !!!cp (73);
               = not defined $self->{last_emitted_start_tag_name};  
1015            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1016          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1017            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1018            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1019                !!!cp (74);
1020              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1021              } else {
1022                ## NOTE: This state should never be reached.
1023                !!!cp (75);
1024            }            }
1025          } else {          } else {
1026            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 1031  sub _get_next_token ($) {
1031          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1032    
1033          redo A;          redo A;
1034        } elsif (0x0041 <= $self->{next_input_character} and        } elsif (0x0041 <= $self->{next_char} and
1035                 $self->{next_input_character} <= 0x005A) { # A..Z                 $self->{next_char} <= 0x005A) { # A..Z
1036          $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),          !!!cp (76);
1037                                value => ''};          $self->{current_attribute}
1038                = {name => chr ($self->{next_char} + 0x0020),
1039                   value => '',
1040                   line => $self->{line}, column => $self->{column}};
1041          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1042          !!!next-input-character;          !!!next-input-character;
1043          redo A;          redo A;
1044        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1045          !!!next-input-character;          !!!next-input-character;
1046          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
1047              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
1048              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1049            # permitted slash            # permitted slash
1050              !!!cp (77);
1051            #            #
1052          } else {          } else {
1053              !!!cp (78);
1054            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
1055            ## TODO: Different error type for <aa / bb> than <aa/>            ## TODO: Different error type for <aa / bb> than <aa/>
1056          }          }
1057          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1058          # next-input-character is already done          # next-input-character is already done
1059          redo A;          redo A;
1060        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1061          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1062          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1063            $self->{current_token}->{first_start_tag}            !!!cp (79);
               = not defined $self->{last_emitted_start_tag_name};  
1064            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1065          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1066            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1067            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1068                !!!cp (80);
1069              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1070              } else {
1071                ## NOTE: This state should never be reached.
1072                !!!cp (81);
1073            }            }
1074          } else {          } else {
1075            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 1081  sub _get_next_token ($) {
1081    
1082          redo A;          redo A;
1083        } else {        } else {
1084          $self->{current_attribute} = {name => chr ($self->{next_input_character}),          !!!cp (82);
1085                                value => ''};          $self->{current_attribute}
1086                = {name => chr ($self->{next_char}),
1087                   value => '',
1088                   line => $self->{line}, column => $self->{column}};
1089          $self->{state} = ATTRIBUTE_NAME_STATE;          $self->{state} = ATTRIBUTE_NAME_STATE;
1090          !!!next-input-character;          !!!next-input-character;
1091          redo A;                  redo A;        
1092        }        }
1093      } elsif ($self->{state} == BEFORE_ATTRIBUTE_VALUE_STATE) {      } elsif ($self->{state} == BEFORE_ATTRIBUTE_VALUE_STATE) {
1094        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1095            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1096            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1097            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1098            $self->{next_input_character} == 0x0020) { # SP                  $self->{next_char} == 0x0020) { # SP      
1099            !!!cp (83);
1100          ## Stay in the state          ## Stay in the state
1101          !!!next-input-character;          !!!next-input-character;
1102          redo A;          redo A;
1103        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
1104            !!!cp (84);
1105          $self->{state} = ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE;
1106          !!!next-input-character;          !!!next-input-character;
1107          redo A;          redo A;
1108        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1109            !!!cp (85);
1110          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1111          ## reconsume          ## reconsume
1112          redo A;          redo A;
1113        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
1114            !!!cp (86);
1115          $self->{state} = ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE;
1116          !!!next-input-character;          !!!next-input-character;
1117          redo A;          redo A;
1118        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1119          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1120            $self->{current_token}->{first_start_tag}            !!!cp (87);
               = not defined $self->{last_emitted_start_tag_name};  
1121            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1122          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1123            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1124            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1125                !!!cp (88);
1126              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1127              } else {
1128                ## NOTE: This state should never be reached.
1129                !!!cp (89);
1130            }            }
1131          } else {          } else {
1132            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 1137  sub _get_next_token ($) {
1137          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1138    
1139          redo A;          redo A;
1140        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1141          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1142          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1143            $self->{current_token}->{first_start_tag}            !!!cp (90);
               = not defined $self->{last_emitted_start_tag_name};  
1144            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1145          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1146            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1147            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1148                !!!cp (91);
1149              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1150              } else {
1151                ## NOTE: This state should never be reached.
1152                !!!cp (92);
1153            }            }
1154          } else {          } else {
1155            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 1161  sub _get_next_token ($) {
1161    
1162          redo A;          redo A;
1163        } else {        } else {
1164          if ($self->{next_input_character} == 0x003D) { # =          if ($self->{next_char} == 0x003D) { # =
1165              !!!cp (93);
1166            !!!parse-error (type => 'bad attribute value');            !!!parse-error (type => 'bad attribute value');
1167            } else {
1168              !!!cp (94);
1169          }          }
1170          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1171          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;          $self->{state} = ATTRIBUTE_VALUE_UNQUOTED_STATE;
1172          !!!next-input-character;          !!!next-input-character;
1173          redo A;          redo A;
1174        }        }
1175      } elsif ($self->{state} == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE) {      } elsif ($self->{state} == ATTRIBUTE_VALUE_DOUBLE_QUOTED_STATE) {
1176        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1177            !!!cp (95);
1178          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1179          !!!next-input-character;          !!!next-input-character;
1180          redo A;          redo A;
1181        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1182            !!!cp (96);
1183          $self->{last_attribute_value_state} = $self->{state};          $self->{last_attribute_value_state} = $self->{state};
1184          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1185          !!!next-input-character;          !!!next-input-character;
1186          redo A;          redo A;
1187        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1188          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1189          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1190            $self->{current_token}->{first_start_tag}            !!!cp (97);
               = not defined $self->{last_emitted_start_tag_name};  
1191            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1192          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1193            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1194            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1195                !!!cp (98);
1196              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1197              } else {
1198                ## NOTE: This state should never be reached.
1199                !!!cp (99);
1200            }            }
1201          } else {          } else {
1202            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 1208  sub _get_next_token ($) {
1208    
1209          redo A;          redo A;
1210        } else {        } else {
1211          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (100);
1212            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1213          ## Stay in the state          ## Stay in the state
1214          !!!next-input-character;          !!!next-input-character;
1215          redo A;          redo A;
1216        }        }
1217      } elsif ($self->{state} == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE) {      } elsif ($self->{state} == ATTRIBUTE_VALUE_SINGLE_QUOTED_STATE) {
1218        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1219            !!!cp (101);
1220          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;          $self->{state} = AFTER_ATTRIBUTE_VALUE_QUOTED_STATE;
1221          !!!next-input-character;          !!!next-input-character;
1222          redo A;          redo A;
1223        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1224            !!!cp (102);
1225          $self->{last_attribute_value_state} = $self->{state};          $self->{last_attribute_value_state} = $self->{state};
1226          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1227          !!!next-input-character;          !!!next-input-character;
1228          redo A;          redo A;
1229        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1230          !!!parse-error (type => 'unclosed attribute value');          !!!parse-error (type => 'unclosed attribute value');
1231          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1232            $self->{current_token}->{first_start_tag}            !!!cp (103);
               = not defined $self->{last_emitted_start_tag_name};  
1233            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1234          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1235            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1236            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1237                !!!cp (104);
1238              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1239              } else {
1240                ## NOTE: This state should never be reached.
1241                !!!cp (105);
1242            }            }
1243          } else {          } else {
1244            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 1250  sub _get_next_token ($) {
1250    
1251          redo A;          redo A;
1252        } else {        } else {
1253          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          !!!cp (106);
1254            $self->{current_attribute}->{value} .= chr ($self->{next_char});
1255          ## Stay in the state          ## Stay in the state
1256          !!!next-input-character;          !!!next-input-character;
1257          redo A;          redo A;
1258        }        }
1259      } elsif ($self->{state} == ATTRIBUTE_VALUE_UNQUOTED_STATE) {      } elsif ($self->{state} == ATTRIBUTE_VALUE_UNQUOTED_STATE) {
1260        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1261            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1262            $self->{next_input_character} == 0x000B or # HT            $self->{next_char} == 0x000B or # HT
1263            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1264            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1265            !!!cp (107);
1266          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1267          !!!next-input-character;          !!!next-input-character;
1268          redo A;          redo A;
1269        } elsif ($self->{next_input_character} == 0x0026) { # &        } elsif ($self->{next_char} == 0x0026) { # &
1270            !!!cp (108);
1271          $self->{last_attribute_value_state} = $self->{state};          $self->{last_attribute_value_state} = $self->{state};
1272          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;          $self->{state} = ENTITY_IN_ATTRIBUTE_VALUE_STATE;
1273          !!!next-input-character;          !!!next-input-character;
1274          redo A;          redo A;
1275        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1276          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1277            $self->{current_token}->{first_start_tag}            !!!cp (109);
               = not defined $self->{last_emitted_start_tag_name};  
1278            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1279          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1280            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1281            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1282                !!!cp (110);
1283              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1284              } else {
1285                ## NOTE: This state should never be reached.
1286                !!!cp (111);
1287            }            }
1288          } else {          } else {
1289            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 1294  sub _get_next_token ($) {
1294          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1295    
1296          redo A;          redo A;
1297        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1298          !!!parse-error (type => 'unclosed tag');          !!!parse-error (type => 'unclosed tag');
1299          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1300            $self->{current_token}->{first_start_tag}            !!!cp (112);
               = not defined $self->{last_emitted_start_tag_name};  
1301            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1302          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1303            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1304            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1305                !!!cp (113);
1306              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1307              } else {
1308                ## NOTE: This state should never be reached.
1309                !!!cp (114);
1310            }            }
1311          } else {          } else {
1312            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 1322  sub _get_next_token ($) {
1322               0x0022 => 1, # "               0x0022 => 1, # "
1323               0x0027 => 1, # '               0x0027 => 1, # '
1324               0x003D => 1, # =               0x003D => 1, # =
1325              }->{$self->{next_input_character}}) {              }->{$self->{next_char}}) {
1326              !!!cp (115);
1327            !!!parse-error (type => 'bad attribute value');            !!!parse-error (type => 'bad attribute value');
1328            } else {
1329              !!!cp (116);
1330          }          }
1331          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          $self->{current_attribute}->{value} .= chr ($self->{next_char});
1332          ## Stay in the state          ## Stay in the state
1333          !!!next-input-character;          !!!next-input-character;
1334          redo A;          redo A;
# Line 1151  sub _get_next_token ($) { Line 1343  sub _get_next_token ($) {
1343             -1);             -1);
1344    
1345        unless (defined $token) {        unless (defined $token) {
1346            !!!cp (117);
1347          $self->{current_attribute}->{value} .= '&';          $self->{current_attribute}->{value} .= '&';
1348        } else {        } else {
1349            !!!cp (118);
1350          $self->{current_attribute}->{value} .= $token->{data};          $self->{current_attribute}->{value} .= $token->{data};
1351          $self->{current_attribute}->{has_reference} = $token->{has_reference};          $self->{current_attribute}->{has_reference} = $token->{has_reference};
1352          ## 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 1356  sub _get_next_token ($) {
1356        # next-input-character is already done        # next-input-character is already done
1357        redo A;        redo A;
1358      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {      } elsif ($self->{state} == AFTER_ATTRIBUTE_VALUE_QUOTED_STATE) {
1359        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1360            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1361            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1362            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1363            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1364            !!!cp (118);
1365          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1366          !!!next-input-character;          !!!next-input-character;
1367          redo A;          redo A;
1368        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1369          if ($self->{current_token}->{type} == START_TAG_TOKEN) {          if ($self->{current_token}->{type} == START_TAG_TOKEN) {
1370            $self->{current_token}->{first_start_tag}            !!!cp (119);
               = not defined $self->{last_emitted_start_tag_name};  
1371            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
1372          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {          } elsif ($self->{current_token}->{type} == END_TAG_TOKEN) {
1373            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST            $self->{content_model} = PCDATA_CONTENT_MODEL; # MUST
1374            if ($self->{current_token}->{attributes}) {            if ($self->{current_token}->{attributes}) {
1375                !!!cp (120);
1376              !!!parse-error (type => 'end tag attribute');              !!!parse-error (type => 'end tag attribute');
1377              } else {
1378                ## NOTE: This state should never be reached.
1379                !!!cp (121);
1380            }            }
1381          } else {          } else {
1382            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 1387  sub _get_next_token ($) {
1387          !!!emit ($self->{current_token}); # start tag or end tag          !!!emit ($self->{current_token}); # start tag or end tag
1388    
1389          redo A;          redo A;
1390        } elsif ($self->{next_input_character} == 0x002F) { # /        } elsif ($self->{next_char} == 0x002F) { # /
1391          !!!next-input-character;          !!!next-input-character;
1392          if ($self->{next_input_character} == 0x003E and # >          if ($self->{next_char} == 0x003E and # >
1393              $self->{current_token}->{type} == START_TAG_TOKEN and              $self->{current_token}->{type} == START_TAG_TOKEN and
1394              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {              $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
1395            # permitted slash            # permitted slash
1396              !!!cp (122);
1397            #            #
1398          } else {          } else {
1399              !!!cp (123);
1400            !!!parse-error (type => 'nestc');            !!!parse-error (type => 'nestc');
1401          }          }
1402          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1403          # next-input-character is already done          # next-input-character is already done
1404          redo A;          redo A;
1405        } else {        } else {
1406            !!!cp (124);
1407          !!!parse-error (type => 'no space between attributes');          !!!parse-error (type => 'no space between attributes');
1408          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;          $self->{state} = BEFORE_ATTRIBUTE_NAME_STATE;
1409          ## reconsume          ## reconsume
# Line 1211  sub _get_next_token ($) { Line 1412  sub _get_next_token ($) {
1412      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {      } elsif ($self->{state} == BOGUS_COMMENT_STATE) {
1413        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1414                
1415        my $token = {type => COMMENT_TOKEN, data => ''};        ## NOTE: Set by the previous state
1416          #my $token = {type => COMMENT_TOKEN, data => ''};
1417    
1418        BC: {        BC: {
1419          if ($self->{next_input_character} == 0x003E) { # >          if ($self->{next_char} == 0x003E) { # >
1420              !!!cp (124);
1421            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1422            !!!next-input-character;            !!!next-input-character;
1423    
1424            !!!emit ($token);            !!!emit ($self->{current_token}); # comment
1425    
1426            redo A;            redo A;
1427          } elsif ($self->{next_input_character} == -1) {          } elsif ($self->{next_char} == -1) {
1428              !!!cp (125);
1429            $self->{state} = DATA_STATE;            $self->{state} = DATA_STATE;
1430            ## reconsume            ## reconsume
1431    
1432            !!!emit ($token);            !!!emit ($self->{current_token}); # comment
1433    
1434            redo A;            redo A;
1435          } else {          } else {
1436            $token->{data} .= chr ($self->{next_input_character});            !!!cp (126);
1437              $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1438            !!!next-input-character;            !!!next-input-character;
1439            redo BC;            redo BC;
1440          }          }
1441        } # BC        } # BC
1442    
1443          die "$0: _get_next_token: unexpected case [BC]";
1444      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {      } elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) {
1445        ## (only happen if PCDATA state)        ## (only happen if PCDATA state)
1446    
1447          my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1);
1448    
1449        my @next_char;        my @next_char;
1450        push @next_char, $self->{next_input_character};        push @next_char, $self->{next_char};
1451                
1452        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1453          !!!next-input-character;          !!!next-input-character;
1454          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1455          if ($self->{next_input_character} == 0x002D) { # -          if ($self->{next_char} == 0x002D) { # -
1456            $self->{current_token} = {type => COMMENT_TOKEN, data => ''};            !!!cp (127);
1457              $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1458                                        line => $l, column => $c,
1459                                       };
1460            $self->{state} = COMMENT_START_STATE;            $self->{state} = COMMENT_START_STATE;
1461            !!!next-input-character;            !!!next-input-character;
1462            redo A;            redo A;
1463            } else {
1464              !!!cp (128);
1465          }          }
1466        } elsif ($self->{next_input_character} == 0x0044 or # D        } elsif ($self->{next_char} == 0x0044 or # D
1467                 $self->{next_input_character} == 0x0064) { # d                 $self->{next_char} == 0x0064) { # d
1468          !!!next-input-character;          !!!next-input-character;
1469          push @next_char, $self->{next_input_character};          push @next_char, $self->{next_char};
1470          if ($self->{next_input_character} == 0x004F or # O          if ($self->{next_char} == 0x004F or # O
1471              $self->{next_input_character} == 0x006F) { # o              $self->{next_char} == 0x006F) { # o
1472            !!!next-input-character;            !!!next-input-character;
1473            push @next_char, $self->{next_input_character};            push @next_char, $self->{next_char};
1474            if ($self->{next_input_character} == 0x0043 or # C            if ($self->{next_char} == 0x0043 or # C
1475                $self->{next_input_character} == 0x0063) { # c                $self->{next_char} == 0x0063) { # c
1476              !!!next-input-character;              !!!next-input-character;
1477              push @next_char, $self->{next_input_character};              push @next_char, $self->{next_char};
1478              if ($self->{next_input_character} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1479                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
1480                !!!next-input-character;                !!!next-input-character;
1481                push @next_char, $self->{next_input_character};                push @next_char, $self->{next_char};
1482                if ($self->{next_input_character} == 0x0059 or # Y                if ($self->{next_char} == 0x0059 or # Y
1483                    $self->{next_input_character} == 0x0079) { # y                    $self->{next_char} == 0x0079) { # y
1484                  !!!next-input-character;                  !!!next-input-character;
1485                  push @next_char, $self->{next_input_character};                  push @next_char, $self->{next_char};
1486                  if ($self->{next_input_character} == 0x0050 or # P                  if ($self->{next_char} == 0x0050 or # P
1487                      $self->{next_input_character} == 0x0070) { # p                      $self->{next_char} == 0x0070) { # p
1488                    !!!next-input-character;                    !!!next-input-character;
1489                    push @next_char, $self->{next_input_character};                    push @next_char, $self->{next_char};
1490                    if ($self->{next_input_character} == 0x0045 or # E                    if ($self->{next_char} == 0x0045 or # E
1491                        $self->{next_input_character} == 0x0065) { # e                        $self->{next_char} == 0x0065) { # e
1492                      ## ISSUE: What a stupid code this is!                      !!!cp (129);
1493                        ## TODO: What a stupid code this is!
1494                      $self->{state} = DOCTYPE_STATE;                      $self->{state} = DOCTYPE_STATE;
1495                        $self->{current_token} = {type => DOCTYPE_TOKEN,
1496                                                  quirks => 1,
1497                                                  line => $l, column => $c,
1498                                                 };
1499                      !!!next-input-character;                      !!!next-input-character;
1500                      redo A;                      redo A;
1501                      } else {
1502                        !!!cp (130);
1503                    }                    }
1504                    } else {
1505                      !!!cp (131);
1506                  }                  }
1507                  } else {
1508                    !!!cp (132);
1509                }                }
1510                } else {
1511                  !!!cp (133);
1512              }              }
1513              } else {
1514                !!!cp (134);
1515            }            }
1516            } else {
1517              !!!cp (135);
1518          }          }
1519          } else {
1520            !!!cp (136);
1521        }        }
1522    
1523        !!!parse-error (type => 'bogus comment');        !!!parse-error (type => 'bogus comment');
1524        $self->{next_input_character} = shift @next_char;        $self->{next_char} = shift @next_char;
1525        !!!back-next-input-character (@next_char);        !!!back-next-input-character (@next_char);
1526        $self->{state} = BOGUS_COMMENT_STATE;        $self->{state} = BOGUS_COMMENT_STATE;
1527          $self->{current_token} = {type => COMMENT_TOKEN, data => '',
1528                                    line => $l, column => $c,
1529                                   };
1530        redo A;        redo A;
1531                
1532        ## ISSUE: typos in spec: chacacters, is is a parse error        ## ISSUE: typos in spec: chacacters, is is a parse error
1533        ## 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?
1534      } elsif ($self->{state} == COMMENT_START_STATE) {      } elsif ($self->{state} == COMMENT_START_STATE) {
1535        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1536            !!!cp (137);
1537          $self->{state} = COMMENT_START_DASH_STATE;          $self->{state} = COMMENT_START_DASH_STATE;
1538          !!!next-input-character;          !!!next-input-character;
1539          redo A;          redo A;
1540        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1541            !!!cp (138);
1542          !!!parse-error (type => 'bogus comment');          !!!parse-error (type => 'bogus comment');
1543          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1544          !!!next-input-character;          !!!next-input-character;
# Line 1308  sub _get_next_token ($) { Line 1546  sub _get_next_token ($) {
1546          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1547    
1548          redo A;          redo A;
1549        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1550            !!!cp (139);
1551          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1552          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1553          ## reconsume          ## reconsume
# Line 1317  sub _get_next_token ($) { Line 1556  sub _get_next_token ($) {
1556    
1557          redo A;          redo A;
1558        } else {        } else {
1559            !!!cp (140);
1560          $self->{current_token}->{data} # comment          $self->{current_token}->{data} # comment
1561              .= chr ($self->{next_input_character});              .= chr ($self->{next_char});
1562          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1563          !!!next-input-character;          !!!next-input-character;
1564          redo A;          redo A;
1565        }        }
1566      } elsif ($self->{state} == COMMENT_START_DASH_STATE) {      } elsif ($self->{state} == COMMENT_START_DASH_STATE) {
1567        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1568            !!!cp (141);
1569          $self->{state} = COMMENT_END_STATE;          $self->{state} = COMMENT_END_STATE;
1570          !!!next-input-character;          !!!next-input-character;
1571          redo A;          redo A;
1572        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1573            !!!cp (142);
1574          !!!parse-error (type => 'bogus comment');          !!!parse-error (type => 'bogus comment');
1575          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1576          !!!next-input-character;          !!!next-input-character;
# Line 1336  sub _get_next_token ($) { Line 1578  sub _get_next_token ($) {
1578          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1579    
1580          redo A;          redo A;
1581        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1582            !!!cp (143);
1583          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1584          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1585          ## reconsume          ## reconsume
# Line 1345  sub _get_next_token ($) { Line 1588  sub _get_next_token ($) {
1588    
1589          redo A;          redo A;
1590        } else {        } else {
1591            !!!cp (144);
1592          $self->{current_token}->{data} # comment          $self->{current_token}->{data} # comment
1593              .= '-' . chr ($self->{next_input_character});              .= '-' . chr ($self->{next_char});
1594          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1595          !!!next-input-character;          !!!next-input-character;
1596          redo A;          redo A;
1597        }        }
1598      } elsif ($self->{state} == COMMENT_STATE) {      } elsif ($self->{state} == COMMENT_STATE) {
1599        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1600            !!!cp (145);
1601          $self->{state} = COMMENT_END_DASH_STATE;          $self->{state} = COMMENT_END_DASH_STATE;
1602          !!!next-input-character;          !!!next-input-character;
1603          redo A;          redo A;
1604        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1605            !!!cp (146);
1606          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1607          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1608          ## reconsume          ## reconsume
# Line 1365  sub _get_next_token ($) { Line 1611  sub _get_next_token ($) {
1611    
1612          redo A;          redo A;
1613        } else {        } else {
1614          $self->{current_token}->{data} .= chr ($self->{next_input_character}); # comment          !!!cp (147);
1615            $self->{current_token}->{data} .= chr ($self->{next_char}); # comment
1616          ## Stay in the state          ## Stay in the state
1617          !!!next-input-character;          !!!next-input-character;
1618          redo A;          redo A;
1619        }        }
1620      } elsif ($self->{state} == COMMENT_END_DASH_STATE) {      } elsif ($self->{state} == COMMENT_END_DASH_STATE) {
1621        if ($self->{next_input_character} == 0x002D) { # -        if ($self->{next_char} == 0x002D) { # -
1622            !!!cp (148);
1623          $self->{state} = COMMENT_END_STATE;          $self->{state} = COMMENT_END_STATE;
1624          !!!next-input-character;          !!!next-input-character;
1625          redo A;          redo A;
1626        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1627            !!!cp (149);
1628          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1629          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1630          ## reconsume          ## reconsume
# Line 1384  sub _get_next_token ($) { Line 1633  sub _get_next_token ($) {
1633    
1634          redo A;          redo A;
1635        } else {        } else {
1636          $self->{current_token}->{data} .= '-' . chr ($self->{next_input_character}); # comment          !!!cp (150);
1637            $self->{current_token}->{data} .= '-' . chr ($self->{next_char}); # comment
1638          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1639          !!!next-input-character;          !!!next-input-character;
1640          redo A;          redo A;
1641        }        }
1642      } elsif ($self->{state} == COMMENT_END_STATE) {      } elsif ($self->{state} == COMMENT_END_STATE) {
1643        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
1644            !!!cp (151);
1645          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1646          !!!next-input-character;          !!!next-input-character;
1647    
1648          !!!emit ($self->{current_token}); # comment          !!!emit ($self->{current_token}); # comment
1649    
1650          redo A;          redo A;
1651        } elsif ($self->{next_input_character} == 0x002D) { # -        } elsif ($self->{next_char} == 0x002D) { # -
1652          !!!parse-error (type => 'dash in comment');          !!!cp (152);
1653            !!!parse-error (type => 'dash in comment',
1654                            line => $self->{line_prev},
1655                            column => $self->{column_prev});
1656          $self->{current_token}->{data} .= '-'; # comment          $self->{current_token}->{data} .= '-'; # comment
1657          ## Stay in the state          ## Stay in the state
1658          !!!next-input-character;          !!!next-input-character;
1659          redo A;          redo A;
1660        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1661            !!!cp (153);
1662          !!!parse-error (type => 'unclosed comment');          !!!parse-error (type => 'unclosed comment');
1663          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1664          ## reconsume          ## reconsume
# Line 1412  sub _get_next_token ($) { Line 1667  sub _get_next_token ($) {
1667    
1668          redo A;          redo A;
1669        } else {        } else {
1670          !!!parse-error (type => 'dash in comment');          !!!cp (154);
1671          $self->{current_token}->{data} .= '--' . chr ($self->{next_input_character}); # comment          !!!parse-error (type => 'dash in comment',
1672                            line => $self->{line_prev},
1673                            column => $self->{column_prev});
1674            $self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment
1675          $self->{state} = COMMENT_STATE;          $self->{state} = COMMENT_STATE;
1676          !!!next-input-character;          !!!next-input-character;
1677          redo A;          redo A;
1678        }        }
1679      } elsif ($self->{state} == DOCTYPE_STATE) {      } elsif ($self->{state} == DOCTYPE_STATE) {
1680        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1681            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1682            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1683            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1684            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1685            !!!cp (155);
1686          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1687          !!!next-input-character;          !!!next-input-character;
1688          redo A;          redo A;
1689        } else {        } else {
1690            !!!cp (156);
1691          !!!parse-error (type => 'no space before DOCTYPE name');          !!!parse-error (type => 'no space before DOCTYPE name');
1692          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;          $self->{state} = BEFORE_DOCTYPE_NAME_STATE;
1693          ## reconsume          ## reconsume
1694          redo A;          redo A;
1695        }        }
1696      } elsif ($self->{state} == BEFORE_DOCTYPE_NAME_STATE) {      } elsif ($self->{state} == BEFORE_DOCTYPE_NAME_STATE) {
1697        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1698            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1699            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1700            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1701            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1702            !!!cp (157);
1703          ## Stay in the state          ## Stay in the state
1704          !!!next-input-character;          !!!next-input-character;
1705          redo A;          redo A;
1706        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1707            !!!cp (158);
1708          !!!parse-error (type => 'no DOCTYPE name');          !!!parse-error (type => 'no DOCTYPE name');
1709          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1710          !!!next-input-character;          !!!next-input-character;
1711    
1712          !!!emit ({type => DOCTYPE_TOKEN}); # incorrect          !!!emit ($self->{current_token}); # DOCTYPE (quirks)
1713    
1714          redo A;          redo A;
1715        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1716            !!!cp (159);
1717          !!!parse-error (type => 'no DOCTYPE name');          !!!parse-error (type => 'no DOCTYPE name');
1718          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1719          ## reconsume          ## reconsume
1720    
1721          !!!emit ({type => DOCTYPE_TOKEN}); # incorrect          !!!emit ($self->{current_token}); # DOCTYPE (quirks)
1722    
1723          redo A;          redo A;
1724        } else {        } else {
1725          $self->{current_token}          !!!cp (160);
1726              = {type => DOCTYPE_TOKEN,          $self->{current_token}->{name} = chr $self->{next_char};
1727                 name => chr ($self->{next_input_character}),          delete $self->{current_token}->{quirks};
                correct => 1};  
1728  ## ISSUE: "Set the token's name name to the" in the spec  ## ISSUE: "Set the token's name name to the" in the spec
1729          $self->{state} = DOCTYPE_NAME_STATE;          $self->{state} = DOCTYPE_NAME_STATE;
1730          !!!next-input-character;          !!!next-input-character;
# Line 1470  sub _get_next_token ($) { Line 1732  sub _get_next_token ($) {
1732        }        }
1733      } elsif ($self->{state} == DOCTYPE_NAME_STATE) {      } elsif ($self->{state} == DOCTYPE_NAME_STATE) {
1734  ## ISSUE: Redundant "First," in the spec.  ## ISSUE: Redundant "First," in the spec.
1735        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1736            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1737            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1738            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1739            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1740            !!!cp (161);
1741          $self->{state} = AFTER_DOCTYPE_NAME_STATE;          $self->{state} = AFTER_DOCTYPE_NAME_STATE;
1742          !!!next-input-character;          !!!next-input-character;
1743          redo A;          redo A;
1744        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1745            !!!cp (162);
1746          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1747          !!!next-input-character;          !!!next-input-character;
1748    
1749          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1750    
1751          redo A;          redo A;
1752        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1753            !!!cp (163);
1754          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1755          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1756          ## reconsume          ## reconsume
1757    
1758          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1759          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1760    
1761          redo A;          redo A;
1762        } else {        } else {
1763            !!!cp (164);
1764          $self->{current_token}->{name}          $self->{current_token}->{name}
1765            .= chr ($self->{next_input_character}); # DOCTYPE            .= chr ($self->{next_char}); # DOCTYPE
1766          ## Stay in the state          ## Stay in the state
1767          !!!next-input-character;          !!!next-input-character;
1768          redo A;          redo A;
1769        }        }
1770      } elsif ($self->{state} == AFTER_DOCTYPE_NAME_STATE) {      } elsif ($self->{state} == AFTER_DOCTYPE_NAME_STATE) {
1771        if ($self->{next_input_character} == 0x0009 or # HT        if ($self->{next_char} == 0x0009 or # HT
1772            $self->{next_input_character} == 0x000A or # LF            $self->{next_char} == 0x000A or # LF
1773            $self->{next_input_character} == 0x000B or # VT            $self->{next_char} == 0x000B or # VT
1774            $self->{next_input_character} == 0x000C or # FF            $self->{next_char} == 0x000C or # FF
1775            $self->{next_input_character} == 0x0020) { # SP            $self->{next_char} == 0x0020) { # SP
1776            !!!cp (165);
1777          ## Stay in the state          ## Stay in the state
1778          !!!next-input-character;          !!!next-input-character;
1779          redo A;          redo A;
1780        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1781            !!!cp (166);
1782          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1783          !!!next-input-character;          !!!next-input-character;
1784    
1785          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1786    
1787          redo A;          redo A;
1788        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1789            !!!cp (167);
1790          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1791          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1792          ## reconsume          ## reconsume
1793    
1794          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1795          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1796    
1797          redo A;          redo A;
1798        } elsif ($self->{next_input_character} == 0x0050 or # P        } elsif ($self->{next_char} == 0x0050 or # P
1799                 $self->{next_input_character} == 0x0070) { # p                 $self->{next_char} == 0x0070) { # p
1800          !!!next-input-character;          !!!next-input-character;
1801          if ($self->{next_input_character} == 0x0055 or # U          if ($self->{next_char} == 0x0055 or # U
1802              $self->{next_input_character} == 0x0075) { # u              $self->{next_char} == 0x0075) { # u
1803            !!!next-input-character;            !!!next-input-character;
1804            if ($self->{next_input_character} == 0x0042 or # B            if ($self->{next_char} == 0x0042 or # B
1805                $self->{next_input_character} == 0x0062) { # b                $self->{next_char} == 0x0062) { # b
1806              !!!next-input-character;              !!!next-input-character;
1807              if ($self->{next_input_character} == 0x004C or # L              if ($self->{next_char} == 0x004C or # L
1808                  $self->{next_input_character} == 0x006C) { # l                  $self->{next_char} == 0x006C) { # l
1809                !!!next-input-character;                !!!next-input-character;
1810                if ($self->{next_input_character} == 0x0049 or # I                if ($self->{next_char} == 0x0049 or # I
1811                    $self->{next_input_character} == 0x0069) { # i                    $self->{next_char} == 0x0069) { # i
1812                  !!!next-input-character;                  !!!next-input-character;
1813                  if ($self->{next_input_character} == 0x0043 or # C                  if ($self->{next_char} == 0x0043 or # C
1814                      $self->{next_input_character} == 0x0063) { # c                      $self->{next_char} == 0x0063) { # c
1815                      !!!cp (168);
1816                    $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;                    $self->{state} = BEFORE_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1817                    !!!next-input-character;                    !!!next-input-character;
1818                    redo A;                    redo A;
1819                    } else {
1820                      !!!cp (169);
1821                  }                  }
1822                  } else {
1823                    !!!cp (170);
1824                }                }
1825                } else {
1826                  !!!cp (171);
1827              }              }
1828              } else {
1829                !!!cp (172);
1830            }            }
1831            } else {
1832              !!!cp (173);
1833          }          }
1834    
1835          #          #
1836        } elsif ($self->{next_input_character} == 0x0053 or # S        } elsif ($self->{next_char} == 0x0053 or # S
1837                 $self->{next_input_character} == 0x0073) { # s                 $self->{next_char} == 0x0073) { # s
1838          !!!next-input-character;          !!!next-input-character;
1839          if ($self->{next_input_character} == 0x0059 or # Y          if ($self->{next_char} == 0x0059 or # Y
1840              $self->{next_input_character} == 0x0079) { # y              $self->{next_char} == 0x0079) { # y
1841            !!!next-input-character;            !!!next-input-character;
1842            if ($self->{next_input_character} == 0x0053 or # S            if ($self->{next_char} == 0x0053 or # S
1843                $self->{next_input_character} == 0x0073) { # s                $self->{next_char} == 0x0073) { # s
1844              !!!next-input-character;              !!!next-input-character;
1845              if ($self->{next_input_character} == 0x0054 or # T              if ($self->{next_char} == 0x0054 or # T
1846                  $self->{next_input_character} == 0x0074) { # t                  $self->{next_char} == 0x0074) { # t
1847                !!!next-input-character;                !!!next-input-character;
1848                if ($self->{next_input_character} == 0x0045 or # E                if ($self->{next_char} == 0x0045 or # E
1849                    $self->{next_input_character} == 0x0065) { # e                    $self->{next_char} == 0x0065) { # e
1850                  !!!next-input-character;                  !!!next-input-character;
1851                  if ($self->{next_input_character} == 0x004D or # M                  if ($self->{next_char} == 0x004D or # M
1852                      $self->{next_input_character} == 0x006D) { # m                      $self->{next_char} == 0x006D) { # m
1853                      !!!cp (174);
1854                    $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;                    $self->{state} = BEFORE_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
1855                    !!!next-input-character;                    !!!next-input-character;
1856                    redo A;                    redo A;
1857                    } else {
1858                      !!!cp (175);
1859                  }                  }
1860                  } else {
1861                    !!!cp (176);
1862                }                }
1863                } else {
1864                  !!!cp (177);
1865              }              }
1866              } else {
1867                !!!cp (178);
1868            }            }
1869            } else {
1870              !!!cp (179);
1871          }          }
1872    
1873          #          #
1874        } else {        } else {
1875            !!!cp (180);
1876          !!!next-input-character;          !!!next-input-character;
1877          #          #
1878        }        }
1879    
1880        !!!parse-error (type => 'string after DOCTYPE name');        !!!parse-error (type => 'string after DOCTYPE name');
1881          $self->{current_token}->{quirks} = 1;
1882    
1883        $self->{state} = BOGUS_DOCTYPE_STATE;        $self->{state} = BOGUS_DOCTYPE_STATE;
1884        # next-input-character is already done        # next-input-character is already done
1885        redo A;        redo A;
# Line 1593  sub _get_next_token ($) { Line 1887  sub _get_next_token ($) {
1887        if ({        if ({
1888              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1889              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
1890            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
1891            !!!cp (181);
1892          ## Stay in the state          ## Stay in the state
1893          !!!next-input-character;          !!!next-input-character;
1894          redo A;          redo A;
1895        } elsif ($self->{next_input_character} eq 0x0022) { # "        } elsif ($self->{next_char} eq 0x0022) { # "
1896            !!!cp (182);
1897          $self->{current_token}->{public_identifier} = ''; # DOCTYPE          $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1898          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE;          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE;
1899          !!!next-input-character;          !!!next-input-character;
1900          redo A;          redo A;
1901        } elsif ($self->{next_input_character} eq 0x0027) { # '        } elsif ($self->{next_char} eq 0x0027) { # '
1902            !!!cp (183);
1903          $self->{current_token}->{public_identifier} = ''; # DOCTYPE          $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1904          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE;          $self->{state} = DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE;
1905          !!!next-input-character;          !!!next-input-character;
1906          redo A;          redo A;
1907        } elsif ($self->{next_input_character} eq 0x003E) { # >        } elsif ($self->{next_char} eq 0x003E) { # >
1908            !!!cp (184);
1909          !!!parse-error (type => 'no PUBLIC literal');          !!!parse-error (type => 'no PUBLIC literal');
1910    
1911          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1912          !!!next-input-character;          !!!next-input-character;
1913    
1914          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1915          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1916    
1917          redo A;          redo A;
1918        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1919            !!!cp (185);
1920          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
1921    
1922          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1923          ## reconsume          ## reconsume
1924    
1925          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1926          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1927    
1928          redo A;          redo A;
1929        } else {        } else {
1930            !!!cp (186);
1931          !!!parse-error (type => 'string after PUBLIC');          !!!parse-error (type => 'string after PUBLIC');
1932            $self->{current_token}->{quirks} = 1;
1933    
1934          $self->{state} = BOGUS_DOCTYPE_STATE;          $self->{state} = BOGUS_DOCTYPE_STATE;
1935          !!!next-input-character;          !!!next-input-character;
1936          redo A;          redo A;
1937        }        }
1938      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED_STATE) {
1939        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
1940            !!!cp (187);
1941          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1942          !!!next-input-character;          !!!next-input-character;
1943          redo A;          redo A;
1944        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1945            !!!cp (188);
1946          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1947    
1948          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1949          !!!next-input-character;          !!!next-input-character;
1950    
1951          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1952          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1953    
1954          redo A;          redo A;
1955        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1956            !!!cp (189);
1957          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1958    
1959          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1960          ## reconsume          ## reconsume
1961    
1962          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1963          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1964    
1965          redo A;          redo A;
1966        } else {        } else {
1967            !!!cp (190);
1968          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
1969              .= chr $self->{next_input_character};              .= chr $self->{next_char};
1970          ## Stay in the state          ## Stay in the state
1971          !!!next-input-character;          !!!next-input-character;
1972          redo A;          redo A;
1973        }        }
1974      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED_STATE) {
1975        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
1976            !!!cp (191);
1977          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_PUBLIC_IDENTIFIER_STATE;
1978          !!!next-input-character;          !!!next-input-character;
1979          redo A;          redo A;
1980        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
1981            !!!cp (192);
1982          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1983    
1984          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1985          !!!next-input-character;          !!!next-input-character;
1986    
1987          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1988          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
1989    
1990          redo A;          redo A;
1991        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
1992            !!!cp (193);
1993          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
1994    
1995          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
1996          ## reconsume          ## reconsume
1997    
1998          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
1999          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2000    
2001          redo A;          redo A;
2002        } else {        } else {
2003            !!!cp (194);
2004          $self->{current_token}->{public_identifier} # DOCTYPE          $self->{current_token}->{public_identifier} # DOCTYPE
2005              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2006          ## Stay in the state          ## Stay in the state
2007          !!!next-input-character;          !!!next-input-character;
2008          redo A;          redo A;
# Line 1701  sub _get_next_token ($) { Line 2011  sub _get_next_token ($) {
2011        if ({        if ({
2012              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2013              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2014            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2015            !!!cp (195);
2016          ## Stay in the state          ## Stay in the state
2017          !!!next-input-character;          !!!next-input-character;
2018          redo A;          redo A;
2019        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
2020            !!!cp (196);
2021          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2022          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
2023          !!!next-input-character;          !!!next-input-character;
2024          redo A;          redo A;
2025        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
2026            !!!cp (197);
2027          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2028          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
2029          !!!next-input-character;          !!!next-input-character;
2030          redo A;          redo A;
2031        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2032            !!!cp (198);
2033          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2034          !!!next-input-character;          !!!next-input-character;
2035    
2036          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2037    
2038          redo A;          redo A;
2039        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2040            !!!cp (199);
2041          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2042    
2043          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2044          ## reconsume          ## reconsume
2045    
2046          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2047          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2048    
2049          redo A;          redo A;
2050        } else {        } else {
2051            !!!cp (200);
2052          !!!parse-error (type => 'string after PUBLIC literal');          !!!parse-error (type => 'string after PUBLIC literal');
2053            $self->{current_token}->{quirks} = 1;
2054    
2055          $self->{state} = BOGUS_DOCTYPE_STATE;          $self->{state} = BOGUS_DOCTYPE_STATE;
2056          !!!next-input-character;          !!!next-input-character;
2057          redo A;          redo A;
# Line 1742  sub _get_next_token ($) { Line 2060  sub _get_next_token ($) {
2060        if ({        if ({
2061              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2062              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2063            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2064            !!!cp (201);
2065          ## Stay in the state          ## Stay in the state
2066          !!!next-input-character;          !!!next-input-character;
2067          redo A;          redo A;
2068        } elsif ($self->{next_input_character} == 0x0022) { # "        } elsif ($self->{next_char} == 0x0022) { # "
2069            !!!cp (202);
2070          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2071          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE;
2072          !!!next-input-character;          !!!next-input-character;
2073          redo A;          redo A;
2074        } elsif ($self->{next_input_character} == 0x0027) { # '        } elsif ($self->{next_char} == 0x0027) { # '
2075            !!!cp (203);
2076          $self->{current_token}->{system_identifier} = ''; # DOCTYPE          $self->{current_token}->{system_identifier} = ''; # DOCTYPE
2077          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;          $self->{state} = DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE;
2078          !!!next-input-character;          !!!next-input-character;
2079          redo A;          redo A;
2080        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2081            !!!cp (204);
2082          !!!parse-error (type => 'no SYSTEM literal');          !!!parse-error (type => 'no SYSTEM literal');
2083          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2084          !!!next-input-character;          !!!next-input-character;
2085    
2086          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2087          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2088    
2089          redo A;          redo A;
2090        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2091            !!!cp (205);
2092          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2093    
2094          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2095          ## reconsume          ## reconsume
2096    
2097          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2098          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2099    
2100          redo A;          redo A;
2101        } else {        } else {
2102            !!!cp (206);
2103          !!!parse-error (type => 'string after SYSTEM');          !!!parse-error (type => 'string after SYSTEM');
2104            $self->{current_token}->{quirks} = 1;
2105    
2106          $self->{state} = BOGUS_DOCTYPE_STATE;          $self->{state} = BOGUS_DOCTYPE_STATE;
2107          !!!next-input-character;          !!!next-input-character;
2108          redo A;          redo A;
2109        }        }
2110      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED_STATE) {
2111        if ($self->{next_input_character} == 0x0022) { # "        if ($self->{next_char} == 0x0022) { # "
2112            !!!cp (207);
2113          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2114          !!!next-input-character;          !!!next-input-character;
2115          redo A;          redo A;
2116        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2117            !!!cp (208);
2118          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
2119    
2120          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2121          !!!next-input-character;          !!!next-input-character;
2122    
2123          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2124          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2125    
2126          redo A;          redo A;
2127        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2128            !!!cp (209);
2129          !!!parse-error (type => 'unclosed SYSTEM literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2130    
2131          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2132          ## reconsume          ## reconsume
2133    
2134          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2135          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2136    
2137          redo A;          redo A;
2138        } else {        } else {
2139            !!!cp (210);
2140          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2141              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2142          ## Stay in the state          ## Stay in the state
2143          !!!next-input-character;          !!!next-input-character;
2144          redo A;          redo A;
2145        }        }
2146      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE) {      } elsif ($self->{state} == DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED_STATE) {
2147        if ($self->{next_input_character} == 0x0027) { # '        if ($self->{next_char} == 0x0027) { # '
2148            !!!cp (211);
2149          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;          $self->{state} = AFTER_DOCTYPE_SYSTEM_IDENTIFIER_STATE;
2150          !!!next-input-character;          !!!next-input-character;
2151          redo A;          redo A;
2152        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2153            !!!cp (212);
2154          !!!parse-error (type => 'unclosed PUBLIC literal');          !!!parse-error (type => 'unclosed PUBLIC literal');
2155    
2156          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2157          !!!next-input-character;          !!!next-input-character;
2158    
2159          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2160          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2161    
2162          redo A;          redo A;
2163        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2164            !!!cp (213);
2165          !!!parse-error (type => 'unclosed SYSTEM literal');          !!!parse-error (type => 'unclosed SYSTEM literal');
2166    
2167          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2168          ## reconsume          ## reconsume
2169    
2170          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2171          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2172    
2173          redo A;          redo A;
2174        } else {        } else {
2175            !!!cp (214);
2176          $self->{current_token}->{system_identifier} # DOCTYPE          $self->{current_token}->{system_identifier} # DOCTYPE
2177              .= chr $self->{next_input_character};              .= chr $self->{next_char};
2178          ## Stay in the state          ## Stay in the state
2179          !!!next-input-character;          !!!next-input-character;
2180          redo A;          redo A;
# Line 1849  sub _get_next_token ($) { Line 2183  sub _get_next_token ($) {
2183        if ({        if ({
2184              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,              0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
2185              #0x000D => 1, # HT, LF, VT, FF, SP, CR              #0x000D => 1, # HT, LF, VT, FF, SP, CR
2186            }->{$self->{next_input_character}}) {            }->{$self->{next_char}}) {
2187            !!!cp (215);
2188          ## Stay in the state          ## Stay in the state
2189          !!!next-input-character;          !!!next-input-character;
2190          redo A;          redo A;
2191        } elsif ($self->{next_input_character} == 0x003E) { # >        } elsif ($self->{next_char} == 0x003E) { # >
2192            !!!cp (216);
2193          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2194          !!!next-input-character;          !!!next-input-character;
2195    
2196          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2197    
2198          redo A;          redo A;
2199        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2200            !!!cp (217);
2201          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2202    
2203          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2204          ## reconsume          ## reconsume
2205    
2206          delete $self->{current_token}->{correct};          $self->{current_token}->{quirks} = 1;
2207          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2208    
2209          redo A;          redo A;
2210        } else {        } else {
2211            !!!cp (218);
2212          !!!parse-error (type => 'string after SYSTEM literal');          !!!parse-error (type => 'string after SYSTEM literal');
2213            #$self->{current_token}->{quirks} = 1;
2214    
2215          $self->{state} = BOGUS_DOCTYPE_STATE;          $self->{state} = BOGUS_DOCTYPE_STATE;
2216          !!!next-input-character;          !!!next-input-character;
2217          redo A;          redo A;
2218        }        }
2219      } elsif ($self->{state} == BOGUS_DOCTYPE_STATE) {      } elsif ($self->{state} == BOGUS_DOCTYPE_STATE) {
2220        if ($self->{next_input_character} == 0x003E) { # >        if ($self->{next_char} == 0x003E) { # >
2221            !!!cp (219);
2222          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2223          !!!next-input-character;          !!!next-input-character;
2224    
         delete $self->{current_token}->{correct};  
2225          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2226    
2227          redo A;          redo A;
2228        } elsif ($self->{next_input_character} == -1) {        } elsif ($self->{next_char} == -1) {
2229            !!!cp (220);
2230          !!!parse-error (type => 'unclosed DOCTYPE');          !!!parse-error (type => 'unclosed DOCTYPE');
2231          $self->{state} = DATA_STATE;          $self->{state} = DATA_STATE;
2232          ## reconsume          ## reconsume
2233    
         delete $self->{current_token}->{correct};  
2234          !!!emit ($self->{current_token}); # DOCTYPE          !!!emit ($self->{current_token}); # DOCTYPE
2235    
2236          redo A;          redo A;
2237        } else {        } else {
2238            !!!cp (221);
2239          ## Stay in the state          ## Stay in the state
2240          !!!next-input-character;          !!!next-input-character;
2241          redo A;          redo A;
# Line 1910  sub _get_next_token ($) { Line 2251  sub _get_next_token ($) {
2251  sub _tokenize_attempt_to_consume_an_entity ($$$) {  sub _tokenize_attempt_to_consume_an_entity ($$$) {
2252    my ($self, $in_attr, $additional) = @_;    my ($self, $in_attr, $additional) = @_;
2253    
2254      my ($l, $c) = ($self->{line_prev}, $self->{column_prev});
2255    
2256    if ({    if ({
2257         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,         0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
2258         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR         0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
2259         $additional => 1,         $additional => 1,
2260        }->{$self->{next_input_character}}) {        }->{$self->{next_char}}) {
2261        !!!cp (1001);
2262      ## Don't consume      ## Don't consume
2263      ## No error      ## No error
2264      return undef;      return undef;
2265    } elsif ($self->{next_input_character} == 0x0023) { # #    } elsif ($self->{next_char} == 0x0023) { # #
2266      !!!next-input-character;      !!!next-input-character;
2267      if ($self->{next_input_character} == 0x0078 or # x      if ($self->{next_char} == 0x0078 or # x
2268          $self->{next_input_character} == 0x0058) { # X          $self->{next_char} == 0x0058) { # X
2269        my $code;        my $code;
2270        X: {        X: {
2271          my $x_char = $self->{next_input_character};          my $x_char = $self->{next_char};
2272          !!!next-input-character;          !!!next-input-character;
2273          if (0x0030 <= $self->{next_input_character} and          if (0x0030 <= $self->{next_char} and
2274              $self->{next_input_character} <= 0x0039) { # 0..9              $self->{next_char} <= 0x0039) { # 0..9
2275              !!!cp (1002);
2276            $code ||= 0;            $code ||= 0;
2277            $code *= 0x10;            $code *= 0x10;
2278            $code += $self->{next_input_character} - 0x0030;            $code += $self->{next_char} - 0x0030;
2279            redo X;            redo X;
2280          } elsif (0x0061 <= $self->{next_input_character} and          } elsif (0x0061 <= $self->{next_char} and
2281                   $self->{next_input_character} <= 0x0066) { # a..f                   $self->{next_char} <= 0x0066) { # a..f
2282              !!!cp (1003);
2283            $code ||= 0;            $code ||= 0;
2284            $code *= 0x10;            $code *= 0x10;
2285            $code += $self->{next_input_character} - 0x0060 + 9;            $code += $self->{next_char} - 0x0060 + 9;
2286            redo X;            redo X;
2287          } elsif (0x0041 <= $self->{next_input_character} and          } elsif (0x0041 <= $self->{next_char} and
2288                   $self->{next_input_character} <= 0x0046) { # A..F                   $self->{next_char} <= 0x0046) { # A..F
2289              !!!cp (1004);
2290            $code ||= 0;            $code ||= 0;
2291            $code *= 0x10;            $code *= 0x10;
2292            $code += $self->{next_input_character} - 0x0040 + 9;            $code += $self->{next_char} - 0x0040 + 9;
2293            redo X;            redo X;
2294          } elsif (not defined $code) { # no hexadecimal digit          } elsif (not defined $code) { # no hexadecimal digit
2295            !!!parse-error (type => 'bare hcro');            !!!cp (1005);
2296            !!!back-next-input-character ($x_char, $self->{next_input_character});            !!!parse-error (type => 'bare hcro', line => $l, column => $c);
2297            $self->{next_input_character} = 0x0023; # #            !!!back-next-input-character ($x_char, $self->{next_char});
2298              $self->{next_char} = 0x0023; # #
2299            return undef;            return undef;
2300          } elsif ($self->{next_input_character} == 0x003B) { # ;          } elsif ($self->{next_char} == 0x003B) { # ;
2301              !!!cp (1006);
2302            !!!next-input-character;            !!!next-input-character;
2303          } else {          } else {
2304            !!!parse-error (type => 'no refc');            !!!cp (1007);
2305              !!!parse-error (type => 'no refc', line => $l, column => $c);
2306          }          }
2307    
2308          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {          if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2309            !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);            !!!cp (1008);
2310              !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);
2311            $code = 0xFFFD;            $code = 0xFFFD;
2312          } elsif ($code > 0x10FFFF) {          } elsif ($code > 0x10FFFF) {
2313            !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);            !!!cp (1009);
2314              !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);
2315            $code = 0xFFFD;            $code = 0xFFFD;
2316          } elsif ($code == 0x000D) {          } elsif ($code == 0x000D) {
2317            !!!parse-error (type => 'CR character reference');            !!!cp (1010);
2318              !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2319            $code = 0x000A;            $code = 0x000A;
2320          } elsif (0x80 <= $code and $code <= 0x9F) {          } elsif (0x80 <= $code and $code <= 0x9F) {
2321            !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);            !!!cp (1011);
2322              !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);
2323            $code = $c1_entity_char->{$code};            $code = $c1_entity_char->{$code};
2324          }          }
2325    
2326          return {type => CHARACTER_TOKEN, data => chr $code,          return {type => CHARACTER_TOKEN, data => chr $code,
2327                  has_reference => 1};                  has_reference => 1,
2328                    line => $l, column => $c,
2329                   };
2330        } # X        } # X
2331      } elsif (0x0030 <= $self->{next_input_character} and      } elsif (0x0030 <= $self->{next_char} and
2332               $self->{next_input_character} <= 0x0039) { # 0..9               $self->{next_char} <= 0x0039) { # 0..9
2333        my $code = $self->{next_input_character} - 0x0030;        my $code = $self->{next_char} - 0x0030;
2334        !!!next-input-character;        !!!next-input-character;
2335                
2336        while (0x0030 <= $self->{next_input_character} and        while (0x0030 <= $self->{next_char} and
2337                  $self->{next_input_character} <= 0x0039) { # 0..9                  $self->{next_char} <= 0x0039) { # 0..9
2338            !!!cp (1012);
2339          $code *= 10;          $code *= 10;
2340          $code += $self->{next_input_character} - 0x0030;          $code += $self->{next_char} - 0x0030;
2341                    
2342          !!!next-input-character;          !!!next-input-character;
2343        }        }
2344    
2345        if ($self->{next_input_character} == 0x003B) { # ;        if ($self->{next_char} == 0x003B) { # ;
2346            !!!cp (1013);
2347          !!!next-input-character;          !!!next-input-character;
2348        } else {        } else {
2349          !!!parse-error (type => 'no refc');          !!!cp (1014);
2350            !!!parse-error (type => 'no refc', line => $l, column => $c);
2351        }        }
2352    
2353        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {        if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
2354          !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);          !!!cp (1015);
2355            !!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c);
2356          $code = 0xFFFD;          $code = 0xFFFD;
2357        } elsif ($code > 0x10FFFF) {        } elsif ($code > 0x10FFFF) {
2358          !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);          !!!cp (1016);
2359            !!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c);
2360          $code = 0xFFFD;          $code = 0xFFFD;
2361        } elsif ($code == 0x000D) {        } elsif ($code == 0x000D) {
2362          !!!parse-error (type => 'CR character reference');          !!!cp (1017);
2363            !!!parse-error (type => 'CR character reference', line => $l, column => $c);
2364          $code = 0x000A;          $code = 0x000A;
2365        } elsif (0x80 <= $code and $code <= 0x9F) {        } elsif (0x80 <= $code and $code <= 0x9F) {
2366          !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);          !!!cp (1018);
2367            !!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c);
2368          $code = $c1_entity_char->{$code};          $code = $c1_entity_char->{$code};
2369        }        }
2370                
2371        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1};        return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1,
2372                  line => $l, column => $c,
2373                 };
2374      } else {      } else {
2375        !!!parse-error (type => 'bare nero');        !!!cp (1019);
2376        !!!back-next-input-character ($self->{next_input_character});        !!!parse-error (type => 'bare nero', line => $l, column => $c);
2377        $self->{next_input_character} = 0x0023; # #        !!!back-next-input-character ($self->{next_char});
2378          $self->{next_char} = 0x0023; # #
2379        return undef;        return undef;
2380      }      }
2381    } elsif ((0x0041 <= $self->{next_input_character} and    } elsif ((0x0041 <= $self->{next_char} and
2382              $self->{next_input_character} <= 0x005A) or              $self->{next_char} <= 0x005A) or
2383             (0x0061 <= $self->{next_input_character} and             (0x0061 <= $self->{next_char} and
2384              $self->{next_input_character} <= 0x007A)) {              $self->{next_char} <= 0x007A)) {
2385      my $entity_name = chr $self->{next_input_character};      my $entity_name = chr $self->{next_char};
2386      !!!next-input-character;      !!!next-input-character;
2387    
2388      my $value = $entity_name;      my $value = $entity_name;
# Line 2026  sub _tokenize_attempt_to_consume_an_enti Line 2392  sub _tokenize_attempt_to_consume_an_enti
2392    
2393      while (length $entity_name < 10 and      while (length $entity_name < 10 and
2394             ## NOTE: Some number greater than the maximum length of entity name             ## NOTE: Some number greater than the maximum length of entity name
2395             ((0x0041 <= $self->{next_input_character} and # a             ((0x0041 <= $self->{next_char} and # a
2396               $self->{next_input_character} <= 0x005A) or # x               $self->{next_char} <= 0x005A) or # x
2397              (0x0061 <= $self->{next_input_character} and # a              (0x0061 <= $self->{next_char} and # a
2398               $self->{next_input_character} <= 0x007A) or # z               $self->{next_char} <= 0x007A) or # z
2399              (0x0030 <= $self->{next_input_character} and # 0              (0x0030 <= $self->{next_char} and # 0
2400               $self->{next_input_character} <= 0x0039) or # 9               $self->{next_char} <= 0x0039) or # 9
2401              $self->{next_input_character} == 0x003B)) { # ;              $self->{next_char} == 0x003B)) { # ;
2402        $entity_name .= chr $self->{next_input_character};        $entity_name .= chr $self->{next_char};
2403        if (defined $EntityChar->{$entity_name}) {        if (defined $EntityChar->{$entity_name}) {
2404          if ($self->{next_input_character} == 0x003B) { # ;          if ($self->{next_char} == 0x003B) { # ;
2405              !!!cp (1020);
2406            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
2407            $match = 1;            $match = 1;
2408            !!!next-input-character;            !!!next-input-character;
2409            last;            last;
2410          } else {          } else {
2411              !!!cp (1021);
2412            $value = $EntityChar->{$entity_name};            $value = $EntityChar->{$entity_name};
2413            $match = -1;            $match = -1;
2414            !!!next-input-character;            !!!next-input-character;
2415          }          }
2416        } else {        } else {
2417          $value .= chr $self->{next_input_character};          !!!cp (1022);
2418            $value .= chr $self->{next_char};
2419          $match *= 2;          $match *= 2;
2420          !!!next-input-character;          !!!next-input-character;
2421        }        }
2422      }      }
2423            
2424      if ($match > 0) {      if ($match > 0) {
2425        return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};        !!!cp (1023);
2426          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
2427                  line => $l, column => $c,
2428                 };
2429      } elsif ($match < 0) {      } elsif ($match < 0) {
2430        !!!parse-error (type => 'no refc');        !!!parse-error (type => 'no refc', line => $l, column => $c);
2431        if ($in_attr and $match < -1) {        if ($in_attr and $match < -1) {
2432          return {type => CHARACTER_TOKEN, data => '&'.$entity_name};          !!!cp (1024);
2433        } else {          return {type => CHARACTER_TOKEN, data => '&'.$entity_name,
2434          return {type => CHARACTER_TOKEN, data => $value, has_reference => 1};                  line => $l, column => $c,
2435                   };
2436          } else {
2437            !!!cp (1025);
2438            return {type => CHARACTER_TOKEN, data => $value, has_reference => 1,
2439                    line => $l, column => $c,
2440                   };
2441        }        }
2442      } else {      } else {
2443        !!!parse-error (type => 'bare ero');        !!!cp (1026);
2444          !!!parse-error (type => 'bare ero', line => $l, column => $c);
2445        ## NOTE: "No characters are consumed" in the spec.        ## NOTE: "No characters are consumed" in the spec.
2446        return {type => CHARACTER_TOKEN, data => '&'.$value};        return {type => CHARACTER_TOKEN, data => '&'.$value,
2447                  line => $l, column => $c,
2448                 };
2449      }      }
2450    } else {    } else {
2451        !!!cp (1027);
2452      ## no characters are consumed      ## no characters are consumed
2453      !!!parse-error (type => 'bare ero');      !!!parse-error (type => 'bare ero', line => $l, column => $c);
2454      return undef;      return undef;
2455    }    }
2456  } # _tokenize_attempt_to_consume_an_entity  } # _tokenize_attempt_to_consume_an_entity
# Line 2106  sub _construct_tree ($) { Line 2488  sub _construct_tree ($) {
2488        
2489    !!!next-token;    !!!next-token;
2490    
   $self->{insertion_mode} = BEFORE_HEAD_IM;  
2491    undef $self->{form_element};    undef $self->{form_element};
2492    undef $self->{head_element};    undef $self->{head_element};
2493    $self->{open_elements} = [];    $self->{open_elements} = [];
2494    undef $self->{inner_html_node};    undef $self->{inner_html_node};
2495    
2496      ## NOTE: The "initial" insertion mode.
2497    $self->_tree_construction_initial; # MUST    $self->_tree_construction_initial; # MUST
2498    
2499      ## NOTE: The "before html" insertion mode.
2500    $self->_tree_construction_root_element;    $self->_tree_construction_root_element;
2501      $self->{insertion_mode} = BEFORE_HEAD_IM;
2502    
2503      ## NOTE: The "before head" insertion mode and so on.
2504    $self->_tree_construction_main;    $self->_tree_construction_main;
2505  } # _construct_tree  } # _construct_tree
2506    
2507  sub _tree_construction_initial ($) {  sub _tree_construction_initial ($) {
2508    my $self = shift;    my $self = shift;
2509    
2510      ## NOTE: "initial" insertion mode
2511    
2512    INITIAL: {    INITIAL: {
2513      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
2514        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"        ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
# Line 2130  sub _tree_construction_initial ($) { Line 2520  sub _tree_construction_initial ($) {
2520        if (not defined $token->{name} or # <!DOCTYPE>        if (not defined $token->{name} or # <!DOCTYPE>
2521            defined $token->{public_identifier} or            defined $token->{public_identifier} or
2522            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
2523          !!!parse-error (type => 'not HTML5');          !!!cp ('t1');
2524            !!!parse-error (type => 'not HTML5', token => $token);
2525        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
2526            !!!cp ('t2');
2527          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
2528          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
2529          } else {
2530            !!!cp ('t3');
2531        }        }
2532                
2533        my $doctype = $self->{document}->create_document_type_definition        my $doctype = $self->{document}->create_document_type_definition
2534          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?          ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
2535          ## NOTE: Default value for both |public_id| and |system_id| attributes
2536          ## are empty strings, so that we don't set any value in missing cases.
2537        $doctype->public_id ($token->{public_identifier})        $doctype->public_id ($token->{public_identifier})
2538            if defined $token->{public_identifier};            if defined $token->{public_identifier};
2539        $doctype->system_id ($token->{system_identifier})        $doctype->system_id ($token->{system_identifier})
# Line 2146  sub _tree_construction_initial ($) { Line 2542  sub _tree_construction_initial ($) {
2542        ## ISSUE: internalSubset = null??        ## ISSUE: internalSubset = null??
2543        $self->{document}->append_child ($doctype);        $self->{document}->append_child ($doctype);
2544                
2545        if (not $token->{correct} or $doctype_name ne 'HTML') {        if ($token->{quirks} or $doctype_name ne 'HTML') {
2546            !!!cp ('t4');
2547          $self->{document}->manakai_compat_mode ('quirks');          $self->{document}->manakai_compat_mode ('quirks');
2548        } elsif (defined $token->{public_identifier}) {        } elsif (defined $token->{public_identifier}) {
2549          my $pubid = $token->{public_identifier};          my $pubid = $token->{public_identifier};
# Line 2225  sub _tree_construction_initial ($) { Line 2622  sub _tree_construction_initial ($) {
2622            "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,            "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,
2623            "HTML" => 1,            "HTML" => 1,
2624          }->{$pubid}) {          }->{$pubid}) {
2625              !!!cp ('t5');
2626            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
2627          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or          } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or
2628                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {                   $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {
2629            if (defined $token->{system_identifier}) {            if (defined $token->{system_identifier}) {
2630                !!!cp ('t6');
2631              $self->{document}->manakai_compat_mode ('quirks');              $self->{document}->manakai_compat_mode ('quirks');
2632            } else {            } else {
2633                !!!cp ('t7');
2634              $self->{document}->manakai_compat_mode ('limited quirks');              $self->{document}->manakai_compat_mode ('limited quirks');
2635            }            }
2636          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 Frameset//EN" or          } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 FRAMESET//EN" or
2637                   $pubid eq "-//W3C//DTD XHTML 1.0 Transitional//EN") {                   $pubid eq "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN") {
2638              !!!cp ('t8');
2639            $self->{document}->manakai_compat_mode ('limited quirks');            $self->{document}->manakai_compat_mode ('limited quirks');
2640            } else {
2641              !!!cp ('t9');
2642          }          }
2643          } else {
2644            !!!cp ('t10');
2645        }        }
2646        if (defined $token->{system_identifier}) {        if (defined $token->{system_identifier}) {
2647          my $sysid = $token->{system_identifier};          my $sysid = $token->{system_identifier};
2648          $sysid =~ tr/A-Z/a-z/;          $sysid =~ tr/A-Z/a-z/;
2649          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") {
2650              ## TODO: Check the spec: PUBLIC "(limited quirks)" "(quirks)"
2651            $self->{document}->manakai_compat_mode ('quirks');            $self->{document}->manakai_compat_mode ('quirks');
2652              !!!cp ('t11');
2653            } else {
2654              !!!cp ('t12');
2655          }          }
2656          } else {
2657            !!!cp ('t13');
2658        }        }
2659                
2660        ## Go to the root element phase.        ## Go to the "before html" insertion mode.
2661        !!!next-token;        !!!next-token;
2662        return;        return;
2663      } elsif ({      } elsif ({
# Line 2254  sub _tree_construction_initial ($) { Line 2665  sub _tree_construction_initial ($) {
2665                END_TAG_TOKEN, 1,                END_TAG_TOKEN, 1,
2666                END_OF_FILE_TOKEN, 1,                END_OF_FILE_TOKEN, 1,
2667               }->{$token->{type}}) {               }->{$token->{type}}) {
2668        !!!parse-error (type => 'no DOCTYPE');        !!!cp ('t14');
2669          !!!parse-error (type => 'no DOCTYPE', token => $token);
2670        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2671        ## Go to the root element phase        ## Go to the "before html" insertion mode.
2672        ## reprocess        ## reprocess
2673        return;        return;
2674      } elsif ($token->{type} == CHARACTER_TOKEN) {      } elsif ($token->{type} == CHARACTER_TOKEN) {
# Line 2264  sub _tree_construction_initial ($) { Line 2676  sub _tree_construction_initial ($) {
2676          ## Ignore the token          ## Ignore the token
2677    
2678          unless (length $token->{data}) {          unless (length $token->{data}) {
2679            ## Stay in the phase            !!!cp ('t15');
2680              ## Stay in the insertion mode.
2681            !!!next-token;            !!!next-token;
2682            redo INITIAL;            redo INITIAL;
2683            } else {
2684              !!!cp ('t16');
2685          }          }
2686          } else {
2687            !!!cp ('t17');
2688        }        }
2689    
2690        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
2691        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2692        ## Go to the root element phase        ## Go to the "before html" insertion mode.
2693        ## reprocess        ## reprocess
2694        return;        return;
2695      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
2696          !!!cp ('t18');
2697        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
2698        $self->{document}->append_child ($comment);        $self->{document}->append_child ($comment);
2699                
2700        ## Stay in the phase.        ## Stay in the insertion mode.
2701        !!!next-token;        !!!next-token;
2702        redo INITIAL;        redo INITIAL;
2703      } else {      } else {
2704        die "$0: $token->{type}: Unknown token type";        die "$0: $token->{type}: Unknown token type";
2705      }      }
2706    } # INITIAL    } # INITIAL
2707    
2708      die "$0: _tree_construction_initial: This should be never reached";
2709  } # _tree_construction_initial  } # _tree_construction_initial
2710    
2711  sub _tree_construction_root_element ($) {  sub _tree_construction_root_element ($) {
2712    my $self = shift;    my $self = shift;
2713    
2714      ## NOTE: "before html" insertion mode.
2715        
2716    B: {    B: {
2717        if ($token->{type} == DOCTYPE_TOKEN) {        if ($token->{type} == DOCTYPE_TOKEN) {
2718          !!!parse-error (type => 'in html:#DOCTYPE');          !!!cp ('t19');
2719            !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
2720          ## Ignore the token          ## Ignore the token
2721          ## Stay in the phase          ## Stay in the insertion mode.
2722          !!!next-token;          !!!next-token;
2723          redo B;          redo B;
2724        } elsif ($token->{type} == COMMENT_TOKEN) {        } elsif ($token->{type} == COMMENT_TOKEN) {
2725            !!!cp ('t20');
2726          my $comment = $self->{document}->create_comment ($token->{data});          my $comment = $self->{document}->create_comment ($token->{data});
2727          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
2728          ## Stay in the phase          ## Stay in the insertion mode.
2729          !!!next-token;          !!!next-token;
2730          redo B;          redo B;
2731        } elsif ($token->{type} == CHARACTER_TOKEN) {        } elsif ($token->{type} == CHARACTER_TOKEN) {
# Line 2309  sub _tree_construction_root_element ($) Line 2733  sub _tree_construction_root_element ($)
2733            ## Ignore the token.            ## Ignore the token.
2734    
2735            unless (length $token->{data}) {            unless (length $token->{data}) {
2736              ## Stay in the phase              !!!cp ('t21');
2737                ## Stay in the insertion mode.
2738              !!!next-token;              !!!next-token;
2739              redo B;              redo B;
2740              } else {
2741                !!!cp ('t22');
2742            }            }
2743            } else {
2744              !!!cp ('t23');
2745          }          }
2746    
2747          $self->{application_cache_selection}->(undef);          $self->{application_cache_selection}->(undef);
2748    
2749          #          #
2750        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
2751          if ($token->{tag_name} eq 'html' and          if ($token->{tag_name} eq 'html') {
2752              $token->{attributes}->{manifest}) {            my $root_element;
2753            $self->{application_cache_selection}            !!!create-element ($root_element, $token->{tag_name}, $token->{attributes}, $token);
2754                 ->($token->{attributes}->{manifest}->{value});            $self->{document}->append_child ($root_element);
2755            ## ISSUE: No relative reference resolution?            push @{$self->{open_elements}}, [$root_element, 'html'];
2756    
2757              if ($token->{attributes}->{manifest}) {
2758                !!!cp ('t24');
2759                $self->{application_cache_selection}
2760                    ->($token->{attributes}->{manifest}->{value});
2761                ## ISSUE: Spec is unclear on relative references.
2762                ## According to Hixie (#whatwg 2008-03-19), it should be
2763                ## resolved against the base URI of the document in HTML
2764                ## or xml:base of the element in XHTML.
2765              } else {
2766                !!!cp ('t25');
2767                $self->{application_cache_selection}->(undef);
2768              }
2769    
2770              !!!next-token;
2771              return; ## Go to the "before head" insertion mode.
2772          } else {          } else {
2773            $self->{application_cache_selection}->(undef);            !!!cp ('t25.1');
2774              #
2775          }          }
   
         ## ISSUE: There is an issue in the spec  
         #  
2776        } elsif ({        } elsif ({
2777                  END_TAG_TOKEN, 1,                  END_TAG_TOKEN, 1,
2778                  END_OF_FILE_TOKEN, 1,                  END_OF_FILE_TOKEN, 1,
2779                 }->{$token->{type}}) {                 }->{$token->{type}}) {
2780          $self->{application_cache_selection}->(undef);          !!!cp ('t26');
   
         ## ISSUE: There is an issue in the spec  
2781          #          #
2782        } else {        } else {
2783          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
2784        }        }
2785    
2786        my $root_element; !!!create-element ($root_element, 'html');      my $root_element; !!!create-element ($root_element, 'html',, $token);
2787        $self->{document}->append_child ($root_element);      $self->{document}->append_child ($root_element);
2788        push @{$self->{open_elements}}, [$root_element, 'html'];      push @{$self->{open_elements}}, [$root_element, 'html'];
2789        ## reprocess  
2790        #redo B;      $self->{application_cache_selection}->(undef);
2791        return; ## Go to the main phase.  
2792        ## NOTE: Reprocess the token.
2793        return; ## Go to the "before head" insertion mode.
2794    
2795        ## ISSUE: There is an issue in the spec
2796    } # B    } # B
2797    
2798      die "$0: _tree_construction_root_element: This should never be reached";
2799  } # _tree_construction_root_element  } # _tree_construction_root_element
2800    
2801  sub _reset_insertion_mode ($) {  sub _reset_insertion_mode ($) {
# Line 2363  sub _reset_insertion_mode ($) { Line 2810  sub _reset_insertion_mode ($) {
2810            
2811      ## Step 3      ## Step 3
2812      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"!?  
2813        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
2814          $last = 1;          $last = 1;
2815          if (defined $self->{inner_html_node}) {          if (defined $self->{inner_html_node}) {
2816            if ($self->{inner_html_node}->[1] eq 'td' or            if ($self->{inner_html_node}->[1] eq 'td' or
2817                $self->{inner_html_node}->[1] eq 'th') {                $self->{inner_html_node}->[1] eq 'th') {
2818                !!!cp ('t27');
2819              #              #
2820            } else {            } else {
2821                !!!cp ('t28');
2822              $node = $self->{inner_html_node};              $node = $self->{inner_html_node};
2823            }            }
2824          }          }
# Line 2383  sub _reset_insertion_mode ($) { Line 2827  sub _reset_insertion_mode ($) {
2827        ## Step 4..13        ## Step 4..13
2828        my $new_mode = {        my $new_mode = {
2829                        select => IN_SELECT_IM,                        select => IN_SELECT_IM,
2830                          ## NOTE: |option| and |optgroup| do not set
2831                          ## insertion mode to "in select" by themselves.
2832                        td => IN_CELL_IM,                        td => IN_CELL_IM,
2833                        th => IN_CELL_IM,                        th => IN_CELL_IM,
2834                        tr => IN_ROW_IM,                        tr => IN_ROW_IM,
# Line 2401  sub _reset_insertion_mode ($) { Line 2847  sub _reset_insertion_mode ($) {
2847        ## Step 14        ## Step 14
2848        if ($node->[1] eq 'html') {        if ($node->[1] eq 'html') {
2849          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
2850              !!!cp ('t29');
2851            $self->{insertion_mode} = BEFORE_HEAD_IM;            $self->{insertion_mode} = BEFORE_HEAD_IM;
2852          } else {          } else {
2853              ## ISSUE: Can this state be reached?
2854              !!!cp ('t30');
2855            $self->{insertion_mode} = AFTER_HEAD_IM;            $self->{insertion_mode} = AFTER_HEAD_IM;
2856          }          }
2857          return;          return;
2858          } else {
2859            !!!cp ('t31');
2860        }        }
2861                
2862        ## Step 15        ## Step 15
# Line 2418  sub _reset_insertion_mode ($) { Line 2869  sub _reset_insertion_mode ($) {
2869        ## Step 17        ## Step 17
2870        redo S3;        redo S3;
2871      } # S3      } # S3
2872    
2873      die "$0: _reset_insertion_mode: This line should never be reached";
2874  } # _reset_insertion_mode  } # _reset_insertion_mode
2875    
2876  sub _tree_construction_main ($) {  sub _tree_construction_main ($) {
# Line 2439  sub _tree_construction_main ($) { Line 2892  sub _tree_construction_main ($) {
2892      return if $entry->[0] eq '#marker';      return if $entry->[0] eq '#marker';
2893      for (@{$self->{open_elements}}) {      for (@{$self->{open_elements}}) {
2894        if ($entry->[0] eq $_->[0]) {        if ($entry->[0] eq $_->[0]) {
2895            !!!cp ('t32');
2896          return;          return;
2897        }        }
2898      }      }
# Line 2453  sub _tree_construction_main ($) { Line 2907  sub _tree_construction_main ($) {
2907    
2908        ## Step 6        ## Step 6
2909        if ($entry->[0] eq '#marker') {        if ($entry->[0] eq '#marker') {
2910            !!!cp ('t33_1');
2911          #          #
2912        } else {        } else {
2913          my $in_open_elements;          my $in_open_elements;
2914          OE: for (@{$self->{open_elements}}) {          OE: for (@{$self->{open_elements}}) {
2915            if ($entry->[0] eq $_->[0]) {            if ($entry->[0] eq $_->[0]) {
2916                !!!cp ('t33');
2917              $in_open_elements = 1;              $in_open_elements = 1;
2918              last OE;              last OE;
2919            }            }
2920          }          }
2921          if ($in_open_elements) {          if ($in_open_elements) {
2922              !!!cp ('t34');
2923            #            #
2924          } else {          } else {
2925              ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
2926              !!!cp ('t35');
2927            redo S4;            redo S4;
2928          }          }
2929        }        }
# Line 2487  sub _tree_construction_main ($) { Line 2946  sub _tree_construction_main ($) {
2946    
2947        ## Step 11        ## Step 11
2948        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
2949            !!!cp ('t36');
2950          ## Step 7'          ## Step 7'
2951          $i++;          $i++;
2952          $entry = $active_formatting_elements->[$i];          $entry = $active_formatting_elements->[$i];
2953                    
2954          redo S7;          redo S7;
2955        }        }
2956    
2957          !!!cp ('t37');
2958      } # S7      } # S7
2959    }; # $reconstruct_active_formatting_elements    }; # $reconstruct_active_formatting_elements
2960    
2961    my $clear_up_to_marker = sub {    my $clear_up_to_marker = sub {
2962      for (reverse 0..$#$active_formatting_elements) {      for (reverse 0..$#$active_formatting_elements) {
2963        if ($active_formatting_elements->[$_]->[0] eq '#marker') {        if ($active_formatting_elements->[$_]->[0] eq '#marker') {
2964            !!!cp ('t38');
2965          splice @$active_formatting_elements, $_;          splice @$active_formatting_elements, $_;
2966          return;          return;
2967        }        }
2968      }      }
2969    
2970        !!!cp ('t39');
2971    }; # $clear_up_to_marker    }; # $clear_up_to_marker
2972    
2973    my $parse_rcdata = sub ($$) {    my $insert;
2974      my ($content_model_flag, $insert) = @_;  
2975      my $parse_rcdata = sub ($) {
2976        my ($content_model_flag) = @_;
2977    
2978      ## Step 1      ## Step 1
2979      my $start_tag_name = $token->{tag_name};      my $start_tag_name = $token->{tag_name};
2980      my $el;      my $el;
2981      !!!create-element ($el, $start_tag_name, $token->{attributes});      !!!create-element ($el, $start_tag_name, $token->{attributes}, $token);
2982    
2983      ## Step 2      ## Step 2
2984      $insert->($el); # /context node/->append_child ($el)      $insert->($el);
2985    
2986      ## Step 3      ## Step 3
2987      $self->{content_model} = $content_model_flag; # CDATA or RCDATA      $self->{content_model} = $content_model_flag; # CDATA or RCDATA
# Line 2524  sub _tree_construction_main ($) { Line 2991  sub _tree_construction_main ($) {
2991      my $text = '';      my $text = '';
2992      !!!next-token;      !!!next-token;
2993      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing      while ($token->{type} == CHARACTER_TOKEN) { # or until stop tokenizing
2994          !!!cp ('t40');
2995        $text .= $token->{data};        $text .= $token->{data};
2996        !!!next-token;        !!!next-token;
2997      }      }
2998    
2999      ## Step 5      ## Step 5
3000      if (length $text) {      if (length $text) {
3001          !!!cp ('t41');
3002        my $text = $self->{document}->create_text_node ($text);        my $text = $self->{document}->create_text_node ($text);
3003        $el->append_child ($text);        $el->append_child ($text);
3004      }      }
# Line 2538  sub _tree_construction_main ($) { Line 3007  sub _tree_construction_main ($) {
3007      $self->{content_model} = PCDATA_CONTENT_MODEL;      $self->{content_model} = PCDATA_CONTENT_MODEL;
3008    
3009      ## Step 7      ## Step 7
3010      if ($token->{type} == END_TAG_TOKEN and $token->{tag_name} eq $start_tag_name) {      if ($token->{type} == END_TAG_TOKEN and
3011            $token->{tag_name} eq $start_tag_name) {
3012          !!!cp ('t42');
3013        ## 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});  
3014      } else {      } else {
3015        die "$0: $content_model_flag in parse_rcdata";        ## NOTE: An end-of-file token.
3016          if ($content_model_flag == CDATA_CONTENT_MODEL) {
3017            !!!cp ('t43');
3018            !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3019          } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
3020            !!!cp ('t44');
3021            !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
3022          } else {
3023            die "$0: $content_model_flag in parse_rcdata";
3024          }
3025      }      }
3026      !!!next-token;      !!!next-token;
3027    }; # $parse_rcdata    }; # $parse_rcdata
3028    
3029    my $script_start_tag = sub ($) {    my $script_start_tag = sub () {
     my $insert = $_[0];  
3030      my $script_el;      my $script_el;
3031      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, 'script', $token->{attributes}, $token);
3032      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
3033    
3034      $self->{content_model} = CDATA_CONTENT_MODEL;      $self->{content_model} = CDATA_CONTENT_MODEL;
# Line 2562  sub _tree_construction_main ($) { Line 3037  sub _tree_construction_main ($) {
3037      my $text = '';      my $text = '';
3038      !!!next-token;      !!!next-token;
3039      while ($token->{type} == CHARACTER_TOKEN) {      while ($token->{type} == CHARACTER_TOKEN) {
3040          !!!cp ('t45');
3041        $text .= $token->{data};        $text .= $token->{data};
3042        !!!next-token;        !!!next-token;
3043      } # stop if non-character token or tokenizer stops tokenising      } # stop if non-character token or tokenizer stops tokenising
3044      if (length $text) {      if (length $text) {
3045          !!!cp ('t46');
3046        $script_el->manakai_append_text ($text);        $script_el->manakai_append_text ($text);
3047      }      }
3048                                
# Line 2573  sub _tree_construction_main ($) { Line 3050  sub _tree_construction_main ($) {
3050    
3051      if ($token->{type} == END_TAG_TOKEN and      if ($token->{type} == END_TAG_TOKEN and
3052          $token->{tag_name} eq 'script') {          $token->{tag_name} eq 'script') {
3053          !!!cp ('t47');
3054        ## Ignore the token        ## Ignore the token
3055      } else {      } else {
3056        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!cp ('t48');
3057          !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3058        ## ISSUE: And ignore?        ## ISSUE: And ignore?
3059        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3060      }      }
3061            
3062      if (defined $self->{inner_html_node}) {      if (defined $self->{inner_html_node}) {
3063          !!!cp ('t49');
3064        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3065      } else {      } else {
3066          !!!cp ('t50');
3067        ## TODO: $old_insertion_point = current insertion point        ## TODO: $old_insertion_point = current insertion point
3068        ## TODO: insertion point = just before the next input character        ## TODO: insertion point = just before the next input character
3069    
# Line 2596  sub _tree_construction_main ($) { Line 3077  sub _tree_construction_main ($) {
3077      !!!next-token;      !!!next-token;
3078    }; # $script_start_tag    }; # $script_start_tag
3079    
3080      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
3081      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
3082      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3083    
3084    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3085      my $tag_name = shift;      my $end_tag_token = shift;
3086        my $tag_name = $end_tag_token->{tag_name};
3087    
3088        ## NOTE: The adoption agency algorithm (AAA).
3089    
3090      FET: {      FET: {
3091        ## Step 1        ## Step 1
# Line 2605  sub _tree_construction_main ($) { Line 3093  sub _tree_construction_main ($) {
3093        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
3094        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3095          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {
3096              !!!cp ('t51');
3097            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
3098            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
3099            last AFE;            last AFE;
3100          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {          } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {
3101              !!!cp ('t52');
3102            last AFE;            last AFE;
3103          }          }
3104        } # AFE        } # AFE
3105        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3106          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!cp ('t53');
3107            !!!parse-error (type => 'unmatched end tag:'.$tag_name, token => $end_tag_token);
3108          ## Ignore the token          ## Ignore the token
3109          !!!next-token;          !!!next-token;
3110          return;          return;
# Line 2625  sub _tree_construction_main ($) { Line 3116  sub _tree_construction_main ($) {
3116          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
3117          if ($node->[0] eq $formatting_element->[0]) {          if ($node->[0] eq $formatting_element->[0]) {
3118            if ($in_scope) {            if ($in_scope) {
3119                !!!cp ('t54');
3120              $formatting_element_i_in_open = $_;              $formatting_element_i_in_open = $_;
3121              last INSCOPE;              last INSCOPE;
3122            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3123              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t55');
3124                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3125                                token => $end_tag_token);
3126              ## Ignore the token              ## Ignore the token
3127              !!!next-token;              !!!next-token;
3128              return;              return;
3129            }            }
3130          } elsif ({          } elsif ({
3131                    table => 1, caption => 1, td => 1, th => 1,                    applet => 1, table => 1, caption => 1, td => 1, th => 1,
3132                    button => 1, marquee => 1, object => 1, html => 1,                    button => 1, marquee => 1, object => 1, html => 1,
3133                   }->{$node->[1]}) {                   }->{$node->[1]}) {
3134              !!!cp ('t56');
3135            $in_scope = 0;            $in_scope = 0;
3136          }          }
3137        } # INSCOPE        } # INSCOPE
3138        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3139          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!cp ('t57');
3140            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3141                            token => $end_tag_token);
3142          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3143          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3144          return;          return;
3145        }        }
3146        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3147          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!cp ('t58');
3148            !!!parse-error (type => 'not closed',
3149                            value => $self->{open_elements}->[-1]->[0]
3150                                ->manakai_local_name,
3151                            token => $end_tag_token);
3152        }        }
3153                
3154        ## Step 2        ## Step 2
# Line 2658  sub _tree_construction_main ($) { Line 3159  sub _tree_construction_main ($) {
3159          if (not $formatting_category->{$node->[1]} and          if (not $formatting_category->{$node->[1]} and
3160              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
3161              ($special_category->{$node->[1]} or              ($special_category->{$node->[1]} or
3162               $scoping_category->{$node->[1]})) {               $scoping_category->{$node->[1]})) { ## Scoping is redundant, maybe
3163              !!!cp ('t59');
3164            $furthest_block = $node;            $furthest_block = $node;
3165            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
3166          } elsif ($node->[0] eq $formatting_element->[0]) {          } elsif ($node->[0] eq $formatting_element->[0]) {
3167              !!!cp ('t60');
3168            last OE;            last OE;
3169          }          }
3170        } # OE        } # OE
3171                
3172        ## Step 3        ## Step 3
3173        unless (defined $furthest_block) { # MUST        unless (defined $furthest_block) { # MUST
3174            !!!cp ('t61');
3175          splice @{$self->{open_elements}}, $formatting_element_i_in_open;          splice @{$self->{open_elements}}, $formatting_element_i_in_open;
3176          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
3177          !!!next-token;          !!!next-token;
# Line 2680  sub _tree_construction_main ($) { Line 3184  sub _tree_construction_main ($) {
3184        ## Step 5        ## Step 5
3185        my $furthest_block_parent = $furthest_block->[0]->parent_node;        my $furthest_block_parent = $furthest_block->[0]->parent_node;
3186        if (defined $furthest_block_parent) {        if (defined $furthest_block_parent) {
3187            !!!cp ('t62');
3188          $furthest_block_parent->remove_child ($furthest_block->[0]);          $furthest_block_parent->remove_child ($furthest_block->[0]);
3189        }        }
3190                
# Line 2702  sub _tree_construction_main ($) { Line 3207  sub _tree_construction_main ($) {
3207          S7S2: {          S7S2: {
3208            for (reverse 0..$#$active_formatting_elements) {            for (reverse 0..$#$active_formatting_elements) {
3209              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
3210                  !!!cp ('t63');
3211                $node_i_in_active = $_;                $node_i_in_active = $_;
3212                last S7S2;                last S7S2;
3213              }              }
# Line 2715  sub _tree_construction_main ($) { Line 3221  sub _tree_construction_main ($) {
3221                    
3222          ## Step 4          ## Step 4
3223          if ($last_node->[0] eq $furthest_block->[0]) {          if ($last_node->[0] eq $furthest_block->[0]) {
3224              !!!cp ('t64');
3225            $bookmark_prev_el = $node->[0];            $bookmark_prev_el = $node->[0];
3226          }          }
3227                    
3228          ## Step 5          ## Step 5
3229          if ($node->[0]->has_child_nodes ()) {          if ($node->[0]->has_child_nodes ()) {
3230              !!!cp ('t65');
3231            my $clone = [$node->[0]->clone_node (0), $node->[1]];            my $clone = [$node->[0]->clone_node (0), $node->[1]];
3232            $active_formatting_elements->[$node_i_in_active] = $clone;            $active_formatting_elements->[$node_i_in_active] = $clone;
3233            $self->{open_elements}->[$node_i_in_open] = $clone;            $self->{open_elements}->[$node_i_in_open] = $clone;
# Line 2737  sub _tree_construction_main ($) { Line 3245  sub _tree_construction_main ($) {
3245        } # S7          } # S7  
3246                
3247        ## Step 8        ## Step 8
3248        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ({
3249               table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,
3250              }->{$common_ancestor_node->[1]}) {
3251            my $foster_parent_element;
3252            my $next_sibling;
3253                             OE: for (reverse 0..$#{$self->{open_elements}}) {
3254                               if ($self->{open_elements}->[$_]->[1] eq 'table') {
3255                                 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3256                                 if (defined $parent and $parent->node_type == 1) {
3257                                   !!!cp ('t65.1');
3258                                   $foster_parent_element = $parent;
3259                                   $next_sibling = $self->{open_elements}->[$_]->[0];
3260                                 } else {
3261                                   !!!cp ('t65.2');
3262                                   $foster_parent_element
3263                                     = $self->{open_elements}->[$_ - 1]->[0];
3264                                 }
3265                                 last OE;
3266                               }
3267                             } # OE
3268                             $foster_parent_element = $self->{open_elements}->[0]->[0]
3269                               unless defined $foster_parent_element;
3270            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
3271            $open_tables->[-1]->[1] = 1; # tainted
3272          } else {
3273            !!!cp ('t65.3');
3274            $common_ancestor_node->[0]->append_child ($last_node->[0]);
3275          }
3276                
3277        ## Step 9        ## Step 9
3278        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 2754  sub _tree_construction_main ($) { Line 3289  sub _tree_construction_main ($) {
3289        my $i;        my $i;
3290        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
3291          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
3292              !!!cp ('t66');
3293            splice @$active_formatting_elements, $_, 1;            splice @$active_formatting_elements, $_, 1;
3294            $i-- and last AFE if defined $i;            $i-- and last AFE if defined $i;
3295          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
3296              !!!cp ('t67');
3297            $i = $_;            $i = $_;
3298          }          }
3299        } # AFE        } # AFE
# Line 2766  sub _tree_construction_main ($) { Line 3303  sub _tree_construction_main ($) {
3303        undef $i;        undef $i;
3304        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
3305          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
3306              !!!cp ('t68');
3307            splice @{$self->{open_elements}}, $_, 1;            splice @{$self->{open_elements}}, $_, 1;
3308            $i-- and last OE if defined $i;            $i-- and last OE if defined $i;
3309          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
3310              !!!cp ('t69');
3311            $i = $_;            $i = $_;
3312          }          }
3313        } # OE        } # OE
# Line 2779  sub _tree_construction_main ($) { Line 3318  sub _tree_construction_main ($) {
3318      } # FET      } # FET
3319    }; # $formatting_end_tag    }; # $formatting_end_tag
3320    
3321    my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
3322      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
3323    }; # $insert_to_current    }; # $insert_to_current
3324    
3325    my $insert_to_foster = sub {    my $insert_to_foster = sub {
3326                         my $child = shift;      my $child = shift;
3327                         if ({      if ({
3328                              table => 1, tbody => 1, tfoot => 1,           table => 1, tbody => 1, tfoot => 1, thead => 1, tr => 1,
3329                              thead => 1, tr => 1,          }->{$self->{open_elements}->[-1]->[1]}) {
3330                             }->{$self->{open_elements}->[-1]->[1]}) {        # MUST
3331                           # MUST        my $foster_parent_element;
3332                           my $foster_parent_element;        my $next_sibling;
                          my $next_sibling;  
3333                           OE: for (reverse 0..$#{$self->{open_elements}}) {                           OE: for (reverse 0..$#{$self->{open_elements}}) {
3334                             if ($self->{open_elements}->[$_]->[1] eq 'table') {                             if ($self->{open_elements}->[$_]->[1] eq 'table') {
3335                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3336                               if (defined $parent and $parent->node_type == 1) {                               if (defined $parent and $parent->node_type == 1) {
3337                                   !!!cp ('t70');
3338                                 $foster_parent_element = $parent;                                 $foster_parent_element = $parent;
3339                                 $next_sibling = $self->{open_elements}->[$_]->[0];                                 $next_sibling = $self->{open_elements}->[$_]->[0];
3340                               } else {                               } else {
3341                                   !!!cp ('t71');
3342                                 $foster_parent_element                                 $foster_parent_element
3343                                   = $self->{open_elements}->[$_ - 1]->[0];                                   = $self->{open_elements}->[$_ - 1]->[0];
3344                               }                               }
# Line 2809  sub _tree_construction_main ($) { Line 3349  sub _tree_construction_main ($) {
3349                             unless defined $foster_parent_element;                             unless defined $foster_parent_element;
3350                           $foster_parent_element->insert_before                           $foster_parent_element->insert_before
3351                             ($child, $next_sibling);                             ($child, $next_sibling);
3352                         } else {        $open_tables->[-1]->[1] = 1; # tainted
3353                           $self->{open_elements}->[-1]->[0]->append_child ($child);      } else {
3354                         }        !!!cp ('t72');
3355          $self->{open_elements}->[-1]->[0]->append_child ($child);
3356        }
3357    }; # $insert_to_foster    }; # $insert_to_foster
3358    
   my $insert;  
   
3359    B: {    B: {
3360      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
3361        !!!parse-error (type => 'DOCTYPE in the middle');        !!!cp ('t73');
3362          !!!parse-error (type => 'DOCTYPE in the middle', token => $token);
3363        ## Ignore the token        ## Ignore the token
3364        ## Stay in the phase        ## Stay in the phase
3365        !!!next-token;        !!!next-token;
3366        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;  
3367      } elsif ($token->{type} == START_TAG_TOKEN and      } elsif ($token->{type} == START_TAG_TOKEN and
3368               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
3369        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3370          ## Turn into the main phase          !!!cp ('t79');
3371          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3372          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
3373        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3374          ## Turn into the main phase          !!!cp ('t80');
3375          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3376          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
3377          } else {
3378            !!!cp ('t81');
3379        }        }
3380    
3381  ## ISSUE: "aa<html>" is not a parse error.        !!!cp ('t82');
3382  ## ISSUE: "<html>" in fragment is not a parse error.        !!!parse-error (type => 'not first start tag', token => $token);
       unless ($token->{first_start_tag}) {  
         !!!parse-error (type => 'not first start tag');  
       }  
3383        my $top_el = $self->{open_elements}->[0]->[0];        my $top_el = $self->{open_elements}->[0]->[0];
3384        for my $attr_name (keys %{$token->{attributes}}) {        for my $attr_name (keys %{$token->{attributes}}) {
3385          unless ($top_el->has_attribute_ns (undef, $attr_name)) {          unless ($top_el->has_attribute_ns (undef, $attr_name)) {
3386              !!!cp ('t84');
3387            $top_el->set_attribute_ns            $top_el->set_attribute_ns
3388              (undef, [undef, $attr_name],              (undef, [undef, $attr_name],
3389               $token->{attributes}->{$attr_name}->{value});               $token->{attributes}->{$attr_name}->{value});
# Line 2881  sub _tree_construction_main ($) { Line 3394  sub _tree_construction_main ($) {
3394      } elsif ($token->{type} == COMMENT_TOKEN) {      } elsif ($token->{type} == COMMENT_TOKEN) {
3395        my $comment = $self->{document}->create_comment ($token->{data});        my $comment = $self->{document}->create_comment ($token->{data});
3396        if ($self->{insertion_mode} & AFTER_HTML_IMS) {        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
3397            !!!cp ('t85');
3398          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
3399        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {        } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
3400            !!!cp ('t86');
3401          $self->{open_elements}->[0]->[0]->append_child ($comment);          $self->{open_elements}->[0]->[0]->append_child ($comment);
3402        } else {        } else {
3403            !!!cp ('t87');
3404          $self->{open_elements}->[-1]->[0]->append_child ($comment);          $self->{open_elements}->[-1]->[0]->append_child ($comment);
3405        }        }
3406        !!!next-token;        !!!next-token;
# Line 2892  sub _tree_construction_main ($) { Line 3408  sub _tree_construction_main ($) {
3408      } elsif ($self->{insertion_mode} & HEAD_IMS) {      } elsif ($self->{insertion_mode} & HEAD_IMS) {
3409        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
3410          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3411            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3412                !!!cp ('t88.2');
3413                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3414              } else {
3415                !!!cp ('t88.1');
3416                ## Ignore the token.
3417                !!!next-token;
3418                redo B;
3419              }
3420            unless (length $token->{data}) {            unless (length $token->{data}) {
3421                !!!cp ('t88');
3422              !!!next-token;              !!!next-token;
3423              redo B;              redo B;
3424            }            }
3425          }          }
3426    
3427          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3428              !!!cp ('t89');
3429            ## As if <head>            ## As if <head>
3430            !!!create-element ($self->{head_element}, 'head');            !!!create-element ($self->{head_element}, 'head',, $token);
3431            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3432            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];            push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3433    
# Line 2910  sub _tree_construction_main ($) { Line 3436  sub _tree_construction_main ($) {
3436    
3437            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
3438          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3439              !!!cp ('t90');
3440            ## As if </noscript>            ## As if </noscript>
3441            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
3442            !!!parse-error (type => 'in noscript:#character');            !!!parse-error (type => 'in noscript:#character', token => $token);
3443                        
3444            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
3445            ## As if </head>            ## As if </head>
# Line 2920  sub _tree_construction_main ($) { Line 3447  sub _tree_construction_main ($) {
3447    
3448            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
3449          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3450              !!!cp ('t91');
3451            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
3452    
3453            ## Reprocess in the "after head" insertion mode...            ## Reprocess in the "after head" insertion mode...
3454            } else {
3455              !!!cp ('t92');
3456          }          }
3457    
3458              ## "after head" insertion mode              ## "after head" insertion mode
3459              ## As if <body>              ## As if <body>
3460              !!!insert-element ('body');              !!!insert-element ('body',, $token);
3461              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
3462              ## reprocess              ## reprocess
3463              redo B;              redo B;
3464            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
3465              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3466                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3467                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});                  !!!cp ('t93');
3468                    !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes}, $token);
3469                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3470                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];
3471                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3472                  !!!next-token;                  !!!next-token;
3473                  redo B;                  redo B;
3474                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3475                    !!!cp ('t94');
3476                  #                  #
3477                } else {                } else {
3478                  !!!parse-error (type => 'in head:head'); # or in head noscript                  !!!cp ('t95');
3479                    !!!parse-error (type => 'in head:head', token => $token); # or in head noscript
3480                  ## Ignore the token                  ## Ignore the token
3481                  !!!next-token;                  !!!next-token;
3482                  redo B;                  redo B;
3483                }                }
3484              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3485                  !!!cp ('t96');
3486                ## As if <head>                ## As if <head>
3487                !!!create-element ($self->{head_element}, 'head');                !!!create-element ($self->{head_element}, 'head',, $token);
3488                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3489                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3490    
3491                $self->{insertion_mode} = IN_HEAD_IM;                $self->{insertion_mode} = IN_HEAD_IM;
3492                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
3493                } else {
3494                  !!!cp ('t97');
3495              }              }
3496    
3497              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
3498                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3499                    !!!cp ('t98');
3500                  ## As if </noscript>                  ## As if </noscript>
3501                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3502                  !!!parse-error (type => 'in noscript:base');                  !!!parse-error (type => 'in noscript:base', token => $token);
3503                                
3504                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3505                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3506                  } else {
3507                    !!!cp ('t99');
3508                }                }
3509    
3510                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3511                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3512                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t100');
3513                    !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3514                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3515                  } else {
3516                    !!!cp ('t101');
3517                }                }
3518                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3519                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3520                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3521                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3522                !!!next-token;                !!!next-token;
3523                redo B;                redo B;
3524              } elsif ($token->{tag_name} eq 'link') {              } elsif ($token->{tag_name} eq 'link') {
3525                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3526                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3527                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t102');
3528                    !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3529                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3530                  } else {
3531                    !!!cp ('t103');
3532                }                }
3533                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3534                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.                pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3535                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3536                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3537                !!!next-token;                !!!next-token;
3538                redo B;                redo B;
3539              } elsif ($token->{tag_name} eq 'meta') {              } elsif ($token->{tag_name} eq 'meta') {
3540                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3541                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3542                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t104');
3543                    !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3544                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3545                  } else {
3546                    !!!cp ('t105');
3547                }                }
3548                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3549                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.
3550    
3551                unless ($self->{confident}) {                unless ($self->{confident}) {
3552                  if ($token->{attributes}->{charset}) { ## TODO: And if supported                  if ($token->{attributes}->{charset}) { ## TODO: And if supported
3553                      !!!cp ('t106');
3554                    $self->{change_encoding}                    $self->{change_encoding}
3555                        ->($self, $token->{attributes}->{charset}->{value});                        ->($self, $token->{attributes}->{charset}->{value},
3556                             $token);
3557                                        
3558                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3559                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
# Line 3016  sub _tree_construction_main ($) { Line 3566  sub _tree_construction_main ($) {
3566                            [\x09-\x0D\x20]*=                            [\x09-\x0D\x20]*=
3567                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                            [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
3568                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                            ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
3569                        !!!cp ('t107');
3570                      $self->{change_encoding}                      $self->{change_encoding}
3571                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                          ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
3572                               $token);
3573                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3574                          ->set_user_data (manakai_has_reference =>                          ->set_user_data (manakai_has_reference =>
3575                                               $token->{attributes}->{content}                                               $token->{attributes}->{content}
3576                                                     ->{has_reference});                                                     ->{has_reference});
3577                      } else {
3578                        !!!cp ('t108');
3579                    }                    }
3580                  }                  }
3581                } else {                } else {
3582                  if ($token->{attributes}->{charset}) {                  if ($token->{attributes}->{charset}) {
3583                      !!!cp ('t109');
3584                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')                    $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
3585                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
3586                                             $token->{attributes}->{charset}                                             $token->{attributes}->{charset}
3587                                                 ->{has_reference});                                                 ->{has_reference});
3588                  }                  }
3589                  if ($token->{attributes}->{content}) {                  if ($token->{attributes}->{content}) {
3590                      !!!cp ('t110');
3591                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')                    $meta_el->[0]->get_attribute_node_ns (undef, 'content')
3592                        ->set_user_data (manakai_has_reference =>                        ->set_user_data (manakai_has_reference =>
3593                                             $token->{attributes}->{content}                                             $token->{attributes}->{content}
# Line 3039  sub _tree_construction_main ($) { Line 3595  sub _tree_construction_main ($) {
3595                  }                  }
3596                }                }
3597    
3598                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3599                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3600                !!!next-token;                !!!next-token;
3601                redo B;                redo B;
3602              } elsif ($token->{tag_name} eq 'title') {              } elsif ($token->{tag_name} eq 'title') {
3603                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3604                    !!!cp ('t111');
3605                  ## As if </noscript>                  ## As if </noscript>
3606                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3607                  !!!parse-error (type => 'in noscript:title');                  !!!parse-error (type => 'in noscript:title', token => $token);
3608                                
3609                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3610                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3611                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3612                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t112');
3613                    !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3614                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3615                  } else {
3616                    !!!cp ('t113');
3617                }                }
3618    
3619                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3620                my $parent = defined $self->{head_element} ? $self->{head_element}                my $parent = defined $self->{head_element} ? $self->{head_element}
3621                    : $self->{open_elements}->[-1]->[0];                    : $self->{open_elements}->[-1]->[0];
3622                $parse_rcdata->(RCDATA_CONTENT_MODEL,                $parse_rcdata->(RCDATA_CONTENT_MODEL);
3623                                sub { $parent->append_child ($_[0]) });                pop @{$self->{open_elements}} # <head>
               pop @{$self->{open_elements}}  
3624                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3625                redo B;                redo B;
3626              } elsif ($token->{tag_name} eq 'style') {              } elsif ($token->{tag_name} eq 'style') {
# Line 3069  sub _tree_construction_main ($) { Line 3628  sub _tree_construction_main ($) {
3628                ## insertion mode IN_HEAD_IM)                ## insertion mode IN_HEAD_IM)
3629                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3630                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3631                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t114');
3632                    !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3633                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3634                  } else {
3635                    !!!cp ('t115');
3636                }                }
3637                $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);                $parse_rcdata->(CDATA_CONTENT_MODEL);
3638                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3639                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3640                redo B;                redo B;
3641              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
3642                if ($self->{insertion_mode} == IN_HEAD_IM) {                if ($self->{insertion_mode} == IN_HEAD_IM) {
3643                    !!!cp ('t116');
3644                  ## NOTE: and scripting is disalbed                  ## NOTE: and scripting is disalbed
3645                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3646                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;                  $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
3647                  !!!next-token;                  !!!next-token;
3648                  redo B;                  redo B;
3649                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3650                  !!!parse-error (type => 'in noscript:noscript');                  !!!cp ('t117');
3651                    !!!parse-error (type => 'in noscript:noscript', token => $token);
3652                  ## Ignore the token                  ## Ignore the token
3653                  !!!next-token;                  !!!next-token;
3654                  redo B;                  redo B;
3655                } else {                } else {
3656                    !!!cp ('t118');
3657                  #                  #
3658                }                }
3659              } elsif ($token->{tag_name} eq 'script') {              } elsif ($token->{tag_name} eq 'script') {
3660                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3661                    !!!cp ('t119');
3662                  ## As if </noscript>                  ## As if </noscript>
3663                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3664                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:script', token => $token);
3665                                
3666                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3667                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3668                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3669                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!cp ('t120');
3670                    !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3671                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3672                  } else {
3673                    !!!cp ('t121');
3674                }                }
3675    
3676                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3677                $script_start_tag->($insert_to_current);                $script_start_tag->();
3678                pop @{$self->{open_elements}}                pop @{$self->{open_elements}} # <head>
3679                    if $self->{insertion_mode} == AFTER_HEAD_IM;                    if $self->{insertion_mode} == AFTER_HEAD_IM;
3680                redo B;                redo B;
3681              } elsif ($token->{tag_name} eq 'body' or              } elsif ($token->{tag_name} eq 'body' or
3682                       $token->{tag_name} eq 'frameset') {                       $token->{tag_name} eq 'frameset') {
3683                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3684                    !!!cp ('t122');
3685                  ## As if </noscript>                  ## As if </noscript>
3686                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3687                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});                  !!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token);
3688                                    
3689                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3690                  ## As if </head>                  ## As if </head>
# Line 3122  sub _tree_construction_main ($) { Line 3692  sub _tree_construction_main ($) {
3692                                    
3693                  ## Reprocess in the "after head" insertion mode...                  ## Reprocess in the "after head" insertion mode...
3694                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3695                    !!!cp ('t124');
3696                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3697                                    
3698                  ## Reprocess in the "after head" insertion mode...                  ## Reprocess in the "after head" insertion mode...
3699                  } else {
3700                    !!!cp ('t125');
3701                }                }
3702    
3703                ## "after head" insertion mode                ## "after head" insertion mode
3704                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3705                if ($token->{tag_name} eq 'body') {                if ($token->{tag_name} eq 'body') {
3706                    !!!cp ('t126');
3707                  $self->{insertion_mode} = IN_BODY_IM;                  $self->{insertion_mode} = IN_BODY_IM;
3708                } elsif ($token->{tag_name} eq 'frameset') {                } elsif ($token->{tag_name} eq 'frameset') {
3709                    !!!cp ('t127');
3710                  $self->{insertion_mode} = IN_FRAMESET_IM;                  $self->{insertion_mode} = IN_FRAMESET_IM;
3711                } else {                } else {
3712                  die "$0: tag name: $self->{tag_name}";                  die "$0: tag name: $self->{tag_name}";
# Line 3139  sub _tree_construction_main ($) { Line 3714  sub _tree_construction_main ($) {
3714                !!!next-token;                !!!next-token;
3715                redo B;                redo B;
3716              } else {              } else {
3717                  !!!cp ('t128');
3718                #                #
3719              }              }
3720    
3721              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3722                  !!!cp ('t129');
3723                ## As if </noscript>                ## As if </noscript>
3724                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3725                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
3726                                
3727                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
3728                ## As if </head>                ## As if </head>
# Line 3153  sub _tree_construction_main ($) { Line 3730  sub _tree_construction_main ($) {
3730    
3731                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3732              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3733                  !!!cp ('t130');
3734                ## As if </head>                ## As if </head>
3735                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3736    
3737                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3738                } else {
3739                  !!!cp ('t131');
3740              }              }
3741    
3742              ## "after head" insertion mode              ## "after head" insertion mode
3743              ## As if <body>              ## As if <body>
3744              !!!insert-element ('body');              !!!insert-element ('body',, $token);
3745              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
3746              ## reprocess              ## reprocess
3747              redo B;              redo B;
3748            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
3749              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3750                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3751                    !!!cp ('t132');
3752                  ## As if <head>                  ## As if <head>
3753                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, 'head',, $token);
3754                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3755                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3756    
# Line 3179  sub _tree_construction_main ($) { Line 3760  sub _tree_construction_main ($) {
3760                  !!!next-token;                  !!!next-token;
3761                  redo B;                  redo B;
3762                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3763                    !!!cp ('t133');
3764                  ## As if </noscript>                  ## As if </noscript>
3765                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3766                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:/head', token => $token);
3767                                    
3768                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3769                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 3189  sub _tree_construction_main ($) { Line 3771  sub _tree_construction_main ($) {
3771                  !!!next-token;                  !!!next-token;
3772                  redo B;                  redo B;
3773                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3774                    !!!cp ('t134');
3775                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3776                  $self->{insertion_mode} = AFTER_HEAD_IM;                  $self->{insertion_mode} = AFTER_HEAD_IM;
3777                  !!!next-token;                  !!!next-token;
3778                  redo B;                  redo B;
3779                } else {                } else {
3780                    !!!cp ('t135');
3781                  #                  #
3782                }                }
3783              } elsif ($token->{tag_name} eq 'noscript') {              } elsif ($token->{tag_name} eq 'noscript') {
3784                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3785                    !!!cp ('t136');
3786                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3787                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3788                  !!!next-token;                  !!!next-token;
3789                  redo B;                  redo B;
3790                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3791                  !!!parse-error (type => 'unmatched end tag:noscript');                  !!!cp ('t137');
3792                    !!!parse-error (type => 'unmatched end tag:noscript', token => $token);
3793                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
3794                  !!!next-token;                  !!!next-token;
3795                  redo B;                  redo B;
3796                } else {                } else {
3797                    !!!cp ('t138');
3798                  #                  #
3799                }                }
3800              } elsif ({              } elsif ({
3801                        body => 1, html => 1,                        body => 1, html => 1,
3802                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3803                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3804                    !!!cp ('t139');
3805                  ## As if <head>                  ## As if <head>
3806                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, 'head',, $token);
3807                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3808                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3809    
3810                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3811                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3812                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3813                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t140');
3814                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
3815                  ## Ignore the token                  ## Ignore the token
3816                  !!!next-token;                  !!!next-token;
3817                  redo B;                  redo B;
3818                  } else {
3819                    !!!cp ('t141');
3820                }                }
3821                                
3822                #                #
# Line 3233  sub _tree_construction_main ($) { Line 3824  sub _tree_construction_main ($) {
3824                        p => 1, br => 1,                        p => 1, br => 1,
3825                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3826                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {                if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3827                    !!!cp ('t142');
3828                  ## As if <head>                  ## As if <head>
3829                  !!!create-element ($self->{head_element}, 'head');                  !!!create-element ($self->{head_element}, 'head',, $token);
3830                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3831                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3832    
3833                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3834                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3835                  } else {
3836                    !!!cp ('t143');
3837                }                }
3838    
3839                #                #
3840              } else {              } else {
3841                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3842                    !!!cp ('t144');
3843                  #                  #
3844                } else {                } else {
3845                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t145');
3846                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
3847                  ## Ignore the token                  ## Ignore the token
3848                  !!!next-token;                  !!!next-token;
3849                  redo B;                  redo B;
# Line 3255  sub _tree_construction_main ($) { Line 3851  sub _tree_construction_main ($) {
3851              }              }
3852    
3853              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3854                  !!!cp ('t146');
3855                ## As if </noscript>                ## As if </noscript>
3856                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3857                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
3858                                
3859                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
3860                ## As if </head>                ## As if </head>
# Line 3265  sub _tree_construction_main ($) { Line 3862  sub _tree_construction_main ($) {
3862    
3863                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3864              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3865                  !!!cp ('t147');
3866                ## As if </head>                ## As if </head>
3867                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3868    
3869                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3870              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3871                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  ## ISSUE: This case cannot be reached?
3872                  !!!cp ('t148');
3873                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
3874                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
3875                !!!next-token;                !!!next-token;
3876                redo B;                redo B;
3877                } else {
3878                  !!!cp ('t149');
3879              }              }
3880    
3881              ## "after head" insertion mode              ## "after head" insertion mode
3882              ## As if <body>              ## As if <body>
3883              !!!insert-element ('body');              !!!insert-element ('body',, $token);
3884              $self->{insertion_mode} = IN_BODY_IM;              $self->{insertion_mode} = IN_BODY_IM;
3885              ## reprocess              ## reprocess
3886              redo B;              redo B;
3887            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3888              die "$0: $token->{type}: Unknown token type";          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3889            }            !!!cp ('t149.1');
3890    
3891              ## NOTE: As if <head>
3892              !!!create-element ($self->{head_element}, 'head',, $token);
3893              $self->{open_elements}->[-1]->[0]->append_child
3894                  ($self->{head_element});
3895              #push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3896              #$self->{insertion_mode} = IN_HEAD_IM;
3897              ## NOTE: Reprocess.
3898    
3899              ## NOTE: As if </head>
3900              #pop @{$self->{open_elements}};
3901              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3902              ## NOTE: Reprocess.
3903              
3904              #
3905            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
3906              !!!cp ('t149.2');
3907    
3908              ## NOTE: As if </head>
3909              pop @{$self->{open_elements}};
3910              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3911              ## NOTE: Reprocess.
3912    
3913              #
3914            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3915              !!!cp ('t149.3');
3916    
3917              !!!parse-error (type => 'in noscript:#eof', token => $token);
3918    
3919              ## As if </noscript>
3920              pop @{$self->{open_elements}};
3921              #$self->{insertion_mode} = IN_HEAD_IM;
3922              ## NOTE: Reprocess.
3923    
3924              ## NOTE: As if </head>
3925              pop @{$self->{open_elements}};
3926              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
3927              ## NOTE: Reprocess.
3928    
3929              #
3930            } else {
3931              !!!cp ('t149.4');
3932              #
3933            }
3934    
3935            ## NOTE: As if <body>
3936            !!!insert-element ('body',, $token);
3937            $self->{insertion_mode} = IN_BODY_IM;
3938            ## NOTE: Reprocess.
3939            redo B;
3940          } else {
3941            die "$0: $token->{type}: Unknown token type";
3942          }
3943    
3944            ## ISSUE: An issue in the spec.            ## ISSUE: An issue in the spec.
3945      } elsif ($self->{insertion_mode} & BODY_IMS) {      } elsif ($self->{insertion_mode} & BODY_IMS) {
3946            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
3947                !!!cp ('t150');
3948              ## NOTE: There is a code clone of "character in body".              ## NOTE: There is a code clone of "character in body".
3949              $reconstruct_active_formatting_elements->($insert_to_current);              $reconstruct_active_formatting_elements->($insert_to_current);
3950                            
# Line 3303  sub _tree_construction_main ($) { Line 3959  sub _tree_construction_main ($) {
3959                  }->{$token->{tag_name}}) {                  }->{$token->{tag_name}}) {
3960                if ($self->{insertion_mode} == IN_CELL_IM) {                if ($self->{insertion_mode} == IN_CELL_IM) {
3961                  ## have an element in table scope                  ## have an element in table scope
3962                  my $tn;                  for (reverse 0..$#{$self->{open_elements}}) {
                 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
3963                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
3964                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {                    if ($node->[1] eq 'td' or $node->[1] eq 'th') {
3965                      $tn = $node->[1];                      !!!cp ('t151');
3966                      last INSCOPE;  
3967                        ## Close the cell
3968                        !!!back-token; # <?>
3969                        $token = {type => END_TAG_TOKEN,
3970                                  tag_name => $node->[0]->manakai_local_name,
3971                                  line => $token->{line},
3972                                  column => $token->{column}};
3973                        redo B;
3974                    } elsif ({                    } elsif ({
3975                              table => 1, html => 1,                              table => 1, html => 1,
3976                             }->{$node->[1]}) {                             }->{$node->[1]}) {
3977                      last INSCOPE;                      !!!cp ('t152');
3978                        ## ISSUE: This case can never be reached, maybe.
3979                        last;
3980                    }                    }
3981                  } # INSCOPE                  }
3982                    unless (defined $tn) {  
3983                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t153');
3984                      ## Ignore the token                  !!!parse-error (type => 'start tag not allowed',
3985                      !!!next-token;                      value => $token->{tag_name}, token => $token);
3986                      redo B;                  ## Ignore the token
3987                    }                  !!!next-token;
                   
                 ## Close the cell  
                 !!!back-token; # <?>  
                 $token = {type => END_TAG_TOKEN, tag_name => $tn};  
3988                  redo B;                  redo B;
3989                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
3990                  !!!parse-error (type => 'not closed:caption');                  !!!parse-error (type => 'not closed:caption', token => $token);
3991                                    
3992                  ## As if </caption>                  ## NOTE: As if </caption>.
3993                  ## have a table element in table scope                  ## have a table element in table scope
3994                  my $i;                  my $i;
3995                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
3996                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
3997                    if ($node->[1] eq 'caption') {                      my $node = $self->{open_elements}->[$_];
3998                      $i = $_;                      if ($node->[1] eq 'caption') {
3999                      last INSCOPE;                        !!!cp ('t155');
4000                    } elsif ({                        $i = $_;
4001                              table => 1, html => 1,                        last INSCOPE;
4002                             }->{$node->[1]}) {                      } elsif ({
4003                      last INSCOPE;                                table => 1, html => 1,
4004                                 }->{$node->[1]}) {
4005                          !!!cp ('t156');
4006                          last;
4007                        }
4008                    }                    }
4009    
4010                      !!!cp ('t157');
4011                      !!!parse-error (type => 'start tag not allowed',
4012                                      value => $token->{tag_name}, token => $token);
4013                      ## Ignore the token
4014                      !!!next-token;
4015                      redo B;
4016                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!parse-error (type => 'unmatched end tag:caption');  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4017                                    
4018                  ## generate implied end tags                  ## generate implied end tags
4019                  if ({                  while ({
4020                       dd => 1, dt => 1, li => 1, p => 1,                          dd => 1, dt => 1, li => 1, p => 1,
4021                       td => 1, th => 1, tr => 1,                         }->{$self->{open_elements}->[-1]->[1]}) {
4022                       tbody => 1, tfoot=> 1, thead => 1,                    !!!cp ('t158');
4023                      }->{$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;  
4024                  }                  }
4025    
4026                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4027                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t159');
4028                      !!!parse-error (type => 'not closed',
4029                                      value => $self->{open_elements}->[-1]->[0]
4030                                          ->manakai_local_name,
4031                                      token => $token);
4032                    } else {
4033                      !!!cp ('t160');
4034                  }                  }
4035                                    
4036                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3377  sub _tree_construction_main ($) { Line 4042  sub _tree_construction_main ($) {
4042                  ## reprocess                  ## reprocess
4043                  redo B;                  redo B;
4044                } else {                } else {
4045                    !!!cp ('t161');
4046                  #                  #
4047                }                }
4048              } else {              } else {
4049                  !!!cp ('t162');
4050                #                #
4051              }              }
4052            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
# Line 3390  sub _tree_construction_main ($) { Line 4057  sub _tree_construction_main ($) {
4057                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4058                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4059                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[1] eq $token->{tag_name}) {
4060                        !!!cp ('t163');
4061                      $i = $_;                      $i = $_;
4062                      last INSCOPE;                      last INSCOPE;
4063                    } elsif ({                    } elsif ({
4064                              table => 1, html => 1,                              table => 1, html => 1,
4065                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4066                        !!!cp ('t164');
4067                      last INSCOPE;                      last INSCOPE;
4068                    }                    }
4069                  } # INSCOPE                  } # INSCOPE
4070                    unless (defined $i) {                    unless (defined $i) {
4071                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!cp ('t165');
4072                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4073                      ## Ignore the token                      ## Ignore the token
4074                      !!!next-token;                      !!!next-token;
4075                      redo B;                      redo B;
4076                    }                    }
4077                                    
4078                  ## generate implied end tags                  ## generate implied end tags
4079                  if ({                  while ({
4080                       dd => 1, dt => 1, li => 1, p => 1,                          dd => 1, dt => 1, li => 1, p => 1,
4081                       td => ($token->{tag_name} eq 'th'),                         }->{$self->{open_elements}->[-1]->[1]}) {
4082                       th => ($token->{tag_name} eq 'td'),                    !!!cp ('t166');
4083                       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;  
4084                  }                  }
4085                    
4086                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
4087                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t167');
4088                      !!!parse-error (type => 'not closed',
4089                                      value => $self->{open_elements}->[-1]->[0]
4090                                          ->manakai_local_name,
4091                                      token => $token);
4092                    } else {
4093                      !!!cp ('t168');
4094                  }                  }
4095                                    
4096                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3432  sub _tree_construction_main ($) { Line 4102  sub _tree_construction_main ($) {
4102                  !!!next-token;                  !!!next-token;
4103                  redo B;                  redo B;
4104                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4105                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t169');
4106                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4107                  ## Ignore the token                  ## Ignore the token
4108                  !!!next-token;                  !!!next-token;
4109                  redo B;                  redo B;
4110                } else {                } else {
4111                    !!!cp ('t170');
4112                  #                  #
4113                }                }
4114              } elsif ($token->{tag_name} eq 'caption') {              } elsif ($token->{tag_name} eq 'caption') {
4115                if ($self->{insertion_mode} == IN_CAPTION_IM) {                if ($self->{insertion_mode} == IN_CAPTION_IM) {
4116                  ## have a table element in table scope                  ## have a table element in table scope
4117                  my $i;                  my $i;
4118                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: {
4119                    my $node = $self->{open_elements}->[$_];                    for (reverse 0..$#{$self->{open_elements}}) {
4120                    if ($node->[1] eq $token->{tag_name}) {                      my $node = $self->{open_elements}->[$_];
4121                      $i = $_;                      if ($node->[1] eq $token->{tag_name}) {
4122                      last INSCOPE;                        !!!cp ('t171');
4123                    } elsif ({                        $i = $_;
4124                              table => 1, html => 1,                        last INSCOPE;
4125                             }->{$node->[1]}) {                      } elsif ({
4126                      last INSCOPE;                                table => 1, html => 1,
4127                                 }->{$node->[1]}) {
4128                          !!!cp ('t172');
4129                          last;
4130                        }
4131                    }                    }
4132    
4133                      !!!cp ('t173');
4134                      !!!parse-error (type => 'unmatched end tag',
4135                                      value => $token->{tag_name}, token => $token);
4136                      ## Ignore the token
4137                      !!!next-token;
4138                      redo B;
4139                  } # INSCOPE                  } # INSCOPE
                   unless (defined $i) {  
                     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                     ## Ignore the token  
                     !!!next-token;  
                     redo B;  
                   }  
4140                                    
4141                  ## generate implied end tags                  ## generate implied end tags
4142                  if ({                  while ({
4143                       dd => 1, dt => 1, li => 1, p => 1,                          dd => 1, dt => 1, li => 1, p => 1,
4144                       td => 1, th => 1, tr => 1,                         }->{$self->{open_elements}->[-1]->[1]}) {
4145                       tbody => 1, tfoot=> 1, thead => 1,                    !!!cp ('t174');
4146                      }->{$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;  
4147                  }                  }
4148                                    
4149                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4150                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t175');
4151                      !!!parse-error (type => 'not closed',
4152                                      value => $self->{open_elements}->[-1]->[0]
4153                                          ->manakai_local_name,
4154                                      token => $token);
4155                    } else {
4156                      !!!cp ('t176');
4157                  }                  }
4158                                    
4159                  splice @{$self->{open_elements}}, $i;                  splice @{$self->{open_elements}}, $i;
# Line 3486  sub _tree_construction_main ($) { Line 4165  sub _tree_construction_main ($) {
4165                  !!!next-token;                  !!!next-token;
4166                  redo B;                  redo B;
4167                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4168                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t177');
4169                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4170                  ## Ignore the token                  ## Ignore the token
4171                  !!!next-token;                  !!!next-token;
4172                  redo B;                  redo B;
4173                } else {                } else {
4174                    !!!cp ('t178');
4175                  #                  #
4176                }                }
4177              } elsif ({              } elsif ({
# Line 3501  sub _tree_construction_main ($) { Line 4182  sub _tree_construction_main ($) {
4182                ## have an element in table scope                ## have an element in table scope
4183                my $i;                my $i;
4184                my $tn;                my $tn;
4185                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: {
4186                  my $node = $self->{open_elements}->[$_];                  for (reverse 0..$#{$self->{open_elements}}) {
4187                  if ($node->[1] eq $token->{tag_name}) {                    my $node = $self->{open_elements}->[$_];
4188                    $i = $_;                    if ($node->[1] eq $token->{tag_name}) {
4189                    last INSCOPE;                      !!!cp ('t179');
4190                  } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {                      $i = $_;
4191                    $tn = $node->[1];  
4192                    ## NOTE: There is exactly one |td| or |th| element                      ## Close the cell
4193                    ## in scope in the stack of open elements by definition.                      !!!back-token; # </?>
4194                  } elsif ({                      $token = {type => END_TAG_TOKEN, tag_name => $tn,
4195                            table => 1, html => 1,                                line => $token->{line},
4196                           }->{$node->[1]}) {                                column => $token->{column}};
4197                    last INSCOPE;                      redo B;
4198                      } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {
4199                        !!!cp ('t180');
4200                        $tn = $node->[1];
4201                        ## NOTE: There is exactly one |td| or |th| element
4202                        ## in scope in the stack of open elements by definition.
4203                      } elsif ({
4204                                table => 1, html => 1,
4205                               }->{$node->[1]}) {
4206                        ## ISSUE: Can this be reached?
4207                        !!!cp ('t181');
4208                        last;
4209                      }
4210                  }                  }
4211                } # INSCOPE  
4212                unless (defined $i) {                  !!!cp ('t182');
4213                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag',
4214                        value => $token->{tag_name}, token => $token);
4215                  ## Ignore the token                  ## Ignore the token
4216                  !!!next-token;                  !!!next-token;
4217                  redo B;                  redo B;
4218                }                } # INSCOPE
   
               ## Close the cell  
               !!!back-token; # </?>  
               $token = {type => END_TAG_TOKEN, tag_name => $tn};  
               redo B;  
4219              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
4220                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4221                !!!parse-error (type => 'not closed:caption');                !!!parse-error (type => 'not closed:caption', token => $token);
4222    
4223                ## As if </caption>                ## As if </caption>
4224                ## have a table element in table scope                ## have a table element in table scope
# Line 3537  sub _tree_construction_main ($) { Line 4226  sub _tree_construction_main ($) {
4226                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4227                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4228                  if ($node->[1] eq 'caption') {                  if ($node->[1] eq 'caption') {
4229                      !!!cp ('t184');
4230                    $i = $_;                    $i = $_;
4231                    last INSCOPE;                    last INSCOPE;
4232                  } elsif ({                  } elsif ({
4233                            table => 1, html => 1,                            table => 1, html => 1,
4234                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4235                      !!!cp ('t185');
4236                    last INSCOPE;                    last INSCOPE;
4237                  }                  }
4238                } # INSCOPE                } # INSCOPE
4239                unless (defined $i) {                unless (defined $i) {
4240                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!cp ('t186');
4241                    !!!parse-error (type => 'unmatched end tag:caption', token => $token);
4242                  ## Ignore the token                  ## Ignore the token
4243                  !!!next-token;                  !!!next-token;
4244                  redo B;                  redo B;
4245                }                }
4246                                
4247                ## generate implied end tags                ## generate implied end tags
4248                if ({                while ({
4249                     dd => 1, dt => 1, li => 1, p => 1,                        dd => 1, dt => 1, li => 1, p => 1,
4250                     td => 1, th => 1, tr => 1,                       }->{$self->{open_elements}->[-1]->[1]}) {
4251                     tbody => 1, tfoot=> 1, thead => 1,                  !!!cp ('t187');
4252                    }->{$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;  
4253                }                }
4254    
4255                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4256                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t188');
4257                    !!!parse-error (type => 'not closed',
4258                                    value => $self->{open_elements}->[-1]->[0]
4259                                        ->manakai_local_name,
4260                                    token => $token);
4261                  } else {
4262                    !!!cp ('t189');
4263                }                }
4264    
4265                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
# Line 3582  sub _tree_construction_main ($) { Line 4274  sub _tree_construction_main ($) {
4274                        body => 1, col => 1, colgroup => 1, html => 1,                        body => 1, col => 1, colgroup => 1, html => 1,
4275                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4276                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
4277                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t190');
4278                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4279                  ## Ignore the token                  ## Ignore the token
4280                  !!!next-token;                  !!!next-token;
4281                  redo B;                  redo B;
4282                } else {                } else {
4283                    !!!cp ('t191');
4284                  #                  #
4285                }                }
4286              } elsif ({              } elsif ({
# Line 3594  sub _tree_construction_main ($) { Line 4288  sub _tree_construction_main ($) {
4288                        thead => 1, tr => 1,                        thead => 1, tr => 1,
4289                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
4290                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4291                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t192');
4292                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4293                ## Ignore the token                ## Ignore the token
4294                !!!next-token;                !!!next-token;
4295                redo B;                redo B;
4296              } else {              } else {
4297                  !!!cp ('t193');
4298                #                #
4299              }              }
4300          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4301            for my $entry (@{$self->{open_elements}}) {
4302              if (not {
4303                dd => 1, dt => 1, li => 1, p => 1, tbody => 1, td => 1, tfoot => 1,
4304                th => 1, thead => 1, tr => 1, body => 1, html => 1,
4305              }->{$entry->[1]}) {
4306                !!!cp ('t75');
4307                !!!parse-error (type => 'in body:#eof', token => $token);
4308                last;
4309              }
4310            }
4311    
4312            ## Stop parsing.
4313            last B;
4314        } else {        } else {
4315          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
4316        }        }
# Line 3609  sub _tree_construction_main ($) { Line 4319  sub _tree_construction_main ($) {
4319        #        #
4320      } elsif ($self->{insertion_mode} & TABLE_IMS) {      } elsif ($self->{insertion_mode} & TABLE_IMS) {
4321        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
4322              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if (not $open_tables->[-1]->[1] and # tainted
4323                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              $token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4324              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4325                                
4326                unless (length $token->{data}) {            unless (length $token->{data}) {
4327                  !!!next-token;              !!!cp ('t194');
4328                  redo B;              !!!next-token;
4329                }              redo B;
4330              }            } else {
4331                !!!cp ('t195');
4332              }
4333            }
4334    
4335              !!!parse-error (type => 'in table:#character');              !!!parse-error (type => 'in table:#character', token => $token);
4336    
4337              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
4338              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
# Line 3638  sub _tree_construction_main ($) { Line 4352  sub _tree_construction_main ($) {
4352                  if ($self->{open_elements}->[$_]->[1] eq 'table') {                  if ($self->{open_elements}->[$_]->[1] eq 'table') {
4353                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4354                    if (defined $parent and $parent->node_type == 1) {                    if (defined $parent and $parent->node_type == 1) {
4355                        !!!cp ('t196');
4356                      $foster_parent_element = $parent;                      $foster_parent_element = $parent;
4357                      $next_sibling = $self->{open_elements}->[$_]->[0];                      $next_sibling = $self->{open_elements}->[$_]->[0];
4358                      $prev_sibling = $next_sibling->previous_sibling;                      $prev_sibling = $next_sibling->previous_sibling;
4359                    } else {                    } else {
4360                        !!!cp ('t197');
4361                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
4362                      $prev_sibling = $foster_parent_element->last_child;                      $prev_sibling = $foster_parent_element->last_child;
4363                    }                    }
# Line 3653  sub _tree_construction_main ($) { Line 4369  sub _tree_construction_main ($) {
4369                  unless defined $foster_parent_element;                  unless defined $foster_parent_element;
4370                if (defined $prev_sibling and                if (defined $prev_sibling and
4371                    $prev_sibling->node_type == 3) {                    $prev_sibling->node_type == 3) {
4372                    !!!cp ('t198');
4373                  $prev_sibling->manakai_append_text ($token->{data});                  $prev_sibling->manakai_append_text ($token->{data});
4374                } else {                } else {
4375                    !!!cp ('t199');
4376                  $foster_parent_element->insert_before                  $foster_parent_element->insert_before
4377                    ($self->{document}->create_text_node ($token->{data}),                    ($self->{document}->create_text_node ($token->{data}),
4378                     $next_sibling);                     $next_sibling);
4379                }                }
4380              } else {            $open_tables->[-1]->[1] = 1; # tainted
4381                $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          } else {
4382              }            !!!cp ('t200');
4383              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4384            }
4385                            
4386              !!!next-token;          !!!next-token;
4387              redo B;          redo B;
4388        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4389              if ({              if ({
4390                   tr => ($self->{insertion_mode} != IN_ROW_IM),                   tr => ($self->{insertion_mode} != IN_ROW_IM),
# Line 3674  sub _tree_construction_main ($) { Line 4394  sub _tree_construction_main ($) {
4394                  ## Clear back to table context                  ## Clear back to table context
4395                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4396                         $self->{open_elements}->[-1]->[1] ne 'html') {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4397                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t201');
4398                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4399                  }                  }
4400                                    
4401                  !!!insert-element ('tbody');                  !!!insert-element ('tbody',, $token);
4402                  $self->{insertion_mode} = IN_TABLE_BODY_IM;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
4403                  ## reprocess in the "in table body" insertion mode...                  ## reprocess in the "in table body" insertion mode...
4404                }                }
4405    
4406                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4407                  unless ($token->{tag_name} eq 'tr') {                  unless ($token->{tag_name} eq 'tr') {
4408                    !!!parse-error (type => 'missing start tag:tr');                    !!!cp ('t202');
4409                      !!!parse-error (type => 'missing start tag:tr', token => $token);
4410                  }                  }
4411                                    
4412                  ## Clear back to table body context                  ## Clear back to table body context
4413                  while (not {                  while (not {
4414                    tbody => 1, tfoot => 1, thead => 1, html => 1,                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4415                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4416                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t203');
4417                      ## ISSUE: Can this case be reached?
4418                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4419                  }                  }
4420                                    
4421                  $self->{insertion_mode} = IN_ROW_IM;                  $self->{insertion_mode} = IN_ROW_IM;
4422                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
4423                    !!!insert-element ($token->{tag_name}, $token->{attributes});                    !!!cp ('t204');
4424                      !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4425                    !!!next-token;                    !!!next-token;
4426                    redo B;                    redo B;
4427                  } else {                  } else {
4428                    !!!insert-element ('tr');                    !!!cp ('t205');
4429                      !!!insert-element ('tr',, $token);
4430                    ## reprocess in the "in row" insertion mode                    ## reprocess in the "in row" insertion mode
4431                  }                  }
4432                  } else {
4433                    !!!cp ('t206');
4434                }                }
4435    
4436                ## Clear back to table row context                ## Clear back to table row context
4437                while (not {                while (not {
4438                  tr => 1, html => 1,                  tr => 1, html => 1,
4439                }->{$self->{open_elements}->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4440                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t207');
4441                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4442                }                }
4443                                
4444                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4445                $self->{insertion_mode} = IN_CELL_IM;                $self->{insertion_mode} = IN_CELL_IM;
4446    
4447                push @$active_formatting_elements, ['#marker', ''];                push @$active_formatting_elements, ['#marker', ''];
# Line 3734  sub _tree_construction_main ($) { Line 4460  sub _tree_construction_main ($) {
4460                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4461                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4462                    if ($node->[1] eq 'tr') {                    if ($node->[1] eq 'tr') {
4463                        !!!cp ('t208');
4464                      $i = $_;                      $i = $_;
4465                      last INSCOPE;                      last INSCOPE;
4466                    } elsif ({                    } elsif ({
4467                              table => 1, html => 1,                              html => 1,
4468    
4469                                ## NOTE: This element does not appear here, maybe.
4470                                table => 1,
4471                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4472                        !!!cp ('t209');
4473                      last INSCOPE;                      last INSCOPE;
4474                    }                    }
4475                  } # INSCOPE                  } # INSCOPE
4476                  unless (defined $i) {                  unless (defined $i) {
4477                    !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});                   !!!cp ('t210');
4478    ## TODO: This type is wrong.
4479                     !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token);
4480                    ## Ignore the token                    ## Ignore the token
4481                    !!!next-token;                    !!!next-token;
4482                    redo B;                    redo B;
# Line 3753  sub _tree_construction_main ($) { Line 4486  sub _tree_construction_main ($) {
4486                  while (not {                  while (not {
4487                    tr => 1, html => 1,                    tr => 1, html => 1,
4488                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4489                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t211');
4490                      ## ISSUE: Can this case be reached?
4491                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4492                  }                  }
4493                                    
4494                  pop @{$self->{open_elements}}; # tr                  pop @{$self->{open_elements}}; # tr
4495                  $self->{insertion_mode} = IN_TABLE_BODY_IM;                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
4496                  if ($token->{tag_name} eq 'tr') {                  if ($token->{tag_name} eq 'tr') {
4497                      !!!cp ('t212');
4498                    ## reprocess                    ## reprocess
4499                    redo B;                    redo B;
4500                  } else {                  } else {
4501                      !!!cp ('t213');
4502                    ## reprocess in the "in table body" insertion mode...                    ## reprocess in the "in table body" insertion mode...
4503                  }                  }
4504                }                }
# Line 3775  sub _tree_construction_main ($) { Line 4511  sub _tree_construction_main ($) {
4511                    if ({                    if ({
4512                         tbody => 1, thead => 1, tfoot => 1,                         tbody => 1, thead => 1, tfoot => 1,
4513                        }->{$node->[1]}) {                        }->{$node->[1]}) {
4514                        !!!cp ('t214');
4515                      $i = $_;                      $i = $_;
4516                      last INSCOPE;                      last INSCOPE;
4517                    } elsif ({                    } elsif ({
4518                              table => 1, html => 1,                              table => 1, html => 1,
4519                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4520                        !!!cp ('t215');
4521                      last INSCOPE;                      last INSCOPE;
4522                    }                    }
4523                  } # INSCOPE                  } # INSCOPE
4524                  unless (defined $i) {                  unless (defined $i) {
4525                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!cp ('t216');
4526    ## TODO: This erorr type ios wrong.
4527                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4528                    ## Ignore the token                    ## Ignore the token
4529                    !!!next-token;                    !!!next-token;
4530                    redo B;                    redo B;
# Line 3794  sub _tree_construction_main ($) { Line 4534  sub _tree_construction_main ($) {
4534                  while (not {                  while (not {
4535                    tbody => 1, tfoot => 1, thead => 1, html => 1,                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4536                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4537                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t217');
4538                      ## ISSUE: Can this state be reached?
4539                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4540                  }                  }
4541                                    
# Line 3808  sub _tree_construction_main ($) { Line 4549  sub _tree_construction_main ($) {
4549                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4550                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
4551                  ## reprocess in "in table" insertion mode...                  ## reprocess in "in table" insertion mode...
4552                  } else {
4553                    !!!cp ('t218');
4554                }                }
4555    
4556                if ($token->{tag_name} eq 'col') {                if ($token->{tag_name} eq 'col') {
4557                  ## Clear back to table context                  ## Clear back to table context
4558                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4559                         $self->{open_elements}->[-1]->[1] ne 'html') {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4560                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t219');
4561                      ## ISSUE: Can this state be reached?
4562                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4563                  }                  }
4564                                    
4565                  !!!insert-element ('colgroup');                  !!!insert-element ('colgroup',, $token);
4566                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;                  $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
4567                  ## reprocess                  ## reprocess
4568                  redo B;                  redo B;
# Line 3830  sub _tree_construction_main ($) { Line 4574  sub _tree_construction_main ($) {
4574                  ## Clear back to table context                  ## Clear back to table context
4575                  while ($self->{open_elements}->[-1]->[1] ne 'table' and                  while ($self->{open_elements}->[-1]->[1] ne 'table' and
4576                         $self->{open_elements}->[-1]->[1] ne 'html') {                         $self->{open_elements}->[-1]->[1] ne 'html') {
4577                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t220');
4578                      ## ISSUE: Can this state be reached?
4579                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4580                  }                  }
4581                                    
4582                  push @$active_formatting_elements, ['#marker', '']                  push @$active_formatting_elements, ['#marker', '']
4583                      if $token->{tag_name} eq 'caption';                      if $token->{tag_name} eq 'caption';
4584                                    
4585                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4586                  $self->{insertion_mode} = {                  $self->{insertion_mode} = {
4587                                             caption => IN_CAPTION_IM,                                             caption => IN_CAPTION_IM,
4588                                             colgroup => IN_COLUMN_GROUP_IM,                                             colgroup => IN_COLUMN_GROUP_IM,
# Line 3851  sub _tree_construction_main ($) { Line 4596  sub _tree_construction_main ($) {
4596                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
4597                }                }
4598              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
4599                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
4600                                  value => $self->{open_elements}->[-1]->[0]
4601                                      ->manakai_local_name,
4602                                  token => $token);
4603    
4604                ## As if </table>                ## As if </table>
4605                ## have a table element in table scope                ## have a table element in table scope
# Line 3859  sub _tree_construction_main ($) { Line 4607  sub _tree_construction_main ($) {
4607                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4608                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4609                  if ($node->[1] eq 'table') {                  if ($node->[1] eq 'table') {
4610                      !!!cp ('t221');
4611                    $i = $_;                    $i = $_;
4612                    last INSCOPE;                    last INSCOPE;
4613                  } elsif ({                  } elsif ({
4614                            table => 1, html => 1,                            #table => 1,
4615                              html => 1,
4616                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4617                      !!!cp ('t222');
4618                    last INSCOPE;                    last INSCOPE;
4619                  }                  }
4620                } # INSCOPE                } # INSCOPE
4621                unless (defined $i) {                unless (defined $i) {
4622                  !!!parse-error (type => 'unmatched end tag:table');                  !!!cp ('t223');
4623    ## TODO: The following is wrong, maybe.
4624                    !!!parse-error (type => 'unmatched end tag:table', token => $token);
4625                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
4626                  !!!next-token;                  !!!next-token;
4627                  redo B;                  redo B;
4628                }                }
4629                                
4630    ## TODO: Followings are removed from the latest spec.
4631                ## generate implied end tags                ## generate implied end tags
4632                if ({                while ({
4633                     dd => 1, dt => 1, li => 1, p => 1,                        dd => 1, dt => 1, li => 1, p => 1,
4634                     td => 1, th => 1, tr => 1,                       }->{$self->{open_elements}->[-1]->[1]}) {
4635                     tbody => 1, tfoot=> 1, thead => 1,                  !!!cp ('t224');
4636                    }->{$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;  
4637                }                }
4638    
4639                if ($self->{open_elements}->[-1]->[1] ne 'table') {                if ($self->{open_elements}->[-1]->[1] ne 'table') {
4640                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t225');
4641                    ## NOTE: |<table><tr><table>|
4642                    !!!parse-error (type => 'not closed',
4643                                    value => $self->{open_elements}->[-1]->[0]
4644                                        ->manakai_local_name,
4645                                    token => $token);
4646                  } else {
4647                    !!!cp ('t226');
4648                }                }
4649    
4650                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
4651                  pop @{$open_tables};
4652    
4653                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
4654    
4655                ## reprocess                ## reprocess
4656                redo B;                redo B;
4657          } else {          } elsif ($token->{tag_name} eq 'style') {
4658            !!!parse-error (type => 'in table:'.$token->{tag_name});            if (not $open_tables->[-1]->[1]) { # tainted
4659                !!!cp ('t227.8');
4660                ## NOTE: This is a "as if in head" code clone.
4661                $parse_rcdata->(CDATA_CONTENT_MODEL);
4662                redo B;
4663              } else {
4664                !!!cp ('t227.7');
4665                #
4666              }
4667            } elsif ($token->{tag_name} eq 'script') {
4668              if (not $open_tables->[-1]->[1]) { # tainted
4669                !!!cp ('t227.6');
4670                ## NOTE: This is a "as if in head" code clone.
4671                $script_start_tag->();
4672                redo B;
4673              } else {
4674                !!!cp ('t227.5');
4675                #
4676              }
4677            } elsif ($token->{tag_name} eq 'input') {
4678              if (not $open_tables->[-1]->[1]) { # tainted
4679                if ($token->{attributes}->{type}) { ## TODO: case
4680                  my $type = lc $token->{attributes}->{type}->{value};
4681                  if ($type eq 'hidden') {
4682                    !!!cp ('t227.3');
4683                    !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
4684    
4685            $insert = $insert_to_foster;                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4686    
4687                    ## TODO: form element pointer
4688    
4689                    pop @{$self->{open_elements}};
4690    
4691                    !!!next-token;
4692                    redo B;
4693                  } else {
4694                    !!!cp ('t227.2');
4695                    #
4696                  }
4697                } else {
4698                  !!!cp ('t227.1');
4699                  #
4700                }
4701              } else {
4702                !!!cp ('t227.4');
4703                #
4704              }
4705            } else {
4706              !!!cp ('t227');
4707            #            #
4708          }          }
4709    
4710            !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
4711    
4712            $insert = $insert_to_foster;
4713            #
4714        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
4715              if ($token->{tag_name} eq 'tr' and              if ($token->{tag_name} eq 'tr' and
4716                  $self->{insertion_mode} == IN_ROW_IM) {                  $self->{insertion_mode} == IN_ROW_IM) {
# Line 3912  sub _tree_construction_main ($) { Line 4719  sub _tree_construction_main ($) {
4719                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4720                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4721                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4722                      !!!cp ('t228');
4723                    $i = $_;                    $i = $_;
4724                    last INSCOPE;                    last INSCOPE;
4725                  } elsif ({                  } elsif ({
4726                            table => 1, html => 1,                            table => 1, html => 1,
4727                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4728                      !!!cp ('t229');
4729                    last INSCOPE;                    last INSCOPE;
4730                  }                  }
4731                } # INSCOPE                } # INSCOPE
4732                unless (defined $i) {                unless (defined $i) {
4733                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t230');
4734                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4735                  ## Ignore the token                  ## Ignore the token
4736                  !!!next-token;                  !!!next-token;
4737                  redo B;                  redo B;
4738                  } else {
4739                    !!!cp ('t232');
4740                }                }
4741    
4742                ## Clear back to table row context                ## Clear back to table row context
4743                while (not {                while (not {
4744                  tr => 1, html => 1,                  tr => 1, html => 1,
4745                }->{$self->{open_elements}->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4746                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t231');
4747    ## ISSUE: Can this state be reached?
4748                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4749                }                }
4750    
# Line 3947  sub _tree_construction_main ($) { Line 4760  sub _tree_construction_main ($) {
4760                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4761                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4762                    if ($node->[1] eq 'tr') {                    if ($node->[1] eq 'tr') {
4763                        !!!cp ('t233');
4764                      $i = $_;                      $i = $_;
4765                      last INSCOPE;                      last INSCOPE;
4766                    } elsif ({                    } elsif ({
4767                              table => 1, html => 1,                              table => 1, html => 1,
4768                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4769                        !!!cp ('t234');
4770                      last INSCOPE;                      last INSCOPE;
4771                    }                    }
4772                  } # INSCOPE                  } # INSCOPE
4773                  unless (defined $i) {                  unless (defined $i) {
4774                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});                    !!!cp ('t235');
4775    ## TODO: The following is wrong.
4776                      !!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token);
4777                    ## Ignore the token                    ## Ignore the token
4778                    !!!next-token;                    !!!next-token;
4779                    redo B;                    redo B;
# Line 3966  sub _tree_construction_main ($) { Line 4783  sub _tree_construction_main ($) {
4783                  while (not {                  while (not {
4784                    tr => 1, html => 1,                    tr => 1, html => 1,
4785                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4786                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t236');
4787    ## ISSUE: Can this state be reached?
4788                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4789                  }                  }
4790                                    
# Line 3983  sub _tree_construction_main ($) { Line 4801  sub _tree_construction_main ($) {
4801                    if ({                    if ({
4802                         tbody => 1, thead => 1, tfoot => 1,                         tbody => 1, thead => 1, tfoot => 1,
4803                        }->{$node->[1]}) {                        }->{$node->[1]}) {
4804                        !!!cp ('t237');
4805                      $i = $_;                      $i = $_;
4806                      last INSCOPE;                      last INSCOPE;
4807                    } elsif ({                    } elsif ({
4808                              table => 1, html => 1,                              table => 1, html => 1,
4809                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4810                        !!!cp ('t238');
4811                      last INSCOPE;                      last INSCOPE;
4812                    }                    }
4813                  } # INSCOPE                  } # INSCOPE
4814                  unless (defined $i) {                  unless (defined $i) {
4815                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!cp ('t239');
4816                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4817                    ## Ignore the token                    ## Ignore the token
4818                    !!!next-token;                    !!!next-token;
4819                    redo B;                    redo B;
# Line 4002  sub _tree_construction_main ($) { Line 4823  sub _tree_construction_main ($) {
4823                  while (not {                  while (not {
4824                    tbody => 1, tfoot => 1, thead => 1, html => 1,                    tbody => 1, tfoot => 1, thead => 1, html => 1,
4825                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4826                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t240');
4827                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4828                  }                  }
4829                                    
# Line 4018  sub _tree_construction_main ($) { Line 4839  sub _tree_construction_main ($) {
4839                  ## reprocess in the "in table" insertion mode...                  ## reprocess in the "in table" insertion mode...
4840                }                }
4841    
4842                  ## NOTE: </table> in the "in table" insertion mode.
4843                  ## When you edit the code fragment below, please ensure that
4844                  ## the code for <table> in the "in table" insertion mode
4845                  ## is synced with it.
4846    
4847                ## have a table element in table scope                ## have a table element in table scope
4848                my $i;                my $i;
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 ('t241');
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 ('t242');
4859                    last INSCOPE;                    last INSCOPE;
4860                  }                  }
4861                } # INSCOPE                } # INSCOPE
4862                unless (defined $i) {                unless (defined $i) {
4863                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t243');
4864                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4865                  ## Ignore the token                  ## Ignore the token
4866                  !!!next-token;                  !!!next-token;
4867                  redo B;                  redo B;
4868                }                }
   
               ## 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]);  
               }  
4869                                    
4870                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
4871                  pop @{$open_tables};
4872                                
4873                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
4874                                
# Line 4070  sub _tree_construction_main ($) { Line 4884  sub _tree_construction_main ($) {
4884                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4885                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4886                    if ($node->[1] eq $token->{tag_name}) {                    if ($node->[1] eq $token->{tag_name}) {
4887                        !!!cp ('t247');
4888                      $i = $_;                      $i = $_;
4889                      last INSCOPE;                      last INSCOPE;
4890                    } elsif ({                    } elsif ({
4891                              table => 1, html => 1,                              table => 1, html => 1,
4892                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4893                        !!!cp ('t248');
4894                      last INSCOPE;                      last INSCOPE;
4895                    }                    }
4896                  } # INSCOPE                  } # INSCOPE
4897                    unless (defined $i) {                    unless (defined $i) {
4898                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!cp ('t249');
4899                        !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4900                      ## Ignore the token                      ## Ignore the token
4901                      !!!next-token;                      !!!next-token;
4902                      redo B;                      redo B;
# Line 4091  sub _tree_construction_main ($) { Line 4908  sub _tree_construction_main ($) {
4908                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4909                    my $node = $self->{open_elements}->[$_];                    my $node = $self->{open_elements}->[$_];
4910                    if ($node->[1] eq 'tr') {                    if ($node->[1] eq 'tr') {
4911                        !!!cp ('t250');
4912                      $i = $_;                      $i = $_;
4913                      last INSCOPE;                      last INSCOPE;
4914                    } elsif ({                    } elsif ({
4915                              table => 1, html => 1,                              table => 1, html => 1,
4916                             }->{$node->[1]}) {                             }->{$node->[1]}) {
4917                        !!!cp ('t251');
4918                      last INSCOPE;                      last INSCOPE;
4919                    }                    }
4920                  } # INSCOPE                  } # INSCOPE
4921                    unless (defined $i) {                    unless (defined $i) {
4922                      !!!parse-error (type => 'unmatched end tag:tr');                      !!!cp ('t252');
4923                        !!!parse-error (type => 'unmatched end tag:tr', token => $token);
4924                      ## Ignore the token                      ## Ignore the token
4925                      !!!next-token;                      !!!next-token;
4926                      redo B;                      redo B;
# Line 4110  sub _tree_construction_main ($) { Line 4930  sub _tree_construction_main ($) {
4930                  while (not {                  while (not {
4931                    tr => 1, html => 1,                    tr => 1, html => 1,
4932                  }->{$self->{open_elements}->[-1]->[1]}) {                  }->{$self->{open_elements}->[-1]->[1]}) {
4933                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!cp ('t253');
4934    ## ISSUE: Can this case be reached?
4935                    pop @{$self->{open_elements}};                    pop @{$self->{open_elements}};
4936                  }                  }
4937                                    
# Line 4124  sub _tree_construction_main ($) { Line 4945  sub _tree_construction_main ($) {
4945                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4946                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
4947                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
4948                      !!!cp ('t254');
4949                    $i = $_;                    $i = $_;
4950                    last INSCOPE;                    last INSCOPE;
4951                  } elsif ({                  } elsif ({
4952                            table => 1, html => 1,                            table => 1, html => 1,
4953                           }->{$node->[1]}) {                           }->{$node->[1]}) {
4954                      !!!cp ('t255');
4955                    last INSCOPE;                    last INSCOPE;
4956                  }                  }
4957                } # INSCOPE                } # INSCOPE
4958                unless (defined $i) {                unless (defined $i) {
4959                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t256');
4960                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4961                  ## Ignore the token                  ## Ignore the token
4962                  !!!next-token;                  !!!next-token;
4963                  redo B;                  redo B;
# Line 4143  sub _tree_construction_main ($) { Line 4967  sub _tree_construction_main ($) {
4967                while (not {                while (not {
4968                  tbody => 1, tfoot => 1, thead => 1, html => 1,                  tbody => 1, tfoot => 1, thead => 1, html => 1,
4969                }->{$self->{open_elements}->[-1]->[1]}) {                }->{$self->{open_elements}->[-1]->[1]}) {
4970                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t257');
4971    ## ISSUE: Can this case be reached?
4972                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
4973                }                }
4974    
# Line 4157  sub _tree_construction_main ($) { Line 4982  sub _tree_construction_main ($) {
4982                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
4983                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
4984                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4985                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t258');
4986                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4987                ## Ignore the token                ## Ignore the token
4988                !!!next-token;                !!!next-token;
4989                redo B;                redo B;
4990          } else {          } else {
4991            !!!parse-error (type => 'in table:/'.$token->{tag_name});            !!!cp ('t259');
4992              !!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token);
4993    
4994            $insert = $insert_to_foster;            $insert = $insert_to_foster;
4995            #            #
4996          }          }
4997          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4998            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
4999                    @{$self->{open_elements}} == 1) { # redundant, maybe
5000              !!!parse-error (type => 'in body:#eof', token => $token);
5001              !!!cp ('t259.1');
5002              #
5003            } else {
5004              !!!cp ('t259.2');
5005              #
5006            }
5007    
5008            ## Stop parsing
5009            last B;
5010        } else {        } else {
5011          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5012        }        }
# Line 4175  sub _tree_construction_main ($) { Line 5015  sub _tree_construction_main ($) {
5015              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5016                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5017                unless (length $token->{data}) {                unless (length $token->{data}) {
5018                    !!!cp ('t260');
5019                  !!!next-token;                  !!!next-token;
5020                  redo B;                  redo B;
5021                }                }
5022              }              }
5023                            
5024                !!!cp ('t261');
5025              #              #
5026            } elsif ($token->{type} == START_TAG_TOKEN) {            } elsif ($token->{type} == START_TAG_TOKEN) {
5027              if ($token->{tag_name} eq 'col') {              if ($token->{tag_name} eq 'col') {
5028                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!cp ('t262');
5029                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5030                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
5031                !!!next-token;                !!!next-token;
5032                redo B;                redo B;
5033              } else {              } else {
5034                  !!!cp ('t263');
5035                #                #
5036              }              }
5037            } elsif ($token->{type} == END_TAG_TOKEN) {            } elsif ($token->{type} == END_TAG_TOKEN) {
5038              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
5039                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] eq 'html') {
5040                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!cp ('t264');
5041                    !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5042                  ## Ignore the token                  ## Ignore the token
5043                  !!!next-token;                  !!!next-token;
5044                  redo B;                  redo B;
5045                } else {                } else {
5046                    !!!cp ('t265');
5047                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
5048                  $self->{insertion_mode} = IN_TABLE_IM;                  $self->{insertion_mode} = IN_TABLE_IM;
5049                  !!!next-token;                  !!!next-token;
5050                  redo B;                              redo B;            
5051                }                }
5052              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
5053                !!!parse-error (type => 'unmatched end tag:col');                !!!cp ('t266');
5054                  !!!parse-error (type => 'unmatched end tag:col', token => $token);
5055                ## Ignore the token                ## Ignore the token
5056                !!!next-token;                !!!next-token;
5057                redo B;                redo B;
5058              } else {              } else {
5059                  !!!cp ('t267');
5060                #                #
5061              }              }
5062            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5063              #          if ($self->{open_elements}->[-1]->[1] eq 'html' or
5064            }              @{$self->{open_elements}} == 1) { # redundant, maybe
5065              !!!cp ('t270.2');
5066              ## Stop parsing.
5067              last B;
5068            } else {
5069              ## NOTE: As if </colgroup>.
5070              !!!cp ('t270.1');
5071              pop @{$self->{open_elements}}; # colgroup
5072              $self->{insertion_mode} = IN_TABLE_IM;
5073              ## Reprocess.
5074              redo B;
5075            }
5076          } else {
5077            die "$0: $token->{type}: Unknown token type";
5078          }
5079    
5080            ## As if </colgroup>            ## As if </colgroup>
5081            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] eq 'html') {
5082              !!!parse-error (type => 'unmatched end tag:colgroup');              !!!cp ('t269');
5083    ## TODO: Wrong error type?
5084                !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5085              ## Ignore the token              ## Ignore the token
5086              !!!next-token;              !!!next-token;
5087              redo B;              redo B;
5088            } else {            } else {
5089                !!!cp ('t270');
5090              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
5091              $self->{insertion_mode} = IN_TABLE_IM;              $self->{insertion_mode} = IN_TABLE_IM;
5092              ## reprocess              ## reprocess
5093              redo B;              redo B;
5094            }            }
5095      } elsif ($self->{insertion_mode} == IN_SELECT_IM) {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
5096        if ($token->{type} == CHARACTER_TOKEN) {        if ($token->{type} == CHARACTER_TOKEN) {
5097            !!!cp ('t271');
5098          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5099          !!!next-token;          !!!next-token;
5100          redo B;          redo B;
5101        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5102              if ($token->{tag_name} eq 'option') {              if ($token->{tag_name} eq 'option') {
5103                if ($self->{open_elements}->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5104                    !!!cp ('t272');
5105                  ## As if </option>                  ## As if </option>
5106                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5107                  } else {
5108                    !!!cp ('t273');
5109                }                }
5110    
5111                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5112                !!!next-token;                !!!next-token;
5113                redo B;                redo B;
5114              } elsif ($token->{tag_name} eq 'optgroup') {              } elsif ($token->{tag_name} eq 'optgroup') {
5115                if ($self->{open_elements}->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5116                    !!!cp ('t274');
5117                  ## As if </option>                  ## As if </option>
5118                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5119                  } else {
5120                    !!!cp ('t275');
5121                }                }
5122    
5123                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
5124                    !!!cp ('t276');
5125                  ## As if </optgroup>                  ## As if </optgroup>
5126                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5127                  } else {
5128                    !!!cp ('t277');
5129                }                }
5130    
5131                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5132                !!!next-token;                !!!next-token;
5133                redo B;                redo B;
5134              } elsif ($token->{tag_name} eq 'select') {          } elsif ($token->{tag_name} eq 'select' or
5135                !!!parse-error (type => 'not closed:select');                   $token->{tag_name} eq 'input' or
5136                ## As if </select> instead                   ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5137                      {
5138                       caption => 1, table => 1,
5139                       tbody => 1, tfoot => 1, thead => 1,
5140                       tr => 1, td => 1, th => 1,
5141                      }->{$token->{tag_name}})) {
5142              ## TODO: The type below is not good - <select> is replaced by </select>
5143              !!!parse-error (type => 'not closed:select', token => $token);
5144              ## NOTE: As if the token were </select> (<select> case) or
5145              ## as if there were </select> (otherwise).
5146                ## have an element in table scope                ## have an element in table scope
5147                my $i;                my $i;
5148                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5149                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5150                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq 'select') {
5151                      !!!cp ('t278');
5152                    $i = $_;                    $i = $_;
5153                    last INSCOPE;                    last INSCOPE;
5154                  } elsif ({                  } elsif ({
5155                            table => 1, html => 1,                            table => 1, html => 1,
5156                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5157                      !!!cp ('t279');
5158                    last INSCOPE;                    last INSCOPE;
5159                  }                  }
5160                } # INSCOPE                } # INSCOPE
5161                unless (defined $i) {                unless (defined $i) {
5162                  !!!parse-error (type => 'unmatched end tag:select');                  !!!cp ('t280');
5163                    !!!parse-error (type => 'unmatched end tag:select', token => $token);
5164                  ## Ignore the token                  ## Ignore the token
5165                  !!!next-token;                  !!!next-token;
5166                  redo B;                  redo B;
5167                }                }
5168                                
5169                  !!!cp ('t281');
5170                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5171    
5172                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5173    
5174                !!!next-token;            if ($token->{tag_name} eq 'select') {
5175                redo B;              !!!cp ('t281.2');
5176                !!!next-token;
5177                redo B;
5178              } else {
5179                !!!cp ('t281.1');
5180                ## Reprocess the token.
5181                redo B;
5182              }
5183          } else {          } else {
5184            !!!parse-error (type => 'in select:'.$token->{tag_name});            !!!cp ('t282');
5185              !!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token);
5186            ## Ignore the token            ## Ignore the token
5187            !!!next-token;            !!!next-token;
5188            redo B;            redo B;
# Line 4295  sub _tree_construction_main ($) { Line 5191  sub _tree_construction_main ($) {
5191              if ($token->{tag_name} eq 'optgroup') {              if ($token->{tag_name} eq 'optgroup') {
5192                if ($self->{open_elements}->[-1]->[1] eq 'option' and                if ($self->{open_elements}->[-1]->[1] eq 'option' and
5193                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {
5194                    !!!cp ('t283');
5195                  ## As if </option>                  ## As if </option>
5196                  splice @{$self->{open_elements}}, -2;                  splice @{$self->{open_elements}}, -2;
5197                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
5198                    !!!cp ('t284');
5199                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5200                } else {                } else {
5201                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t285');
5202                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5203                  ## Ignore the token                  ## Ignore the token
5204                }                }
5205                !!!next-token;                !!!next-token;
5206                redo B;                redo B;
5207              } elsif ($token->{tag_name} eq 'option') {              } elsif ($token->{tag_name} eq 'option') {
5208                if ($self->{open_elements}->[-1]->[1] eq 'option') {                if ($self->{open_elements}->[-1]->[1] eq 'option') {
5209                    !!!cp ('t286');
5210                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5211                } else {                } else {
5212                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t287');
5213                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5214                  ## Ignore the token                  ## Ignore the token
5215                }                }
5216                !!!next-token;                !!!next-token;
# Line 4320  sub _tree_construction_main ($) { Line 5221  sub _tree_construction_main ($) {
5221                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5222                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5223                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
5224                      !!!cp ('t288');
5225                    $i = $_;                    $i = $_;
5226                    last INSCOPE;                    last INSCOPE;
5227                  } elsif ({                  } elsif ({
5228                            table => 1, html => 1,                            table => 1, html => 1,
5229                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5230                      !!!cp ('t289');
5231                    last INSCOPE;                    last INSCOPE;
5232                  }                  }
5233                } # INSCOPE                } # INSCOPE
5234                unless (defined $i) {                unless (defined $i) {
5235                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t290');
5236                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5237                  ## Ignore the token                  ## Ignore the token
5238                  !!!next-token;                  !!!next-token;
5239                  redo B;                  redo B;
5240                }                }
5241                                
5242                  !!!cp ('t291');
5243                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5244    
5245                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
5246    
5247                !!!next-token;                !!!next-token;
5248                redo B;                redo B;
5249              } elsif ({          } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
5250                        caption => 1, table => 1, tbody => 1,                   {
5251                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                    caption => 1, table => 1, tbody => 1,
5252                       }->{$token->{tag_name}}) {                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
5253                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                   }->{$token->{tag_name}}) {
5254    ## TODO: The following is wrong?
5255                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5256                                
5257                ## have an element in table scope                ## have an element in table scope
5258                my $i;                my $i;
5259                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5260                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5261                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] eq $token->{tag_name}) {
5262                      !!!cp ('t292');
5263                    $i = $_;                    $i = $_;
5264                    last INSCOPE;                    last INSCOPE;
5265                  } elsif ({                  } elsif ({
5266                            table => 1, html => 1,                            table => 1, html => 1,
5267                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5268                      !!!cp ('t293');
5269                    last INSCOPE;                    last INSCOPE;
5270                  }                  }
5271                } # INSCOPE                } # INSCOPE
5272                unless (defined $i) {                unless (defined $i) {
5273                    !!!cp ('t294');
5274                  ## Ignore the token                  ## Ignore the token
5275                  !!!next-token;                  !!!next-token;
5276                  redo B;                  redo B;
# Line 4372  sub _tree_construction_main ($) { Line 5282  sub _tree_construction_main ($) {
5282                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5283                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
5284                  if ($node->[1] eq 'select') {                  if ($node->[1] eq 'select') {
5285                      !!!cp ('t295');
5286                    $i = $_;                    $i = $_;
5287                    last INSCOPE;                    last INSCOPE;
5288                  } elsif ({                  } elsif ({
5289                            table => 1, html => 1,                            table => 1, html => 1,
5290                           }->{$node->[1]}) {                           }->{$node->[1]}) {
5291    ## ISSUE: Can this state be reached?
5292                      !!!cp ('t296');
5293                    last INSCOPE;                    last INSCOPE;
5294                  }                  }
5295                } # INSCOPE                } # INSCOPE
5296                unless (defined $i) {                unless (defined $i) {
5297                  !!!parse-error (type => 'unmatched end tag:select');                  !!!cp ('t297');
5298    ## TODO: The following error type is correct?
5299                    !!!parse-error (type => 'unmatched end tag:select', token => $token);
5300                  ## Ignore the </select> token                  ## Ignore the </select> token
5301                  !!!next-token; ## TODO: ok?                  !!!next-token; ## TODO: ok?
5302                  redo B;                  redo B;
5303                }                }
5304                                
5305                  !!!cp ('t298');
5306                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
5307    
5308                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
# Line 4394  sub _tree_construction_main ($) { Line 5310  sub _tree_construction_main ($) {
5310                ## reprocess                ## reprocess
5311                redo B;                redo B;
5312          } else {          } else {
5313            !!!parse-error (type => 'in select:/'.$token->{tag_name});            !!!cp ('t299');
5314              !!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token);
5315            ## Ignore the token            ## Ignore the token
5316            !!!next-token;            !!!next-token;
5317            redo B;            redo B;
5318          }          }
5319          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5320            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5321                    @{$self->{open_elements}} == 1) { # redundant, maybe
5322              !!!cp ('t299.1');
5323              !!!parse-error (type => 'in body:#eof', token => $token);
5324            } else {
5325              !!!cp ('t299.2');
5326            }
5327    
5328            ## Stop parsing.
5329            last B;
5330        } else {        } else {
5331          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5332        }        }
# Line 4412  sub _tree_construction_main ($) { Line 5340  sub _tree_construction_main ($) {
5340            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5341                        
5342            unless (length $token->{data}) {            unless (length $token->{data}) {
5343                !!!cp ('t300');
5344              !!!next-token;              !!!next-token;
5345              redo B;              redo B;
5346            }            }
5347          }          }
5348                    
5349          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5350            !!!parse-error (type => 'after html:#character');            !!!cp ('t301');
5351              !!!parse-error (type => 'after html:#character', token => $token);
5352    
5353            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
5354            } else {
5355              !!!cp ('t302');
5356          }          }
5357                    
5358          ## "after body" insertion mode          ## "after body" insertion mode
5359          !!!parse-error (type => 'after body:#character');          !!!parse-error (type => 'after body:#character', token => $token);
5360    
5361          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
5362          ## reprocess          ## reprocess
5363          redo B;          redo B;
5364        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5365          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5366            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!cp ('t303');
5367              !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
5368                        
5369            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
5370            } else {
5371              !!!cp ('t304');
5372          }          }
5373    
5374          ## "after body" insertion mode          ## "after body" insertion mode
5375          !!!parse-error (type => 'after body:'.$token->{tag_name});          !!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token);
5376    
5377          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
5378          ## reprocess          ## reprocess
5379          redo B;          redo B;
5380        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5381          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5382            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!cp ('t305');
5383              !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
5384                        
5385            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
5386            ## Reprocess in the "main" phase, "after body" insertion mode...            ## Reprocess in the "after body" insertion mode.
5387            } else {
5388              !!!cp ('t306');
5389          }          }
5390    
5391          ## "after body" insertion mode          ## "after body" insertion mode
5392          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
5393            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
5394              !!!parse-error (type => 'unmatched end tag:html');              !!!cp ('t307');
5395                !!!parse-error (type => 'unmatched end tag:html', token => $token);
5396              ## Ignore the token              ## Ignore the token
5397              !!!next-token;              !!!next-token;
5398              redo B;              redo B;
5399            } else {            } else {
5400                !!!cp ('t308');
5401              $self->{insertion_mode} = AFTER_HTML_BODY_IM;              $self->{insertion_mode} = AFTER_HTML_BODY_IM;
5402              !!!next-token;              !!!next-token;
5403              redo B;              redo B;
5404            }            }
5405          } else {          } else {
5406            !!!parse-error (type => 'after body:/'.$token->{tag_name});            !!!cp ('t309');
5407              !!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token);
5408    
5409            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
5410            ## reprocess            ## reprocess
5411            redo B;            redo B;
5412          }          }
5413          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5414            !!!cp ('t309.2');
5415            ## Stop parsing
5416            last B;
5417        } else {        } else {
5418          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5419        }        }
# Line 4478  sub _tree_construction_main ($) { Line 5423  sub _tree_construction_main ($) {
5423            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
5424                        
5425            unless (length $token->{data}) {            unless (length $token->{data}) {
5426                !!!cp ('t310');
5427              !!!next-token;              !!!next-token;
5428              redo B;              redo B;
5429            }            }
# Line 4485  sub _tree_construction_main ($) { Line 5431  sub _tree_construction_main ($) {
5431                    
5432          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
5433            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5434              !!!parse-error (type => 'in frameset:#character');              !!!cp ('t311');
5435                !!!parse-error (type => 'in frameset:#character', token => $token);
5436            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
5437              !!!parse-error (type => 'after frameset:#character');              !!!cp ('t312');
5438                !!!parse-error (type => 'after frameset:#character', token => $token);
5439            } else { # "after html frameset"            } else { # "after html frameset"
5440              !!!parse-error (type => 'after html:#character');              !!!cp ('t313');
5441                !!!parse-error (type => 'after html:#character', token => $token);
5442    
5443              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5444              ## Reprocess in the "main" phase, "after frameset"...              ## Reprocess in the "after frameset" insertion mode.
5445              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
5446            }            }
5447                        
5448            ## Ignore the token.            ## Ignore the token.
5449            if (length $token->{data}) {            if (length $token->{data}) {
5450                !!!cp ('t314');
5451              ## reprocess the rest of characters              ## reprocess the rest of characters
5452            } else {            } else {
5453                !!!cp ('t315');
5454              !!!next-token;              !!!next-token;
5455            }            }
5456            redo B;            redo B;
# Line 4508  sub _tree_construction_main ($) { Line 5459  sub _tree_construction_main ($) {
5459          die qq[$0: Character "$token->{data}"];          die qq[$0: Character "$token->{data}"];
5460        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5461          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5462            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!cp ('t316');
5463              !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
5464    
5465            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
5466            ## Process in the "main" phase, "after frameset" insertion mode...            ## Process in the "after frameset" insertion mode.
5467          }          } else {
5468              !!!cp ('t317');
5469            }
5470    
5471          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
5472              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
5473            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!cp ('t318');
5474              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5475            !!!next-token;            !!!next-token;
5476            redo B;            redo B;
5477          } elsif ($token->{tag_name} eq 'frame' and          } elsif ($token->{tag_name} eq 'frame' and
5478                   $self->{insertion_mode} == IN_FRAMESET_IM) {                   $self->{insertion_mode} == IN_FRAMESET_IM) {
5479            !!!insert-element ($token->{tag_name}, $token->{attributes});            !!!cp ('t319');
5480              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
5481            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
5482            !!!next-token;            !!!next-token;
5483            redo B;            redo B;
5484          } elsif ($token->{tag_name} eq 'noframes') {          } elsif ($token->{tag_name} eq 'noframes') {
5485              !!!cp ('t320');
5486            ## NOTE: As if in body.            ## NOTE: As if in body.
5487            $parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current);            $parse_rcdata->(CDATA_CONTENT_MODEL);
5488            redo B;            redo B;
5489          } else {          } else {
5490            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5491              !!!parse-error (type => 'in frameset:'.$token->{tag_name});              !!!cp ('t321');
5492                !!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token);
5493            } else {            } else {
5494              !!!parse-error (type => 'after frameset:'.$token->{tag_name});              !!!cp ('t322');
5495                !!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token);
5496            }            }
5497            ## Ignore the token            ## Ignore the token
5498            !!!next-token;            !!!next-token;
# Line 4541  sub _tree_construction_main ($) { Line 5500  sub _tree_construction_main ($) {
5500          }          }
5501        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5502          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5503            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!cp ('t323');
5504              !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
5505    
5506            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
5507            ## Process in the "main" phase, "after frameset" insertion mode...            ## Process in the "after frameset" insertion mode.
5508            } else {
5509              !!!cp ('t324');
5510          }          }
5511    
5512          if ($token->{tag_name} eq 'frameset' and          if ($token->{tag_name} eq 'frameset' and
5513              $self->{insertion_mode} == IN_FRAMESET_IM) {              $self->{insertion_mode} == IN_FRAMESET_IM) {
5514            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] eq 'html' and
5515                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
5516              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t325');
5517                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5518              ## Ignore the token              ## Ignore the token
5519              !!!next-token;              !!!next-token;
5520            } else {            } else {
5521                !!!cp ('t326');
5522              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
5523              !!!next-token;              !!!next-token;
5524            }            }
5525    
5526            if (not defined $self->{inner_html_node} and            if (not defined $self->{inner_html_node} and
5527                $self->{open_elements}->[-1]->[1] ne 'frameset') {                $self->{open_elements}->[-1]->[1] ne 'frameset') {
5528                !!!cp ('t327');
5529              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5530              } else {
5531                !!!cp ('t328');
5532            }            }
5533            redo B;            redo B;
5534          } elsif ($token->{tag_name} eq 'html' and          } elsif ($token->{tag_name} eq 'html' and
5535                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
5536              !!!cp ('t329');
5537            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
5538            !!!next-token;            !!!next-token;
5539            redo B;            redo B;
5540          } else {          } else {
5541            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5542              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});              !!!cp ('t330');
5543                !!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token);
5544            } else {            } else {
5545              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});              !!!cp ('t331');
5546                !!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token);
5547            }            }
5548            ## Ignore the token            ## Ignore the token
5549            !!!next-token;            !!!next-token;
5550            redo B;            redo B;
5551          }          }
5552          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
5553            unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5554                    @{$self->{open_elements}} == 1) { # redundant, maybe
5555              !!!cp ('t331.1');
5556              !!!parse-error (type => 'in body:#eof', token => $token);
5557            } else {
5558              !!!cp ('t331.2');
5559            }
5560            
5561            ## Stop parsing
5562            last B;
5563        } else {        } else {
5564          die "$0: $token->{type}: Unknown token type";          die "$0: $token->{type}: Unknown token type";
5565        }        }
# Line 4591  sub _tree_construction_main ($) { Line 5572  sub _tree_construction_main ($) {
5572      ## "in body" insertion mode      ## "in body" insertion mode
5573      if ($token->{type} == START_TAG_TOKEN) {      if ($token->{type} == START_TAG_TOKEN) {
5574        if ($token->{tag_name} eq 'script') {        if ($token->{tag_name} eq 'script') {
5575            !!!cp ('t332');
5576          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5577          $script_start_tag->($insert);          $script_start_tag->();
5578          redo B;          redo B;
5579        } elsif ($token->{tag_name} eq 'style') {        } elsif ($token->{tag_name} eq 'style') {
5580            !!!cp ('t333');
5581          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5582          $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);          $parse_rcdata->(CDATA_CONTENT_MODEL);
5583          redo B;          redo B;
5584        } elsif ({        } elsif ({
5585                  base => 1, link => 1,                  base => 1, link => 1,
5586                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5587            !!!cp ('t334');
5588          ## 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
5589          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5590          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.          pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
5591          !!!next-token;          !!!next-token;
5592          redo B;          redo B;
5593        } elsif ($token->{tag_name} eq 'meta') {        } elsif ($token->{tag_name} eq 'meta') {
5594          ## 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
5595          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5596          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.
5597    
5598          unless ($self->{confident}) {          unless ($self->{confident}) {
5599            if ($token->{attributes}->{charset}) { ## TODO: And if supported            if ($token->{attributes}->{charset}) { ## TODO: And if supported
5600                !!!cp ('t335');
5601              $self->{change_encoding}              $self->{change_encoding}
5602                  ->($self, $token->{attributes}->{charset}->{value});                  ->($self, $token->{attributes}->{charset}->{value}, $token);
5603                            
5604              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5605                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
# Line 4627  sub _tree_construction_main ($) { Line 5612  sub _tree_construction_main ($) {
5612                      [\x09-\x0D\x20]*=                      [\x09-\x0D\x20]*=
5613                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|                      [\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
5614                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {                      ([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) {
5615                  !!!cp ('t336');
5616                $self->{change_encoding}                $self->{change_encoding}
5617                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3);                    ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
5618                $meta_el->[0]->get_attribute_node_ns (undef, 'content')                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5619                    ->set_user_data (manakai_has_reference =>                    ->set_user_data (manakai_has_reference =>
5620                                         $token->{attributes}->{content}                                         $token->{attributes}->{content}
# Line 4637  sub _tree_construction_main ($) { Line 5623  sub _tree_construction_main ($) {
5623            }            }
5624          } else {          } else {
5625            if ($token->{attributes}->{charset}) {            if ($token->{attributes}->{charset}) {
5626                !!!cp ('t337');
5627              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')              $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
5628                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
5629                                       $token->{attributes}->{charset}                                       $token->{attributes}->{charset}
5630                                           ->{has_reference});                                           ->{has_reference});
5631            }            }
5632            if ($token->{attributes}->{content}) {            if ($token->{attributes}->{content}) {
5633                !!!cp ('t338');
5634              $meta_el->[0]->get_attribute_node_ns (undef, 'content')              $meta_el->[0]->get_attribute_node_ns (undef, 'content')
5635                  ->set_user_data (manakai_has_reference =>                  ->set_user_data (manakai_has_reference =>
5636                                       $token->{attributes}->{content}                                       $token->{attributes}->{content}
# Line 4653  sub _tree_construction_main ($) { Line 5641  sub _tree_construction_main ($) {
5641          !!!next-token;          !!!next-token;
5642          redo B;          redo B;
5643        } elsif ($token->{tag_name} eq 'title') {        } elsif ($token->{tag_name} eq 'title') {
5644          !!!parse-error (type => 'in body:title');          !!!cp ('t341');
5645          ## NOTE: This is an "as if in head" code clone          ## NOTE: This is an "as if in head" code clone
5646          $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]);  
           }  
         });  
5647          redo B;          redo B;
5648        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
5649          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body:body', token => $token);
5650                                
5651          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
5652              $self->{open_elements}->[1]->[1] ne 'body') {              $self->{open_elements}->[1]->[1] ne 'body') {
5653              !!!cp ('t342');
5654            ## Ignore the token            ## Ignore the token
5655          } else {          } else {
5656            my $body_el = $self->{open_elements}->[1]->[0];            my $body_el = $self->{open_elements}->[1]->[0];
5657            for my $attr_name (keys %{$token->{attributes}}) {            for my $attr_name (keys %{$token->{attributes}}) {
5658              unless ($body_el->has_attribute_ns (undef, $attr_name)) {              unless ($body_el->has_attribute_ns (undef, $attr_name)) {
5659                  !!!cp ('t343');
5660                $body_el->set_attribute_ns                $body_el->set_attribute_ns
5661                  (undef, [undef, $attr_name],                  (undef, [undef, $attr_name],
5662                   $token->{attributes}->{$attr_name}->{value});                   $token->{attributes}->{$attr_name}->{value});
# Line 4683  sub _tree_construction_main ($) { Line 5667  sub _tree_construction_main ($) {
5667          redo B;          redo B;
5668        } elsif ({        } elsif ({
5669                  address => 1, blockquote => 1, center => 1, dir => 1,                  address => 1, blockquote => 1, center => 1, dir => 1,
5670                  div => 1, dl => 1, fieldset => 1, listing => 1,                  div => 1, dl => 1, fieldset => 1,
5671                    h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
5672                  menu => 1, ol => 1, p => 1, ul => 1,                  menu => 1, ol => 1, p => 1, ul => 1,
5673                  pre => 1,                  pre => 1, listing => 1,
5674                    form => 1,
5675                    table => 1,
5676                    hr => 1,
5677                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5678            if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
5679              !!!cp ('t350');
5680              !!!parse-error (type => 'in form:form', token => $token);
5681              ## Ignore the token
5682              !!!next-token;
5683              redo B;
5684            }
5685    
5686          ## has a p element in scope          ## has a p element in scope
5687          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5688            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5689                !!!cp ('t344');
5690              !!!back-token;              !!!back-token;
5691              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
5692                          line => $token->{line}, column => $token->{column}};
5693              redo B;              redo B;
5694            } elsif ({            } elsif ({
5695                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5696                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5697                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5698                !!!cp ('t345');
5699              last INSCOPE;              last INSCOPE;
5700            }            }
5701          } # INSCOPE          } # INSCOPE
5702                        
5703          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5704          if ($token->{tag_name} eq 'pre') {          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
5705            !!!next-token;            !!!next-token;
5706            if ($token->{type} == CHARACTER_TOKEN) {            if ($token->{type} == CHARACTER_TOKEN) {
5707              $token->{data} =~ s/^\x0A//;              $token->{data} =~ s/^\x0A//;
5708              unless (length $token->{data}) {              unless (length $token->{data}) {
5709                  !!!cp ('t346');
5710                !!!next-token;                !!!next-token;
5711                } else {
5712                  !!!cp ('t349');
5713              }              }
5714              } else {
5715                !!!cp ('t348');
5716            }            }
5717          } else {          } elsif ($token->{tag_name} eq 'form') {
5718              !!!cp ('t347.1');
5719              $self->{form_element} = $self->{open_elements}->[-1]->[0];
5720    
5721            !!!next-token;            !!!next-token;
5722          }          } elsif ($token->{tag_name} eq 'table') {
5723          redo B;            !!!cp ('t382');
5724        } elsif ($token->{tag_name} eq 'form') {            push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
5725          if (defined $self->{form_element}) {            
5726            !!!parse-error (type => 'in form:form');            $self->{insertion_mode} = IN_TABLE_IM;
5727            ## Ignore the token  
5728              !!!next-token;
5729            } elsif ($token->{tag_name} eq 'hr') {
5730              !!!cp ('t386');
5731              pop @{$self->{open_elements}};
5732            
5733            !!!next-token;            !!!next-token;
           redo B;  
5734          } else {          } else {
5735            ## has a p element in scope            !!!cp ('t347');
           INSCOPE: for (reverse @{$self->{open_elements}}) {  
             if ($_->[1] eq 'p') {  
               !!!back-token;  
               $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
               redo B;  
             } elsif ({  
                       table => 1, caption => 1, td => 1, th => 1,  
                       button => 1, marquee => 1, object => 1, html => 1,  
                      }->{$_->[1]}) {  
               last INSCOPE;  
             }  
           } # INSCOPE  
               
           !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           $self->{form_element} = $self->{open_elements}->[-1]->[0];  
5736            !!!next-token;            !!!next-token;
           redo B;  
5737          }          }
       } elsif ($token->{tag_name} eq 'li') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
             redo B;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## Step 1  
         my $i = -1;  
         my $node = $self->{open_elements}->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'li') {  
             if ($i != -1) {  
               !!!parse-error (type => 'end tag missing:'.  
                               $self->{open_elements}->[-1]->[1]);  
             }  
             splice @{$self->{open_elements}}, $i;  
             last LI;  
           }  
             
           ## Step 3  
           if (not $formatting_category->{$node->[1]} and  
               #not $phrasing_category->{$node->[1]} and  
               ($special_category->{$node->[1]} or  
                $scoping_category->{$node->[1]}) and  
               $node->[1] ne 'address' and $node->[1] ne 'div') {  
             last LI;  
           }  
             
           ## Step 4  
           $i--;  
           $node = $self->{open_elements}->[$i];  
           redo LI;  
         } # LI  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         !!!next-token;  
5738          redo B;          redo B;
5739        } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {        } elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) {
5740          ## has a p element in scope          ## has a p element in scope
5741          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5742            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5743                !!!cp ('t353');
5744              !!!back-token;              !!!back-token;
5745              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
5746                          line => $token->{line}, column => $token->{column}};
5747              redo B;              redo B;
5748            } elsif ({            } elsif ({
5749                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5750                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5751                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5752                !!!cp ('t354');
5753              last INSCOPE;              last INSCOPE;
5754            }            }
5755          } # INSCOPE          } # INSCOPE
# Line 4805  sub _tree_construction_main ($) { Line 5757  sub _tree_construction_main ($) {
5757          ## Step 1          ## Step 1
5758          my $i = -1;          my $i = -1;
5759          my $node = $self->{open_elements}->[$i];          my $node = $self->{open_elements}->[$i];
5760            my $li_or_dtdd = {li => {li => 1},
5761                              dt => {dt => 1, dd => 1},
5762                              dd => {dt => 1, dd => 1}}->{$token->{tag_name}};
5763          LI: {          LI: {
5764            ## Step 2            ## Step 2
5765            if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {            if ($li_or_dtdd->{$node->[1]}) {
5766              if ($i != -1) {              if ($i != -1) {
5767                !!!parse-error (type => 'end tag missing:'.                !!!cp ('t355');
5768                                $self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
5769                                  value => $self->{open_elements}->[-1]->[0]
5770                                      ->manakai_local_name,
5771                                  token => $token);
5772                } else {
5773                  !!!cp ('t356');
5774              }              }
5775              splice @{$self->{open_elements}}, $i;              splice @{$self->{open_elements}}, $i;
5776              last LI;              last LI;
5777              } else {
5778                !!!cp ('t357');
5779            }            }
5780                        
5781            ## Step 3            ## Step 3
# Line 4822  sub _tree_construction_main ($) { Line 5784  sub _tree_construction_main ($) {
5784                ($special_category->{$node->[1]} or                ($special_category->{$node->[1]} or
5785                 $scoping_category->{$node->[1]}) and                 $scoping_category->{$node->[1]}) and
5786                $node->[1] ne 'address' and $node->[1] ne 'div') {                $node->[1] ne 'address' and $node->[1] ne 'div') {
5787                !!!cp ('t358');
5788              last LI;              last LI;
5789            }            }
5790                        
5791              !!!cp ('t359');
5792            ## Step 4            ## Step 4
5793            $i--;            $i--;
5794            $node = $self->{open_elements}->[$i];            $node = $self->{open_elements}->[$i];
5795            redo LI;            redo LI;
5796          } # LI          } # LI
5797                        
5798          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5799          !!!next-token;          !!!next-token;
5800          redo B;          redo B;
5801        } elsif ($token->{tag_name} eq 'plaintext') {        } elsif ($token->{tag_name} eq 'plaintext') {
5802          ## has a p element in scope          ## has a p element in scope
5803          INSCOPE: for (reverse @{$self->{open_elements}}) {          INSCOPE: for (reverse @{$self->{open_elements}}) {
5804            if ($_->[1] eq 'p') {            if ($_->[1] eq 'p') {
5805                !!!cp ('t367');
5806              !!!back-token;              !!!back-token;
5807              $token = {type => END_TAG_TOKEN, tag_name => 'p'};              $token = {type => END_TAG_TOKEN, tag_name => 'p',
5808                          line => $token->{line}, column => $token->{column}};
5809              redo B;              redo B;
5810            } elsif ({            } elsif ({
5811                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5812                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5813                     }->{$_->[1]}) {                     }->{$_->[1]}) {
5814                !!!cp ('t368');
5815              last INSCOPE;              last INSCOPE;
5816            }            }
5817          } # INSCOPE          } # INSCOPE
5818                        
5819          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5820                        
5821          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
5822                        
5823          !!!next-token;          !!!next-token;
5824          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;  
5825        } elsif ($token->{tag_name} eq 'a') {        } elsif ($token->{tag_name} eq 'a') {
5826          AFE: for my $i (reverse 0..$#$active_formatting_elements) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
5827            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
5828            if ($node->[1] eq 'a') {            if ($node->[1] eq 'a') {
5829              !!!parse-error (type => 'in a:a');              !!!cp ('t371');
5830                !!!parse-error (type => 'in a:a', token => $token);
5831                            
5832              !!!back-token;              !!!back-token;
5833              $token = {type => END_TAG_TOKEN, tag_name => 'a'};              $token = {type => END_TAG_TOKEN, tag_name => 'a',
5834              $formatting_end_tag->($token->{tag_name});                        line => $token->{line}, column => $token->{column}};
5835                $formatting_end_tag->($token);
5836                            
5837              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
5838                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
5839                    !!!cp ('t372');
5840                  splice @$active_formatting_elements, $_, 1;                  splice @$active_formatting_elements, $_, 1;
5841                  last AFE2;                  last AFE2;
5842                }                }
5843              } # AFE2              } # AFE2
5844              OE: for (reverse 0..$#{$self->{open_elements}}) {              OE: for (reverse 0..$#{$self->{open_elements}}) {
5845                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
5846                    !!!cp ('t373');
5847                  splice @{$self->{open_elements}}, $_, 1;                  splice @{$self->{open_elements}}, $_, 1;
5848                  last OE;                  last OE;
5849                }                }
5850              } # OE              } # OE
5851              last AFE;              last AFE;
5852            } elsif ($node->[0] eq '#marker') {            } elsif ($node->[0] eq '#marker') {
5853                !!!cp ('t374');
5854              last AFE;              last AFE;
5855            }            }
5856          } # AFE          } # AFE
5857                        
5858          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5859    
5860          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5861          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
5862    
5863          !!!next-token;          !!!next-token;
5864          redo B;          redo B;
       } elsif ({  
                 b => 1, big => 1, em => 1, font => 1, i => 1,  
                 s => 1, small => 1, strile => 1,  
                 strong => 1, tt => 1, u => 1,  
                }->{$token->{tag_name}}) {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, $self->{open_elements}->[-1];  
           
         !!!next-token;  
         redo B;  
5865        } elsif ($token->{tag_name} eq 'nobr') {        } elsif ($token->{tag_name} eq 'nobr') {
5866          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5867    
# Line 4954  sub _tree_construction_main ($) { Line 5869  sub _tree_construction_main ($) {
5869          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5870            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5871            if ($node->[1] eq 'nobr') {            if ($node->[1] eq 'nobr') {
5872              !!!parse-error (type => 'in nobr:nobr');              !!!cp ('t376');
5873                !!!parse-error (type => 'in nobr:nobr', token => $token);
5874              !!!back-token;              !!!back-token;
5875              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};              $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
5876                          line => $token->{line}, column => $token->{column}};
5877              redo B;              redo B;
5878            } elsif ({            } elsif ({
5879                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5880                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5881                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5882                !!!cp ('t377');
5883              last INSCOPE;              last INSCOPE;
5884            }            }
5885          } # INSCOPE          } # INSCOPE
5886                    
5887          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5888          push @$active_formatting_elements, $self->{open_elements}->[-1];          push @$active_formatting_elements, $self->{open_elements}->[-1];
5889                    
5890          !!!next-token;          !!!next-token;
# Line 4976  sub _tree_construction_main ($) { Line 5894  sub _tree_construction_main ($) {
5894          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5895            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5896            if ($node->[1] eq 'button') {            if ($node->[1] eq 'button') {
5897              !!!parse-error (type => 'in button:button');              !!!cp ('t378');
5898                !!!parse-error (type => 'in button:button', token => $token);
5899              !!!back-token;              !!!back-token;
5900              $token = {type => END_TAG_TOKEN, tag_name => 'button'};              $token = {type => END_TAG_TOKEN, tag_name => 'button',
5901                          line => $token->{line}, column => $token->{column}};
5902              redo B;              redo B;
5903            } elsif ({            } elsif ({
5904                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
5905                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
5906                     }->{$node->[1]}) {                     }->{$node->[1]}) {
5907                !!!cp ('t379');
5908              last INSCOPE;              last INSCOPE;
5909            }            }
5910          } # INSCOPE          } # INSCOPE
5911                        
5912          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
5913                        
5914          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
5915          push @$active_formatting_elements, ['#marker', ''];  
5916            ## TODO: associate with $self->{form_element} if defined
5917    
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'marquee' or  
                $token->{tag_name} eq 'object') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
5918          push @$active_formatting_elements, ['#marker', ''];          push @$active_formatting_elements, ['#marker', ''];
5919            
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'xmp') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
         $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);  
         redo B;  
       } elsif ($token->{tag_name} eq 'table') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
             redo B;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
             
         $self->{insertion_mode} = IN_TABLE_IM;  
             
5920          !!!next-token;          !!!next-token;
5921          redo B;          redo B;
5922        } elsif ({        } elsif ({
5923                  area => 1, basefont => 1, bgsound => 1, br => 1,                  xmp => 1,
5924                  embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,                  iframe => 1,
5925                  image => 1,                  noembed => 1,
5926                    noframes => 1,
5927                    noscript => 0, ## TODO: 1 if scripting is enabled
5928                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5929          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'xmp') {
5930            !!!parse-error (type => 'image');            !!!cp ('t381');
5931            $token->{tag_name} = 'img';            $reconstruct_active_formatting_elements->($insert_to_current);
5932            } else {
5933              !!!cp ('t399');
5934          }          }
5935            ## NOTE: There is an "as if in body" code clone.
5936          ## NOTE: There is an "as if <br>" code clone.          $parse_rcdata->(CDATA_CONTENT_MODEL);
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         pop @{$self->{open_elements}};  
           
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'hr') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => END_TAG_TOKEN, tag_name => 'p'};  
             redo B;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         pop @{$self->{open_elements}};  
             
         !!!next-token;  
         redo B;  
       } elsif ($token->{tag_name} eq 'input') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         ## TODO: associate with $self->{form_element} if defined  
         pop @{$self->{open_elements}};  
           
         !!!next-token;  
5937          redo B;          redo B;
5938        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
5939          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex', token => $token);
5940                    
5941          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
5942              !!!cp ('t389');
5943            ## Ignore the token            ## Ignore the token
5944            !!!next-token;            !!!next-token;
5945            redo B;            redo B;
# Line 5093  sub _tree_construction_main ($) { Line 5953  sub _tree_construction_main ($) {
5953            delete $at->{prompt};            delete $at->{prompt};
5954            my @tokens = (            my @tokens = (
5955                          {type => START_TAG_TOKEN, tag_name => 'form',                          {type => START_TAG_TOKEN, tag_name => 'form',
5956                           attributes => $form_attrs},                           attributes => $form_attrs,
5957                          {type => START_TAG_TOKEN, tag_name => 'hr'},                           line => $token->{line}, column => $token->{column}},
5958                          {type => START_TAG_TOKEN, tag_name => 'p'},                          {type => START_TAG_TOKEN, tag_name => 'hr',
5959                          {type => START_TAG_TOKEN, tag_name => 'label'},                           line => $token->{line}, column => $token->{column}},
5960                            {type => START_TAG_TOKEN, tag_name => 'p',
5961                             line => $token->{line}, column => $token->{column}},
5962                            {type => START_TAG_TOKEN, tag_name => 'label',
5963                             line => $token->{line}, column => $token->{column}},
5964                         );                         );
5965            if ($prompt_attr) {            if ($prompt_attr) {
5966              push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}};              !!!cp ('t390');
5967                push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
5968                               #line => $token->{line}, column => $token->{column},
5969                              };
5970            } else {            } else {
5971                !!!cp ('t391');
5972              push @tokens, {type => CHARACTER_TOKEN,              push @tokens, {type => CHARACTER_TOKEN,
5973                             data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD                             data => 'This is a searchable index. Insert your search keywords here: ',
5974                               #line => $token->{line}, column => $token->{column},
5975                              }; # SHOULD
5976              ## TODO: make this configurable              ## TODO: make this configurable
5977            }            }
5978            push @tokens,            push @tokens,
5979                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at},                          {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at,
5980                             line => $token->{line}, column => $token->{column}},
5981                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD                          #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
5982                          {type => END_TAG_TOKEN, tag_name => 'label'},                          {type => END_TAG_TOKEN, tag_name => 'label',
5983                          {type => END_TAG_TOKEN, tag_name => 'p'},                           line => $token->{line}, column => $token->{column}},
5984                          {type => START_TAG_TOKEN, tag_name => 'hr'},                          {type => END_TAG_TOKEN, tag_name => 'p',
5985                          {type => END_TAG_TOKEN, tag_name => 'form'};                           line => $token->{line}, column => $token->{column}},
5986                            {type => START_TAG_TOKEN, tag_name => 'hr',
5987                             line => $token->{line}, column => $token->{column}},
5988                            {type => END_TAG_TOKEN, tag_name => 'form',
5989                             line => $token->{line}, column => $token->{column}};
5990            $token = shift @tokens;            $token = shift @tokens;
5991            !!!back-token (@tokens);            !!!back-token (@tokens);
5992            redo B;            redo B;
# Line 5119  sub _tree_construction_main ($) { Line 5994  sub _tree_construction_main ($) {
5994        } elsif ($token->{tag_name} eq 'textarea') {        } elsif ($token->{tag_name} eq 'textarea') {
5995          my $tag_name = $token->{tag_name};          my $tag_name = $token->{tag_name};
5996          my $el;          my $el;
5997          !!!create-element ($el, $token->{tag_name}, $token->{attributes});          !!!create-element ($el, $token->{tag_name}, $token->{attributes}, $token);
5998                    
5999          ## TODO: $self->{form_element} if defined          ## TODO: $self->{form_element} if defined
6000          $self->{content_model} = RCDATA_CONTENT_MODEL;          $self->{content_model} = RCDATA_CONTENT_MODEL;
# Line 5132  sub _tree_construction_main ($) { Line 6007  sub _tree_construction_main ($) {
6007          if ($token->{type} == CHARACTER_TOKEN) {          if ($token->{type} == CHARACTER_TOKEN) {
6008            $token->{data} =~ s/^\x0A//;            $token->{data} =~ s/^\x0A//;
6009            unless (length $token->{data}) {            unless (length $token->{data}) {
6010                !!!cp ('t392');
6011              !!!next-token;              !!!next-token;
6012              } else {
6013                !!!cp ('t393');
6014            }            }
6015            } else {
6016              !!!cp ('t394');
6017          }          }
6018          while ($token->{type} == CHARACTER_TOKEN) {          while ($token->{type} == CHARACTER_TOKEN) {
6019              !!!cp ('t395');
6020            $text .= $token->{data};            $text .= $token->{data};
6021            !!!next-token;            !!!next-token;
6022          }          }
6023          if (length $text) {          if (length $text) {
6024              !!!cp ('t396');
6025            $el->manakai_append_text ($text);            $el->manakai_append_text ($text);
6026          }          }
6027                    
# Line 5147  sub _tree_construction_main ($) { Line 6029  sub _tree_construction_main ($) {
6029                    
6030          if ($token->{type} == END_TAG_TOKEN and          if ($token->{type} == END_TAG_TOKEN and
6031              $token->{tag_name} eq $tag_name) {              $token->{tag_name} eq $tag_name) {
6032              !!!cp ('t397');
6033            ## Ignore the token            ## Ignore the token
6034          } else {          } else {
6035            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!cp ('t398');
6036              !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
6037          }          }
6038          !!!next-token;          !!!next-token;
6039          redo B;          redo B;
6040        } elsif ({        } elsif ({
                 iframe => 1,  
                 noembed => 1,  
                 noframes => 1,  
                 noscript => 0, ## TODO: 1 if scripting is enabled  
                }->{$token->{tag_name}}) {  
         ## NOTE: There is an "as if in body" code clone.  
         $parse_rcdata->(CDATA_CONTENT_MODEL, $insert);  
         redo B;  
       } elsif ($token->{tag_name} eq 'select') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           
         $self->{insertion_mode} = IN_SELECT_IM;  
         !!!next-token;  
         redo B;  
       } elsif ({  
6041                  caption => 1, col => 1, colgroup => 1, frame => 1,                  caption => 1, col => 1, colgroup => 1, frame => 1,
6042                  frameset => 1, head => 1, option => 1, optgroup => 1,                  frameset => 1, head => 1, option => 1, optgroup => 1,
6043                  tbody => 1, td => 1, tfoot => 1, th => 1,                  tbody => 1, td => 1, tfoot => 1, th => 1,
6044                  thead => 1, tr => 1,                  thead => 1, tr => 1,
6045                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6046          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!cp ('t401');
6047            !!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token);
6048          ## Ignore the token          ## Ignore the token
6049          !!!next-token;          !!!next-token;
6050          redo B;          redo B;
6051                    
6052          ## ISSUE: An issue on HTML5 new elements in the spec.          ## ISSUE: An issue on HTML5 new elements in the spec.
6053        } else {        } else {
6054            if ($token->{tag_name} eq 'image') {
6055              !!!cp ('t384');
6056              !!!parse-error (type => 'image', token => $token);
6057              $token->{tag_name} = 'img';
6058            } else {
6059              !!!cp ('t385');
6060            }
6061    
6062            ## NOTE: There is an "as if <br>" code clone.
6063          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6064                    
6065          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
6066    
6067            if ({
6068                 applet => 1, marquee => 1, object => 1,
6069                }->{$token->{tag_name}}) {
6070              !!!cp ('t380');
6071              push @$active_formatting_elements, ['#marker', ''];
6072            } elsif ({
6073                      b => 1, big => 1, em => 1, font => 1, i => 1,
6074                      s => 1, small => 1, strile => 1,
6075                      strong => 1, tt => 1, u => 1,
6076                     }->{$token->{tag_name}}) {
6077              !!!cp ('t375');
6078              push @$active_formatting_elements, $self->{open_elements}->[-1];
6079            } elsif ($token->{tag_name} eq 'input') {
6080              !!!cp ('t388');
6081              ## TODO: associate with $self->{form_element} if defined
6082              pop @{$self->{open_elements}};
6083            } elsif ({
6084                      area => 1, basefont => 1, bgsound => 1, br => 1,
6085                      embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
6086                      #image => 1,
6087                     }->{$token->{tag_name}}) {
6088              !!!cp ('t388.1');
6089              pop @{$self->{open_elements}};
6090            } elsif ($token->{tag_name} eq 'select') {
6091              ## TODO: associate with $self->{form_element} if defined
6092            
6093              if ($self->{insertion_mode} & TABLE_IMS or
6094                  $self->{insertion_mode} & BODY_TABLE_IMS or
6095                  $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
6096                !!!cp ('t400.1');
6097                $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
6098              } else {
6099                !!!cp ('t400.2');
6100                $self->{insertion_mode} = IN_SELECT_IM;
6101              }
6102            } else {
6103              !!!cp ('t402');
6104            }
6105                    
6106          !!!next-token;          !!!next-token;
6107          redo B;          redo B;
6108        }        }
6109      } elsif ($token->{type} == END_TAG_TOKEN) {      } elsif ($token->{type} == END_TAG_TOKEN) {
6110        if ($token->{tag_name} eq 'body') {        if ($token->{tag_name} eq 'body') {
6111          if (@{$self->{open_elements}} > 1 and          ## has a |body| element in scope
6112              $self->{open_elements}->[1]->[1] eq 'body') {          my $i;
6113            for (@{$self->{open_elements}}) {          INSCOPE: {
6114              unless ({            for (reverse @{$self->{open_elements}}) {
6115                         dd => 1, dt => 1, li => 1, p => 1, td => 1,              if ($_->[1] eq 'body') {
6116                         th => 1, tr => 1, body => 1, html => 1,                !!!cp ('t405');
6117                       tbody => 1, tfoot => 1, thead => 1,                $i = $_;
6118                      }->{$_->[1]}) {                last INSCOPE;
6119                !!!parse-error (type => 'not closed:'.$_->[1]);              } elsif ({
6120                          applet => 1, table => 1, caption => 1, td => 1, th => 1,
6121                          button => 1, marquee => 1, object => 1, html => 1,
6122                         }->{$_->[1]}) {
6123                  !!!cp ('t405.1');
6124                  last;
6125              }              }
6126            }            }
6127    
6128            $self->{insertion_mode} = AFTER_BODY_IM;            !!!parse-error (type => 'start tag not allowed',
6129            !!!next-token;                            value => $token->{tag_name}, token => $token);
6130            redo B;            ## NOTE: Ignore the token.
         } else {  
           !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
           ## Ignore the token  
6131            !!!next-token;            !!!next-token;
6132            redo B;            redo B;
6133            } # INSCOPE
6134    
6135            for (@{$self->{open_elements}}) {
6136              unless ({
6137                       dd => 1, dt => 1, li => 1, p => 1, td => 1,
6138                       th => 1, tr => 1, body => 1, html => 1,
6139                       tbody => 1, tfoot => 1, thead => 1,
6140                      }->{$_->[1]}) {
6141                !!!cp ('t403');
6142                !!!parse-error (type => 'not closed',
6143                                value => $_->[0]->manakai_local_name,
6144                                token => $token);
6145                last;
6146              } else {
6147                !!!cp ('t404');
6148              }
6149          }          }
6150    
6151            $self->{insertion_mode} = AFTER_BODY_IM;
6152            !!!next-token;
6153            redo B;
6154        } elsif ($token->{tag_name} eq 'html') {        } elsif ($token->{tag_name} eq 'html') {
6155            ## TODO: Update this code.  It seems that the code below is not
6156            ## up-to-date, though it has same effect as speced.
6157          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') {
6158            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
6159            if ($self->{open_elements}->[-1]->[1] ne 'body') {            if ($self->{open_elements}->[-1]->[1] ne 'body') {
6160              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!cp ('t406');
6161                !!!parse-error (type => 'not closed',
6162                                value => $self->{open_elements}->[1]->[0]
6163                                    ->manakai_local_name,
6164                                token => $token);
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            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!cp ('t408');
6173              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6174            ## Ignore the token            ## Ignore the token
6175            !!!next-token;            !!!next-token;
6176            redo B;            redo B;
# Line 5232  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 => 'not closed:'.$self->{open_elements}->[-1]->[1]);            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
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',
6221                                value => $self->{open_elements}->[-1]->[0]
6222                                    ->manakai_local_name,
6223                                token => $token);
6224            } else {            } else {
6225              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t414');
6226            }            }
6227          }  
6228                      ## Step 3.
         if (defined $i) {  
6229            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6230          } elsif ($token->{tag_name} eq 'p') {  
6231            ## As if <p>, then reprocess the current token            ## Step 4.
6232            my $el;            $clear_up_to_marker->()
6233            !!!create-element ($el, 'p');                if {
6234            $insert->($el);                  applet => 1, button => 1, marquee => 1, object => 1,
6235                  }->{$token->{tag_name}};
6236          }          }
         $clear_up_to_marker->()  
           if {  
             button => 1, marquee => 1, object => 1,  
           }->{$token->{tag_name}};  
6237          !!!next-token;          !!!next-token;
6238          redo B;          redo B;
6239        } elsif ($token->{tag_name} eq 'form') {        } elsif ($token->{tag_name} eq 'form') {
6240            undef $self->{form_element};
6241    
6242          ## has an element in scope          ## has an element in scope
6243            my $i;
6244          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6245            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
6246            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] eq $token->{tag_name}) {
6247              ## generate implied end tags              !!!cp ('t418');
6248              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;  
             }  
6249              last INSCOPE;              last INSCOPE;
6250            } elsif ({            } elsif ({
6251                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
6252                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6253                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6254                !!!cp ('t419');
6255              last INSCOPE;              last INSCOPE;
6256            }            }
6257          } # INSCOPE          } # INSCOPE
6258            
6259          if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {          unless (defined $i) { # has an element in scope
6260            pop @{$self->{open_elements}};            !!!cp ('t421');
6261          } else {            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6262            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          } else {
6263              ## Step 1. generate implied end tags
6264              while ({
6265                      dd => 1, dt => 1, li => 1, p => 1,
6266                     }->{$self->{open_elements}->[-1]->[1]}) {
6267                !!!cp ('t417');
6268                pop @{$self->{open_elements}};
6269              }
6270              
6271              ## Step 2.
6272              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6273                !!!cp ('t417.1');
6274                !!!parse-error (type => 'not closed',
6275                                value => $self->{open_elements}->[-1]->[0]
6276                                    ->manakai_local_name,
6277                                token => $token);
6278              } else {
6279                !!!cp ('t420');
6280              }  
6281              
6282              ## Step 3.
6283              splice @{$self->{open_elements}}, $i;
6284          }          }
6285    
         undef $self->{form_element};  
6286          !!!next-token;          !!!next-token;
6287          redo B;          redo B;
6288        } elsif ({        } elsif ({
# Line 5331  sub _tree_construction_main ($) { Line 6295  sub _tree_construction_main ($) {
6295            if ({            if ({
6296                 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,                 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
6297                }->{$node->[1]}) {                }->{$node->[1]}) {
6298              ## 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;  
             }  
6299              $i = $_;              $i = $_;
6300              last INSCOPE;              last INSCOPE;
6301            } elsif ({            } elsif ({
6302                      table => 1, caption => 1, td => 1, th => 1,                      applet => 1, table => 1, caption => 1, td => 1, th => 1,
6303                      button => 1, marquee => 1, object => 1, html => 1,                      button => 1, marquee => 1, object => 1, html => 1,
6304                     }->{$node->[1]}) {                     }->{$node->[1]}) {
6305                !!!cp ('t424');
6306              last INSCOPE;              last INSCOPE;
6307            }            }
6308          } # INSCOPE          } # INSCOPE
6309            
6310          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          unless (defined $i) { # has an element in scope
6311            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!cp ('t425.1');
6312              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6313            } else {
6314              ## Step 1. generate implied end tags
6315              while ({
6316                      dd => 1, dt => 1, li => 1, p => 1,
6317                     }->{$self->{open_elements}->[-1]->[1]}) {
6318                !!!cp ('t422');
6319                pop @{$self->{open_elements}};
6320              }
6321              
6322              ## Step 2.
6323              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6324                !!!cp ('t425');
6325                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6326              } else {
6327                !!!cp ('t426');
6328              }
6329    
6330              ## Step 3.
6331              splice @{$self->{open_elements}}, $i;
6332          }          }
6333                    
6334          splice @{$self->{open_elements}}, $i if defined $i;          !!!next-token;
6335            redo B;
6336          } elsif ($token->{tag_name} eq 'p') {
6337            ## has an element in scope
6338            my $i;
6339            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
6340              my $node = $self->{open_elements}->[$_];
6341              if ($node->[1] eq $token->{tag_name}) {
6342                !!!cp ('t410.1');
6343                $i = $_;
6344                last INSCOPE;
6345              } elsif ({
6346                        applet => 1, table => 1, caption => 1, td => 1, th => 1,
6347                        button => 1, marquee => 1, object => 1, html => 1,
6348                       }->{$node->[1]}) {
6349                !!!cp ('t411.1');
6350                last INSCOPE;
6351              }
6352            } # INSCOPE
6353    
6354            if (defined $i) {
6355              if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6356                !!!cp ('t412.1');
6357                !!!parse-error (type => 'not closed',
6358                                value => $self->{open_elements}->[-1]->[0]
6359                                    ->manakai_local_name,
6360                                token => $token);
6361              } else {
6362                !!!cp ('t414.1');
6363              }
6364    
6365              splice @{$self->{open_elements}}, $i;
6366            } else {
6367              !!!cp ('t413.1');
6368              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6369    
6370              !!!cp ('t415.1');
6371              ## As if <p>, then reprocess the current token
6372              my $el;
6373              !!!create-element ($el, 'p',, $token);
6374              $insert->($el);
6375              ## NOTE: Not inserted into |$self->{open_elements}|.
6376            }
6377    
6378          !!!next-token;          !!!next-token;
6379          redo B;          redo B;
6380        } elsif ({        } elsif ({
# Line 5365  sub _tree_construction_main ($) { Line 6383  sub _tree_construction_main ($) {
6383                  nobr => 1, s => 1, small => 1, strile => 1,                  nobr => 1, s => 1, small => 1, strile => 1,
6384                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
6385                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6386          $formatting_end_tag->($token->{tag_name});          !!!cp ('t427');
6387            $formatting_end_tag->($token);
6388          redo B;          redo B;
6389        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
6390          !!!parse-error (type => 'unmatched end tag:br');          !!!cp ('t428');
6391            !!!parse-error (type => 'unmatched end tag:br', token => $token);
6392    
6393          ## As if <br>          ## As if <br>
6394          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
6395                    
6396          my $el;          my $el;
6397          !!!create-element ($el, 'br');          !!!create-element ($el, 'br',, $token);
6398          $insert->($el);          $insert->($el);
6399                    
6400          ## Ignore the token.          ## Ignore the token.
# Line 5392  sub _tree_construction_main ($) { Line 6412  sub _tree_construction_main ($) {
6412                  table => 1, textarea => 1, wbr => 1,                  table => 1, textarea => 1, wbr => 1,
6413                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
6414                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6415          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!cp ('t429');
6416            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6417          ## Ignore the token          ## Ignore the token
6418          !!!next-token;          !!!next-token;
6419          redo B;          redo B;
# Line 5409  sub _tree_construction_main ($) { Line 6430  sub _tree_construction_main ($) {
6430            if ($node->[1] eq $token->{tag_name}) {            if ($node->[1] eq $token->{tag_name}) {
6431              ## Step 1              ## Step 1
6432              ## generate implied end tags              ## generate implied end tags
6433              if ({              while ({
6434                   dd => 1, dt => 1, li => 1, p => 1,                      dd => 1, dt => 1, li => 1, p => 1,
6435                   td => 1, th => 1, tr => 1,                     }->{$self->{open_elements}->[-1]->[1]}) {
6436                   tbody => 1, tfoot => 1, thead => 1,                !!!cp ('t430');
6437                  }->{$self->{open_elements}->[-1]->[1]}) {                ## ISSUE: Can this case be reached?
6438                !!!back-token;                pop @{$self->{open_elements}};
               $token = {type => END_TAG_TOKEN,  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               redo B;  
6439              }              }
6440                    
6441              ## Step 2              ## Step 2
6442              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {
6443                  !!!cp ('t431');
6444                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
6445                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed',
6446                                  value => $self->{open_elements}->[-1]->[0]
6447                                      ->manakai_local_name,
6448                                  token => $token);
6449                } else {
6450                  !!!cp ('t432');
6451              }              }
6452                            
6453              ## Step 3              ## Step 3
# Line 5437  sub _tree_construction_main ($) { Line 6461  sub _tree_construction_main ($) {
6461                  #not $phrasing_category->{$node->[1]} and                  #not $phrasing_category->{$node->[1]} and
6462                  ($special_category->{$node->[1]} or                  ($special_category->{$node->[1]} or
6463                   $scoping_category->{$node->[1]})) {                   $scoping_category->{$node->[1]})) {
6464                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t433');
6465                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6466                ## Ignore the token                ## Ignore the token
6467                !!!next-token;                !!!next-token;
6468                last S2;                last S2;
6469              }              }
6470    
6471                !!!cp ('t434');
6472            }            }
6473                        
6474            ## Step 4            ## Step 4
# Line 5457  sub _tree_construction_main ($) { Line 6484  sub _tree_construction_main ($) {
6484      redo B;      redo B;
6485    } # B    } # B
6486    
   ## 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  
   
6487    ## Stop parsing # MUST    ## Stop parsing # MUST
6488        
6489    ## TODO: script stuffs    ## TODO: script stuffs
# Line 5503  sub set_inner_html ($$$) { Line 6525  sub set_inner_html ($$$) {
6525      my $p = $class->new;      my $p = $class->new;
6526      $p->{document} = $doc;      $p->{document} = $doc;
6527    
6528      ## Step 9 # MUST      ## Step 8 # MUST
6529      my $i = 0;      my $i = 0;
6530      my $line = 1;      $p->{line_prev} = $p->{line} = 1;
6531      my $column = 0;      $p->{column_prev} = $p->{column} = 0;
6532      $p->{set_next_input_character} = sub {      $p->{set_next_char} = sub {
6533        my $self = shift;        my $self = shift;
6534    
6535        pop @{$self->{prev_input_character}};        pop @{$self->{prev_char}};
6536        unshift @{$self->{prev_input_character}}, $self->{next_input_character};        unshift @{$self->{prev_char}}, $self->{next_char};
6537    
6538          $self->{next_char} = -1 and return if $i >= length $$s;
6539          $self->{next_char} = ord substr $$s, $i++, 1;
6540    
6541          ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
6542          $p->{column}++;
6543    
6544        $self->{next_input_character} = -1 and return if $i >= length $$s;        if ($self->{next_char} == 0x000A) { # LF
6545        $self->{next_input_character} = ord substr $$s, $i++, 1;          $p->{line}++;
6546        $column++;          $p->{column} = 0;
6547            !!!cp ('i1');
6548        if ($self->{next_input_character} == 0x000A) { # LF        } elsif ($self->{next_char} == 0x000D) { # CR
         $line++;  
         $column = 0;  
       } elsif ($self->{next_input_character} == 0x000D) { # CR  
6549          $i++ if substr ($$s, $i, 1) eq "\x0A";          $i++ if substr ($$s, $i, 1) eq "\x0A";
6550          $self->{next_input_character} = 0x000A; # LF # MUST          $self->{next_char} = 0x000A; # LF # MUST
6551          $line++;          $p->{line}++;
6552          $column = 0;          $p->{column} = 0;
6553        } elsif ($self->{next_input_character} > 0x10FFFF) {          !!!cp ('i2');
6554          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST        } elsif ($self->{next_char} > 0x10FFFF) {
6555        } elsif ($self->{next_input_character} == 0x0000) { # NULL          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6556            !!!cp ('i3');
6557          } elsif ($self->{next_char} == 0x0000) { # NULL
6558            !!!cp ('i4');
6559          !!!parse-error (type => 'NULL');          !!!parse-error (type => 'NULL');
6560          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
6561        }        }
6562      };      };
6563      $p->{prev_input_character} = [-1, -1, -1];      $p->{prev_char} = [-1, -1, -1];
6564      $p->{next_input_character} = -1;      $p->{next_char} = -1;
6565            
6566      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
6567        my (%opt) = @_;        my (%opt) = @_;
6568        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";        my $line = $opt{line};
6569          my $column = $opt{column};
6570          if (defined $opt{token} and defined $opt{token}->{line}) {
6571            $line = $opt{token}->{line};
6572            $column = $opt{token}->{column};
6573          }
6574          warn "Parse error ($opt{type}) at line $line column $column\n";
6575      };      };
6576      $p->{parse_error} = sub {      $p->{parse_error} = sub {
6577        $ponerror->(@_, line => $line, column => $column);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
6578      };      };
6579            
6580      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
# Line 5566  sub set_inner_html ($$$) { Line 6600  sub set_inner_html ($$$) {
6600    
6601      $p->{inner_html_node} = [$node, $node_ln];      $p->{inner_html_node} = [$node, $node_ln];
6602    
6603      ## Step 4      ## Step 3
6604      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
6605        ('http://www.w3.org/1999/xhtml', [undef, 'html']);        ('http://www.w3.org/1999/xhtml', [undef, 'html']);
6606    
6607      ## Step 5 # MUST      ## Step 4 # MUST
6608      $doc->append_child ($root);      $doc->append_child ($root);
6609    
6610      ## Step 6 # MUST      ## Step 5 # MUST
6611      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, 'html'];
6612    
6613      undef $p->{head_element};      undef $p->{head_element};
6614    
6615      ## Step 7 # MUST      ## Step 6 # MUST
6616      $p->_reset_insertion_mode;      $p->_reset_insertion_mode;
6617    
6618      ## Step 8 # MUST      ## Step 7 # MUST
6619      my $anode = $node;      my $anode = $node;
6620      AN: while (defined $anode) {      AN: while (defined $anode) {
6621        if ($anode->node_type == 1) {        if ($anode->node_type == 1) {
6622          my $nsuri = $anode->namespace_uri;          my $nsuri = $anode->namespace_uri;
6623          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
6624            if ($anode->manakai_local_name eq 'form') {            if ($anode->manakai_local_name eq 'form') {
6625                !!!cp ('i5');
6626              $p->{form_element} = $anode;              $p->{form_element} = $anode;
6627              last AN;              last AN;
6628            }            }
# Line 5596  sub set_inner_html ($$$) { Line 6631  sub set_inner_html ($$$) {
6631        $anode = $anode->parent_node;        $anode = $anode->parent_node;
6632      } # AN      } # AN
6633            
6634      ## Step 3 # MUST      ## Step 9 # MUST
     ## Step 10 # MUST  
6635      {      {
6636        my $self = $p;        my $self = $p;
6637        !!!next-token;        !!!next-token;
6638      }      }
6639      $p->_tree_construction_main;      $p->_tree_construction_main;
6640    
6641      ## Step 11 # MUST      ## Step 10 # MUST
6642      my @cn = @{$node->child_nodes};      my @cn = @{$node->child_nodes};
6643      for (@cn) {      for (@cn) {
6644        $node->remove_child ($_);        $node->remove_child ($_);
6645      }      }
6646      ## ISSUE: mutation events? read-only?      ## ISSUE: mutation events? read-only?
6647    
6648      ## Step 12 # MUST      ## Step 11 # MUST
6649      @cn = @{$root->child_nodes};      @cn = @{$root->child_nodes};
6650      for (@cn) {      for (@cn) {
6651        $this_doc->adopt_node ($_);        $this_doc->adopt_node ($_);
# Line 5620  sub set_inner_html ($$$) { Line 6654  sub set_inner_html ($$$) {
6654      ## ISSUE: mutation events?      ## ISSUE: mutation events?
6655    
6656      $p->_terminate_tree_constructor;      $p->_terminate_tree_constructor;
6657    
6658        delete $p->{parse_error}; # delete loop
6659    } else {    } else {
6660      die "$0: |set_inner_html| is not defined for node of type $nt";      die "$0: |set_inner_html| is not defined for node of type $nt";
6661    }    }

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.122

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24