/[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.112 by wakaba, Sun Mar 16 06:39:57 2008 UTC revision 1.113 by wakaba, Sun Mar 16 07:07:59 2008 UTC
# Line 578  sub _get_next_token ($) { Line 578  sub _get_next_token ($) {
578          die "$0: $self->{content_model} in tag open";          die "$0: $self->{content_model} in tag open";
579        }        }
580      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {      } elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) {
581        my ($l, $c) = ($self->{line_prev}, $self->{column_prev});        my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</"
582        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA        if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA
583          if (defined $self->{last_emitted_start_tag_name}) {          if (defined $self->{last_emitted_start_tag_name}) {
584    
# Line 2511  sub _tree_construction_initial ($) { Line 2511  sub _tree_construction_initial ($) {
2511            defined $token->{public_identifier} or            defined $token->{public_identifier} or
2512            defined $token->{system_identifier}) {            defined $token->{system_identifier}) {
2513          !!!cp ('t1');          !!!cp ('t1');
2514          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
2515        } elsif ($doctype_name ne 'HTML') {        } elsif ($doctype_name ne 'HTML') {
2516          !!!cp ('t2');          !!!cp ('t2');
2517          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)          ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
2518          !!!parse-error (type => 'not HTML5');          !!!parse-error (type => 'not HTML5', token => $token);
2519        } else {        } else {
2520          !!!cp ('t3');          !!!cp ('t3');
2521        }        }
# Line 2654  sub _tree_construction_initial ($) { Line 2654  sub _tree_construction_initial ($) {
2654                END_OF_FILE_TOKEN, 1,                END_OF_FILE_TOKEN, 1,
2655               }->{$token->{type}}) {               }->{$token->{type}}) {
2656        !!!cp ('t14');        !!!cp ('t14');
2657        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
2658        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2659        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
2660        ## reprocess        ## reprocess
# Line 2675  sub _tree_construction_initial ($) { Line 2675  sub _tree_construction_initial ($) {
2675          !!!cp ('t17');          !!!cp ('t17');
2676        }        }
2677    
2678        !!!parse-error (type => 'no DOCTYPE');        !!!parse-error (type => 'no DOCTYPE', token => $token);
2679        $self->{document}->manakai_compat_mode ('quirks');        $self->{document}->manakai_compat_mode ('quirks');
2680        ## Go to the "before html" insertion mode.        ## Go to the "before html" insertion mode.
2681        ## reprocess        ## reprocess
# Line 2704  sub _tree_construction_root_element ($) Line 2704  sub _tree_construction_root_element ($)
2704    B: {    B: {
2705        if ($token->{type} == DOCTYPE_TOKEN) {        if ($token->{type} == DOCTYPE_TOKEN) {
2706          !!!cp ('t19');          !!!cp ('t19');
2707          !!!parse-error (type => 'in html:#DOCTYPE');          !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
2708          ## Ignore the token          ## Ignore the token
2709          ## Stay in the insertion mode.          ## Stay in the insertion mode.
2710          !!!next-token;          !!!next-token;
# Line 3000  sub _tree_construction_main ($) { Line 3000  sub _tree_construction_main ($) {
3000        ## NOTE: An end-of-file token.        ## NOTE: An end-of-file token.
3001        if ($content_model_flag == CDATA_CONTENT_MODEL) {        if ($content_model_flag == CDATA_CONTENT_MODEL) {
3002          !!!cp ('t43');          !!!cp ('t43');
3003          !!!parse-error (type => 'in CDATA:#'.$token->{type});          !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3004        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {        } elsif ($content_model_flag == RCDATA_CONTENT_MODEL) {
3005          !!!cp ('t44');          !!!cp ('t44');
3006          !!!parse-error (type => 'in RCDATA:#'.$token->{type});          !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
3007        } else {        } else {
3008          die "$0: $content_model_flag in parse_rcdata";          die "$0: $content_model_flag in parse_rcdata";
3009        }        }
# Line 3039  sub _tree_construction_main ($) { Line 3039  sub _tree_construction_main ($) {
3039        ## Ignore the token        ## Ignore the token
3040      } else {      } else {
3041        !!!cp ('t48');        !!!cp ('t48');
3042        !!!parse-error (type => 'in CDATA:#'.$token->{type});        !!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token);
3043        ## ISSUE: And ignore?        ## ISSUE: And ignore?
3044        ## TODO: mark as "already executed"        ## TODO: mark as "already executed"
3045      }      }
# Line 3067  sub _tree_construction_main ($) { Line 3067  sub _tree_construction_main ($) {
3067    my $open_tables = [[$self->{open_elements}->[0]->[0]]];    my $open_tables = [[$self->{open_elements}->[0]->[0]]];
3068    
3069    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
3070      my $tag_name = shift;      my $end_tag_token = shift;
3071        my $tag_name = $end_tag_token->{tag_name};
3072    
3073      ## NOTE: The adoption agency algorithm (AAA).      ## NOTE: The adoption agency algorithm (AAA).
3074    
# Line 3088  sub _tree_construction_main ($) { Line 3089  sub _tree_construction_main ($) {
3089        } # AFE        } # AFE
3090        unless (defined $formatting_element) {        unless (defined $formatting_element) {
3091          !!!cp ('t53');          !!!cp ('t53');
3092          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!parse-error (type => 'unmatched end tag:'.$tag_name, token => $end_tag_token);
3093          ## Ignore the token          ## Ignore the token
3094          !!!next-token;          !!!next-token;
3095          return;          return;
# Line 3105  sub _tree_construction_main ($) { Line 3106  sub _tree_construction_main ($) {
3106              last INSCOPE;              last INSCOPE;
3107            } else { # in open elements but not in scope            } else { # in open elements but not in scope
3108              !!!cp ('t55');              !!!cp ('t55');
3109              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3110                                token => $end_tag_token);
3111              ## Ignore the token              ## Ignore the token
3112              !!!next-token;              !!!next-token;
3113              return;              return;
# Line 3120  sub _tree_construction_main ($) { Line 3122  sub _tree_construction_main ($) {
3122        } # INSCOPE        } # INSCOPE
3123        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
3124          !!!cp ('t57');          !!!cp ('t57');
3125          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name},
3126                            token => $end_tag_token);
3127          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
3128          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
3129          return;          return;
3130        }        }
3131        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
3132          !!!cp ('t58');          !!!cp ('t58');
3133          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1],
3134                            token => $end_tag_token);
3135        }        }
3136                
3137        ## Step 2        ## Step 2
# Line 3338  sub _tree_construction_main ($) { Line 3342  sub _tree_construction_main ($) {
3342    B: {    B: {
3343      if ($token->{type} == DOCTYPE_TOKEN) {      if ($token->{type} == DOCTYPE_TOKEN) {
3344        !!!cp ('t73');        !!!cp ('t73');
3345        !!!parse-error (type => 'DOCTYPE in the middle');        !!!parse-error (type => 'DOCTYPE in the middle', token => $token);
3346        ## Ignore the token        ## Ignore the token
3347        ## Stay in the phase        ## Stay in the phase
3348        !!!next-token;        !!!next-token;
# Line 3347  sub _tree_construction_main ($) { Line 3351  sub _tree_construction_main ($) {
3351               $token->{tag_name} eq 'html') {               $token->{tag_name} eq 'html') {
3352        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {        if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
3353          !!!cp ('t79');          !!!cp ('t79');
3354          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3355          $self->{insertion_mode} = AFTER_BODY_IM;          $self->{insertion_mode} = AFTER_BODY_IM;
3356        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {        } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
3357          !!!cp ('t80');          !!!cp ('t80');
3358          !!!parse-error (type => 'after html:html');          !!!parse-error (type => 'after html:html', token => $token);
3359          $self->{insertion_mode} = AFTER_FRAMESET_IM;          $self->{insertion_mode} = AFTER_FRAMESET_IM;
3360        } else {        } else {
3361          !!!cp ('t81');          !!!cp ('t81');
3362        }        }
3363    
3364        !!!cp ('t82');        !!!cp ('t82');
3365        !!!parse-error (type => 'not first start tag');        !!!parse-error (type => 'not first start tag', token => $token);
3366        my $top_el = $self->{open_elements}->[0]->[0];        my $top_el = $self->{open_elements}->[0]->[0];
3367        for my $attr_name (keys %{$token->{attributes}}) {        for my $attr_name (keys %{$token->{attributes}}) {
3368          unless ($top_el->has_attribute_ns (undef, $attr_name)) {          unless ($top_el->has_attribute_ns (undef, $attr_name)) {
# Line 3418  sub _tree_construction_main ($) { Line 3422  sub _tree_construction_main ($) {
3422            !!!cp ('t90');            !!!cp ('t90');
3423            ## As if </noscript>            ## As if </noscript>
3424            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
3425            !!!parse-error (type => 'in noscript:#character');            !!!parse-error (type => 'in noscript:#character', token => $token);
3426                        
3427            ## Reprocess in the "in head" insertion mode...            ## Reprocess in the "in head" insertion mode...
3428            ## As if </head>            ## As if </head>
# Line 3455  sub _tree_construction_main ($) { Line 3459  sub _tree_construction_main ($) {
3459                  #                  #
3460                } else {                } else {
3461                  !!!cp ('t95');                  !!!cp ('t95');
3462                  !!!parse-error (type => 'in head:head'); # or in head noscript                  !!!parse-error (type => 'in head:head', token => $token); # or in head noscript
3463                  ## Ignore the token                  ## Ignore the token
3464                  !!!next-token;                  !!!next-token;
3465                  redo B;                  redo B;
# Line 3478  sub _tree_construction_main ($) { Line 3482  sub _tree_construction_main ($) {
3482                  !!!cp ('t98');                  !!!cp ('t98');
3483                  ## As if </noscript>                  ## As if </noscript>
3484                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3485                  !!!parse-error (type => 'in noscript:base');                  !!!parse-error (type => 'in noscript:base', token => $token);
3486                                
3487                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3488                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
# Line 3489  sub _tree_construction_main ($) { Line 3493  sub _tree_construction_main ($) {
3493                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3494                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3495                  !!!cp ('t100');                  !!!cp ('t100');
3496                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3497                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3498                } else {                } else {
3499                  !!!cp ('t101');                  !!!cp ('t101');
# Line 3504  sub _tree_construction_main ($) { Line 3508  sub _tree_construction_main ($) {
3508                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3509                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3510                  !!!cp ('t102');                  !!!cp ('t102');
3511                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3512                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3513                } else {                } else {
3514                  !!!cp ('t103');                  !!!cp ('t103');
# Line 3519  sub _tree_construction_main ($) { Line 3523  sub _tree_construction_main ($) {
3523                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3524                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3525                  !!!cp ('t104');                  !!!cp ('t104');
3526                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3527                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3528                } else {                } else {
3529                  !!!cp ('t105');                  !!!cp ('t105');
# Line 3581  sub _tree_construction_main ($) { Line 3585  sub _tree_construction_main ($) {
3585                  !!!cp ('t111');                  !!!cp ('t111');
3586                  ## As if </noscript>                  ## As if </noscript>
3587                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3588                  !!!parse-error (type => 'in noscript:title');                  !!!parse-error (type => 'in noscript:title', token => $token);
3589                                
3590                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3591                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3592                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3593                  !!!cp ('t112');                  !!!cp ('t112');
3594                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3595                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3596                } else {                } else {
3597                  !!!cp ('t113');                  !!!cp ('t113');
# Line 3606  sub _tree_construction_main ($) { Line 3610  sub _tree_construction_main ($) {
3610                ## NOTE: There is a "as if in head" code clone.                ## NOTE: There is a "as if in head" code clone.
3611                if ($self->{insertion_mode} == AFTER_HEAD_IM) {                if ($self->{insertion_mode} == AFTER_HEAD_IM) {
3612                  !!!cp ('t114');                  !!!cp ('t114');
3613                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!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 {                } else {
3616                  !!!cp ('t115');                  !!!cp ('t115');
# Line 3625  sub _tree_construction_main ($) { Line 3629  sub _tree_construction_main ($) {
3629                  redo B;                  redo B;
3630                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3631                  !!!cp ('t117');                  !!!cp ('t117');
3632                  !!!parse-error (type => 'in noscript:noscript');                  !!!parse-error (type => 'in noscript:noscript', token => $token);
3633                  ## Ignore the token                  ## Ignore the token
3634                  !!!next-token;                  !!!next-token;
3635                  redo B;                  redo B;
# Line 3638  sub _tree_construction_main ($) { Line 3642  sub _tree_construction_main ($) {
3642                  !!!cp ('t119');                  !!!cp ('t119');
3643                  ## As if </noscript>                  ## As if </noscript>
3644                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3645                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:script', token => $token);
3646                                
3647                  $self->{insertion_mode} = IN_HEAD_IM;                  $self->{insertion_mode} = IN_HEAD_IM;
3648                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3649                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {                } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
3650                  !!!cp ('t120');                  !!!cp ('t120');
3651                  !!!parse-error (type => 'after head:'.$token->{tag_name});                  !!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token);
3652                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                  push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3653                } else {                } else {
3654                  !!!cp ('t121');                  !!!cp ('t121');
# Line 3661  sub _tree_construction_main ($) { Line 3665  sub _tree_construction_main ($) {
3665                  !!!cp ('t122');                  !!!cp ('t122');
3666                  ## As if </noscript>                  ## As if </noscript>
3667                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3668                  !!!parse-error (type => 'in noscript:'.$token->{tag_name});                  !!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token);
3669                                    
3670                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3671                  ## As if </head>                  ## As if </head>
# Line 3699  sub _tree_construction_main ($) { Line 3703  sub _tree_construction_main ($) {
3703                !!!cp ('t129');                !!!cp ('t129');
3704                ## As if </noscript>                ## As if </noscript>
3705                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3706                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
3707                                
3708                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
3709                ## As if </head>                ## As if </head>
# Line 3740  sub _tree_construction_main ($) { Line 3744  sub _tree_construction_main ($) {
3744                  !!!cp ('t133');                  !!!cp ('t133');
3745                  ## As if </noscript>                  ## As if </noscript>
3746                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3747                  !!!parse-error (type => 'in noscript:/head');                  !!!parse-error (type => 'in noscript:/head', token => $token);
3748                                    
3749                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3750                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
# Line 3766  sub _tree_construction_main ($) { Line 3770  sub _tree_construction_main ($) {
3770                  redo B;                  redo B;
3771                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {                } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3772                  !!!cp ('t137');                  !!!cp ('t137');
3773                  !!!parse-error (type => 'unmatched end tag:noscript');                  !!!parse-error (type => 'unmatched end tag:noscript', token => $token);
3774                  ## Ignore the token ## ISSUE: An issue in the spec.                  ## Ignore the token ## ISSUE: An issue in the spec.
3775                  !!!next-token;                  !!!next-token;
3776                  redo B;                  redo B;
# Line 3788  sub _tree_construction_main ($) { Line 3792  sub _tree_construction_main ($) {
3792                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3793                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3794                  !!!cp ('t140');                  !!!cp ('t140');
3795                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
3796                  ## Ignore the token                  ## Ignore the token
3797                  !!!next-token;                  !!!next-token;
3798                  redo B;                  redo B;
# Line 3820  sub _tree_construction_main ($) { Line 3824  sub _tree_construction_main ($) {
3824                  #                  #
3825                } else {                } else {
3826                  !!!cp ('t145');                  !!!cp ('t145');
3827                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
3828                  ## Ignore the token                  ## Ignore the token
3829                  !!!next-token;                  !!!next-token;
3830                  redo B;                  redo B;
# Line 3831  sub _tree_construction_main ($) { Line 3835  sub _tree_construction_main ($) {
3835                !!!cp ('t146');                !!!cp ('t146');
3836                ## As if </noscript>                ## As if </noscript>
3837                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3838                !!!parse-error (type => 'in noscript:/'.$token->{tag_name});                !!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token);
3839                                
3840                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
3841                ## As if </head>                ## As if </head>
# Line 3847  sub _tree_construction_main ($) { Line 3851  sub _tree_construction_main ($) {
3851              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {              } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
3852  ## ISSUE: This case cannot be reached?  ## ISSUE: This case cannot be reached?
3853                !!!cp ('t148');                !!!cp ('t148');
3854                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
3855                ## Ignore the token ## ISSUE: An issue in the spec.                ## Ignore the token ## ISSUE: An issue in the spec.
3856                !!!next-token;                !!!next-token;
3857                redo B;                redo B;
# Line 3891  sub _tree_construction_main ($) { Line 3895  sub _tree_construction_main ($) {
3895          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
3896            !!!cp ('t149.3');            !!!cp ('t149.3');
3897    
3898            !!!parse-error (type => 'in noscript:#eof');            !!!parse-error (type => 'in noscript:#eof', token => $token);
3899    
3900            ## As if </noscript>            ## As if </noscript>
3901            pop @{$self->{open_elements}};            pop @{$self->{open_elements}};
# Line 3956  sub _tree_construction_main ($) { Line 3960  sub _tree_construction_main ($) {
3960    
3961                  !!!cp ('t153');                  !!!cp ('t153');
3962                  !!!parse-error (type => 'start tag not allowed',                  !!!parse-error (type => 'start tag not allowed',
3963                      value => $token->{tag_name});                      value => $token->{tag_name}, token => $token);
3964                  ## Ignore the token                  ## Ignore the token
3965                  !!!next-token;                  !!!next-token;
3966                  redo B;                  redo B;
3967                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
3968                  !!!parse-error (type => 'not closed:caption');                  !!!parse-error (type => 'not closed:caption', token => $token);
3969                                    
3970                  ## NOTE: As if </caption>.                  ## NOTE: As if </caption>.
3971                  ## have a table element in table scope                  ## have a table element in table scope
# Line 3983  sub _tree_construction_main ($) { Line 3987  sub _tree_construction_main ($) {
3987    
3988                    !!!cp ('t157');                    !!!cp ('t157');
3989                    !!!parse-error (type => 'start tag not allowed',                    !!!parse-error (type => 'start tag not allowed',
3990                                    value => $token->{tag_name});                                    value => $token->{tag_name}, token => $token);
3991                    ## Ignore the token                    ## Ignore the token
3992                    !!!next-token;                    !!!next-token;
3993                    redo B;                    redo B;
# Line 3999  sub _tree_construction_main ($) { Line 4003  sub _tree_construction_main ($) {
4003    
4004                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4005                    !!!cp ('t159');                    !!!cp ('t159');
4006                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
4007                  } else {                  } else {
4008                    !!!cp ('t160');                    !!!cp ('t160');
4009                  }                  }
# Line 4040  sub _tree_construction_main ($) { Line 4044  sub _tree_construction_main ($) {
4044                  } # INSCOPE                  } # INSCOPE
4045                    unless (defined $i) {                    unless (defined $i) {
4046                      !!!cp ('t165');                      !!!cp ('t165');
4047                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4048                      ## Ignore the token                      ## Ignore the token
4049                      !!!next-token;                      !!!next-token;
4050                      redo B;                      redo B;
# Line 4056  sub _tree_construction_main ($) { Line 4060  sub _tree_construction_main ($) {
4060    
4061                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {                  if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
4062                    !!!cp ('t167');                    !!!cp ('t167');
4063                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
4064                  } else {                  } else {
4065                    !!!cp ('t168');                    !!!cp ('t168');
4066                  }                  }
# Line 4071  sub _tree_construction_main ($) { Line 4075  sub _tree_construction_main ($) {
4075                  redo B;                  redo B;
4076                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {                } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
4077                  !!!cp ('t169');                  !!!cp ('t169');
4078                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4079                  ## Ignore the token                  ## Ignore the token
4080                  !!!next-token;                  !!!next-token;
4081                  redo B;                  redo B;
# Line 4100  sub _tree_construction_main ($) { Line 4104  sub _tree_construction_main ($) {
4104    
4105                    !!!cp ('t173');                    !!!cp ('t173');
4106                    !!!parse-error (type => 'unmatched end tag',                    !!!parse-error (type => 'unmatched end tag',
4107                                    value => $token->{tag_name});                                    value => $token->{tag_name}, token => $token);
4108                    ## Ignore the token                    ## Ignore the token
4109                    !!!next-token;                    !!!next-token;
4110                    redo B;                    redo B;
# Line 4116  sub _tree_construction_main ($) { Line 4120  sub _tree_construction_main ($) {
4120                                    
4121                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {                  if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4122                    !!!cp ('t175');                    !!!cp ('t175');
4123                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
4124                  } else {                  } else {
4125                    !!!cp ('t176');                    !!!cp ('t176');
4126                  }                  }
# Line 4131  sub _tree_construction_main ($) { Line 4135  sub _tree_construction_main ($) {
4135                  redo B;                  redo B;
4136                } elsif ($self->{insertion_mode} == IN_CELL_IM) {                } elsif ($self->{insertion_mode} == IN_CELL_IM) {
4137                  !!!cp ('t177');                  !!!cp ('t177');
4138                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4139                  ## Ignore the token                  ## Ignore the token
4140                  !!!next-token;                  !!!next-token;
4141                  redo B;                  redo B;
# Line 4174  sub _tree_construction_main ($) { Line 4178  sub _tree_construction_main ($) {
4178    
4179                  !!!cp ('t182');                  !!!cp ('t182');
4180                  !!!parse-error (type => 'unmatched end tag',                  !!!parse-error (type => 'unmatched end tag',
4181                      value => $token->{tag_name});                      value => $token->{tag_name}, token => $token);
4182                  ## Ignore the token                  ## Ignore the token
4183                  !!!next-token;                  !!!next-token;
4184                  redo B;                  redo B;
4185                } # INSCOPE                } # INSCOPE
4186              } elsif ($token->{tag_name} eq 'table' and              } elsif ($token->{tag_name} eq 'table' and
4187                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4188                !!!parse-error (type => 'not closed:caption');                !!!parse-error (type => 'not closed:caption', token => $token);
4189    
4190                ## As if </caption>                ## As if </caption>
4191                ## have a table element in table scope                ## have a table element in table scope
# Line 4201  sub _tree_construction_main ($) { Line 4205  sub _tree_construction_main ($) {
4205                } # INSCOPE                } # INSCOPE
4206                unless (defined $i) {                unless (defined $i) {
4207                  !!!cp ('t186');                  !!!cp ('t186');
4208                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!parse-error (type => 'unmatched end tag:caption', token => $token);
4209                  ## Ignore the token                  ## Ignore the token
4210                  !!!next-token;                  !!!next-token;
4211                  redo B;                  redo B;
# Line 4217  sub _tree_construction_main ($) { Line 4221  sub _tree_construction_main ($) {
4221    
4222                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                if ($self->{open_elements}->[-1]->[1] ne 'caption') {
4223                  !!!cp ('t188');                  !!!cp ('t188');
4224                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
4225                } else {                } else {
4226                  !!!cp ('t189');                  !!!cp ('t189');
4227                }                }
# Line 4235  sub _tree_construction_main ($) { Line 4239  sub _tree_construction_main ($) {
4239                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4240                if ($self->{insertion_mode} & BODY_TABLE_IMS) {                if ($self->{insertion_mode} & BODY_TABLE_IMS) {
4241                  !!!cp ('t190');                  !!!cp ('t190');
4242                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4243                  ## Ignore the token                  ## Ignore the token
4244                  !!!next-token;                  !!!next-token;
4245                  redo B;                  redo B;
# Line 4249  sub _tree_construction_main ($) { Line 4253  sub _tree_construction_main ($) {
4253                       }->{$token->{tag_name}} and                       }->{$token->{tag_name}} and
4254                       $self->{insertion_mode} == IN_CAPTION_IM) {                       $self->{insertion_mode} == IN_CAPTION_IM) {
4255                !!!cp ('t192');                !!!cp ('t192');
4256                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4257                ## Ignore the token                ## Ignore the token
4258                !!!next-token;                !!!next-token;
4259                redo B;                redo B;
# Line 4264  sub _tree_construction_main ($) { Line 4268  sub _tree_construction_main ($) {
4268              th => 1, thead => 1, tr => 1, body => 1, html => 1,              th => 1, thead => 1, tr => 1, body => 1, html => 1,
4269            }->{$entry->[1]}) {            }->{$entry->[1]}) {
4270              !!!cp ('t75');              !!!cp ('t75');
4271              !!!parse-error (type => 'in body:#eof');              !!!parse-error (type => 'in body:#eof', token => $token);
4272              last;              last;
4273            }            }
4274          }          }
# Line 4292  sub _tree_construction_main ($) { Line 4296  sub _tree_construction_main ($) {
4296            }            }
4297          }          }
4298    
4299              !!!parse-error (type => 'in table:#character');              !!!parse-error (type => 'in table:#character', token => $token);
4300    
4301              ## As if in body, but insert into foster parent element              ## As if in body, but insert into foster parent element
4302              ## ISSUE: Spec says that "whenever a node would be inserted              ## ISSUE: Spec says that "whenever a node would be inserted
# Line 4366  sub _tree_construction_main ($) { Line 4370  sub _tree_construction_main ($) {
4370                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {                if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
4371                  unless ($token->{tag_name} eq 'tr') {                  unless ($token->{tag_name} eq 'tr') {
4372                    !!!cp ('t202');                    !!!cp ('t202');
4373                    !!!parse-error (type => 'missing start tag:tr');                    !!!parse-error (type => 'missing start tag:tr', token => $token);
4374                  }                  }
4375                                    
4376                  ## Clear back to table body context                  ## Clear back to table body context
# Line 4436  sub _tree_construction_main ($) { Line 4440  sub _tree_construction_main ($) {
4440                  unless (defined $i) {                  unless (defined $i) {
4441                   !!!cp ('t210');                   !!!cp ('t210');
4442  ## TODO: This type is wrong.  ## TODO: This type is wrong.
4443                   !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});                   !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token);
4444                    ## Ignore the token                    ## Ignore the token
4445                    !!!next-token;                    !!!next-token;
4446                    redo B;                    redo B;
# Line 4484  sub _tree_construction_main ($) { Line 4488  sub _tree_construction_main ($) {
4488                  unless (defined $i) {                  unless (defined $i) {
4489                    !!!cp ('t216');                    !!!cp ('t216');
4490  ## TODO: This erorr type ios wrong.  ## TODO: This erorr type ios wrong.
4491                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4492                    ## Ignore the token                    ## Ignore the token
4493                    !!!next-token;                    !!!next-token;
4494                    redo B;                    redo B;
# Line 4556  sub _tree_construction_main ($) { Line 4560  sub _tree_construction_main ($) {
4560                  die "$0: in table: <>: $token->{tag_name}";                  die "$0: in table: <>: $token->{tag_name}";
4561                }                }
4562              } elsif ($token->{tag_name} eq 'table') {              } elsif ($token->{tag_name} eq 'table') {
4563                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
4564    
4565                ## As if </table>                ## As if </table>
4566                ## have a table element in table scope                ## have a table element in table scope
# Line 4578  sub _tree_construction_main ($) { Line 4582  sub _tree_construction_main ($) {
4582                unless (defined $i) {                unless (defined $i) {
4583                  !!!cp ('t223');                  !!!cp ('t223');
4584  ## TODO: The following is wrong, maybe.  ## TODO: The following is wrong, maybe.
4585                  !!!parse-error (type => 'unmatched end tag:table');                  !!!parse-error (type => 'unmatched end tag:table', token => $token);
4586                  ## Ignore tokens </table><table>                  ## Ignore tokens </table><table>
4587                  !!!next-token;                  !!!next-token;
4588                  redo B;                  redo B;
# Line 4596  sub _tree_construction_main ($) { Line 4600  sub _tree_construction_main ($) {
4600                if ($self->{open_elements}->[-1]->[1] ne 'table') {                if ($self->{open_elements}->[-1]->[1] ne 'table') {
4601                  !!!cp ('t225');                  !!!cp ('t225');
4602  ## ISSUE: Can this case be reached?  ## ISSUE: Can this case be reached?
4603                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
4604                } else {                } else {
4605                  !!!cp ('t226');                  !!!cp ('t226');
4606                }                }
# Line 4634  sub _tree_construction_main ($) { Line 4638  sub _tree_construction_main ($) {
4638                my $type = lc $token->{attributes}->{type}->{value};                my $type = lc $token->{attributes}->{type}->{value};
4639                if ($type eq 'hidden') {                if ($type eq 'hidden') {
4640                  !!!cp ('t227.3');                  !!!cp ('t227.3');
4641                  !!!parse-error (type => 'in table:'.$token->{tag_name});                  !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
4642    
4643                  !!!insert-element ($token->{tag_name}, $token->{attributes});                  !!!insert-element ($token->{tag_name}, $token->{attributes});
4644    
# Line 4661  sub _tree_construction_main ($) { Line 4665  sub _tree_construction_main ($) {
4665            #            #
4666          }          }
4667    
4668          !!!parse-error (type => 'in table:'.$token->{tag_name});          !!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token);
4669    
4670          $insert = $insert_to_foster;          $insert = $insert_to_foster;
4671          #          #
# Line 4685  sub _tree_construction_main ($) { Line 4689  sub _tree_construction_main ($) {
4689                } # INSCOPE                } # INSCOPE
4690                unless (defined $i) {                unless (defined $i) {
4691                  !!!cp ('t230');                  !!!cp ('t230');
4692                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4693                  ## Ignore the token                  ## Ignore the token
4694                  !!!next-token;                  !!!next-token;
4695                  redo B;                  redo B;
# Line 4727  sub _tree_construction_main ($) { Line 4731  sub _tree_construction_main ($) {
4731                  unless (defined $i) {                  unless (defined $i) {
4732                    !!!cp ('t235');                    !!!cp ('t235');
4733  ## TODO: The following is wrong.  ## TODO: The following is wrong.
4734                    !!!parse-error (type => 'unmatched end tag:'.$token->{type});                    !!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token);
4735                    ## Ignore the token                    ## Ignore the token
4736                    !!!next-token;                    !!!next-token;
4737                    redo B;                    redo B;
# Line 4767  sub _tree_construction_main ($) { Line 4771  sub _tree_construction_main ($) {
4771                  } # INSCOPE                  } # INSCOPE
4772                  unless (defined $i) {                  unless (defined $i) {
4773                    !!!cp ('t239');                    !!!cp ('t239');
4774                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                    !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4775                    ## Ignore the token                    ## Ignore the token
4776                    !!!next-token;                    !!!next-token;
4777                    redo B;                    redo B;
# Line 4815  sub _tree_construction_main ($) { Line 4819  sub _tree_construction_main ($) {
4819                } # INSCOPE                } # INSCOPE
4820                unless (defined $i) {                unless (defined $i) {
4821                  !!!cp ('t243');                  !!!cp ('t243');
4822                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4823                  ## Ignore the token                  ## Ignore the token
4824                  !!!next-token;                  !!!next-token;
4825                  redo B;                  redo B;
# Line 4850  sub _tree_construction_main ($) { Line 4854  sub _tree_construction_main ($) {
4854                  } # INSCOPE                  } # INSCOPE
4855                    unless (defined $i) {                    unless (defined $i) {
4856                      !!!cp ('t249');                      !!!cp ('t249');
4857                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                      !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4858                      ## Ignore the token                      ## Ignore the token
4859                      !!!next-token;                      !!!next-token;
4860                      redo B;                      redo B;
# Line 4874  sub _tree_construction_main ($) { Line 4878  sub _tree_construction_main ($) {
4878                  } # INSCOPE                  } # INSCOPE
4879                    unless (defined $i) {                    unless (defined $i) {
4880                      !!!cp ('t252');                      !!!cp ('t252');
4881                      !!!parse-error (type => 'unmatched end tag:tr');                      !!!parse-error (type => 'unmatched end tag:tr', token => $token);
4882                      ## Ignore the token                      ## Ignore the token
4883                      !!!next-token;                      !!!next-token;
4884                      redo B;                      redo B;
# Line 4911  sub _tree_construction_main ($) { Line 4915  sub _tree_construction_main ($) {
4915                } # INSCOPE                } # INSCOPE
4916                unless (defined $i) {                unless (defined $i) {
4917                  !!!cp ('t256');                  !!!cp ('t256');
4918                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4919                  ## Ignore the token                  ## Ignore the token
4920                  !!!next-token;                  !!!next-token;
4921                  redo B;                  redo B;
# Line 4937  sub _tree_construction_main ($) { Line 4941  sub _tree_construction_main ($) {
4941                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM                        tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
4942                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
4943                !!!cp ('t258');                !!!cp ('t258');
4944                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
4945                ## Ignore the token                ## Ignore the token
4946                !!!next-token;                !!!next-token;
4947                redo B;                redo B;
4948          } else {          } else {
4949            !!!cp ('t259');            !!!cp ('t259');
4950            !!!parse-error (type => 'in table:/'.$token->{tag_name});            !!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token);
4951    
4952            $insert = $insert_to_foster;            $insert = $insert_to_foster;
4953            #            #
# Line 4951  sub _tree_construction_main ($) { Line 4955  sub _tree_construction_main ($) {
4955        } elsif ($token->{type} == END_OF_FILE_TOKEN) {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4956          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] eq 'html' and
4957                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
4958            !!!parse-error (type => 'in body:#eof');            !!!parse-error (type => 'in body:#eof', token => $token);
4959            !!!cp ('t259.1');            !!!cp ('t259.1');
4960            #            #
4961          } else {          } else {
# Line 4992  sub _tree_construction_main ($) { Line 4996  sub _tree_construction_main ($) {
4996              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
4997                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] eq 'html') {
4998                  !!!cp ('t264');                  !!!cp ('t264');
4999                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5000                  ## Ignore the token                  ## Ignore the token
5001                  !!!next-token;                  !!!next-token;
5002                  redo B;                  redo B;
# Line 5005  sub _tree_construction_main ($) { Line 5009  sub _tree_construction_main ($) {
5009                }                }
5010              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
5011                !!!cp ('t266');                !!!cp ('t266');
5012                !!!parse-error (type => 'unmatched end tag:col');                !!!parse-error (type => 'unmatched end tag:col', token => $token);
5013                ## Ignore the token                ## Ignore the token
5014                !!!next-token;                !!!next-token;
5015                redo B;                redo B;
# Line 5035  sub _tree_construction_main ($) { Line 5039  sub _tree_construction_main ($) {
5039            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] eq 'html') {
5040              !!!cp ('t269');              !!!cp ('t269');
5041  ## TODO: Wrong error type?  ## TODO: Wrong error type?
5042              !!!parse-error (type => 'unmatched end tag:colgroup');              !!!parse-error (type => 'unmatched end tag:colgroup', token => $token);
5043              ## Ignore the token              ## Ignore the token
5044              !!!next-token;              !!!next-token;
5045              redo B;              redo B;
# Line 5094  sub _tree_construction_main ($) { Line 5098  sub _tree_construction_main ($) {
5098                     tr => 1, td => 1, th => 1,                     tr => 1, td => 1, th => 1,
5099                    }->{$token->{tag_name}})) {                    }->{$token->{tag_name}})) {
5100            ## TODO: The type below is not good - <select> is replaced by </select>            ## TODO: The type below is not good - <select> is replaced by </select>
5101            !!!parse-error (type => 'not closed:select');            !!!parse-error (type => 'not closed:select', token => $token);
5102            ## NOTE: As if the token were </select> (<select> case) or            ## NOTE: As if the token were </select> (<select> case) or
5103            ## as if there were </select> (otherwise).            ## as if there were </select> (otherwise).
5104                ## have an element in table scope                ## have an element in table scope
# Line 5114  sub _tree_construction_main ($) { Line 5118  sub _tree_construction_main ($) {
5118                } # INSCOPE                } # INSCOPE
5119                unless (defined $i) {                unless (defined $i) {
5120                  !!!cp ('t280');                  !!!cp ('t280');
5121                  !!!parse-error (type => 'unmatched end tag:select');                  !!!parse-error (type => 'unmatched end tag:select', token => $token);
5122                  ## Ignore the token                  ## Ignore the token
5123                  !!!next-token;                  !!!next-token;
5124                  redo B;                  redo B;
# Line 5136  sub _tree_construction_main ($) { Line 5140  sub _tree_construction_main ($) {
5140            }            }
5141          } else {          } else {
5142            !!!cp ('t282');            !!!cp ('t282');
5143            !!!parse-error (type => 'in select:'.$token->{tag_name});            !!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token);
5144            ## Ignore the token            ## Ignore the token
5145            !!!next-token;            !!!next-token;
5146            redo B;            redo B;
# Line 5153  sub _tree_construction_main ($) { Line 5157  sub _tree_construction_main ($) {
5157                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5158                } else {                } else {
5159                  !!!cp ('t285');                  !!!cp ('t285');
5160                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5161                  ## Ignore the token                  ## Ignore the token
5162                }                }
5163                !!!next-token;                !!!next-token;
# Line 5164  sub _tree_construction_main ($) { Line 5168  sub _tree_construction_main ($) {
5168                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
5169                } else {                } else {
5170                  !!!cp ('t287');                  !!!cp ('t287');
5171                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5172                  ## Ignore the token                  ## Ignore the token
5173                }                }
5174                !!!next-token;                !!!next-token;
# Line 5187  sub _tree_construction_main ($) { Line 5191  sub _tree_construction_main ($) {
5191                } # INSCOPE                } # INSCOPE
5192                unless (defined $i) {                unless (defined $i) {
5193                  !!!cp ('t290');                  !!!cp ('t290');
5194                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5195                  ## Ignore the token                  ## Ignore the token
5196                  !!!next-token;                  !!!next-token;
5197                  redo B;                  redo B;
# Line 5206  sub _tree_construction_main ($) { Line 5210  sub _tree_construction_main ($) {
5210                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,                    tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
5211                   }->{$token->{tag_name}}) {                   }->{$token->{tag_name}}) {
5212  ## TODO: The following is wrong?  ## TODO: The following is wrong?
5213                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5214                                
5215                ## have an element in table scope                ## have an element in table scope
5216                my $i;                my $i;
# Line 5250  sub _tree_construction_main ($) { Line 5254  sub _tree_construction_main ($) {
5254                unless (defined $i) {                unless (defined $i) {
5255                  !!!cp ('t297');                  !!!cp ('t297');
5256  ## TODO: The following error type is correct?  ## TODO: The following error type is correct?
5257                  !!!parse-error (type => 'unmatched end tag:select');                  !!!parse-error (type => 'unmatched end tag:select', token => $token);
5258                  ## Ignore the </select> token                  ## Ignore the </select> token
5259                  !!!next-token; ## TODO: ok?                  !!!next-token; ## TODO: ok?
5260                  redo B;                  redo B;
# Line 5265  sub _tree_construction_main ($) { Line 5269  sub _tree_construction_main ($) {
5269                redo B;                redo B;
5270          } else {          } else {
5271            !!!cp ('t299');            !!!cp ('t299');
5272            !!!parse-error (type => 'in select:/'.$token->{tag_name});            !!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token);
5273            ## Ignore the token            ## Ignore the token
5274            !!!next-token;            !!!next-token;
5275            redo B;            redo B;
# Line 5274  sub _tree_construction_main ($) { Line 5278  sub _tree_construction_main ($) {
5278          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5279                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
5280            !!!cp ('t299.1');            !!!cp ('t299.1');
5281            !!!parse-error (type => 'in body:#eof');            !!!parse-error (type => 'in body:#eof', token => $token);
5282          } else {          } else {
5283            !!!cp ('t299.2');            !!!cp ('t299.2');
5284          }          }
# Line 5302  sub _tree_construction_main ($) { Line 5306  sub _tree_construction_main ($) {
5306                    
5307          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5308            !!!cp ('t301');            !!!cp ('t301');
5309            !!!parse-error (type => 'after html:#character');            !!!parse-error (type => 'after html:#character', token => $token);
5310    
5311            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
5312          } else {          } else {
# Line 5310  sub _tree_construction_main ($) { Line 5314  sub _tree_construction_main ($) {
5314          }          }
5315                    
5316          ## "after body" insertion mode          ## "after body" insertion mode
5317          !!!parse-error (type => 'after body:#character');          !!!parse-error (type => 'after body:#character', token => $token);
5318    
5319          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
5320          ## reprocess          ## reprocess
# Line 5318  sub _tree_construction_main ($) { Line 5322  sub _tree_construction_main ($) {
5322        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5323          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5324            !!!cp ('t303');            !!!cp ('t303');
5325            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
5326                        
5327            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
5328          } else {          } else {
# Line 5326  sub _tree_construction_main ($) { Line 5330  sub _tree_construction_main ($) {
5330          }          }
5331    
5332          ## "after body" insertion mode          ## "after body" insertion mode
5333          !!!parse-error (type => 'after body:'.$token->{tag_name});          !!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token);
5334    
5335          $self->{insertion_mode} = IN_BODY_IM;          $self->{insertion_mode} = IN_BODY_IM;
5336          ## reprocess          ## reprocess
# Line 5334  sub _tree_construction_main ($) { Line 5338  sub _tree_construction_main ($) {
5338        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5339          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
5340            !!!cp ('t305');            !!!cp ('t305');
5341            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
5342                        
5343            $self->{insertion_mode} = AFTER_BODY_IM;            $self->{insertion_mode} = AFTER_BODY_IM;
5344            ## Reprocess in the "after body" insertion mode.            ## Reprocess in the "after body" insertion mode.
# Line 5346  sub _tree_construction_main ($) { Line 5350  sub _tree_construction_main ($) {
5350          if ($token->{tag_name} eq 'html') {          if ($token->{tag_name} eq 'html') {
5351            if (defined $self->{inner_html_node}) {            if (defined $self->{inner_html_node}) {
5352              !!!cp ('t307');              !!!cp ('t307');
5353              !!!parse-error (type => 'unmatched end tag:html');              !!!parse-error (type => 'unmatched end tag:html', token => $token);
5354              ## Ignore the token              ## Ignore the token
5355              !!!next-token;              !!!next-token;
5356              redo B;              redo B;
# Line 5358  sub _tree_construction_main ($) { Line 5362  sub _tree_construction_main ($) {
5362            }            }
5363          } else {          } else {
5364            !!!cp ('t309');            !!!cp ('t309');
5365            !!!parse-error (type => 'after body:/'.$token->{tag_name});            !!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token);
5366    
5367            $self->{insertion_mode} = IN_BODY_IM;            $self->{insertion_mode} = IN_BODY_IM;
5368            ## reprocess            ## reprocess
# Line 5386  sub _tree_construction_main ($) { Line 5390  sub _tree_construction_main ($) {
5390          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {          if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) {
5391            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5392              !!!cp ('t311');              !!!cp ('t311');
5393              !!!parse-error (type => 'in frameset:#character');              !!!parse-error (type => 'in frameset:#character', token => $token);
5394            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
5395              !!!cp ('t312');              !!!cp ('t312');
5396              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
5397            } else { # "after html frameset"            } else { # "after html frameset"
5398              !!!cp ('t313');              !!!cp ('t313');
5399              !!!parse-error (type => 'after html:#character');              !!!parse-error (type => 'after html:#character', token => $token);
5400    
5401              $self->{insertion_mode} = AFTER_FRAMESET_IM;              $self->{insertion_mode} = AFTER_FRAMESET_IM;
5402              ## Reprocess in the "after frameset" insertion mode.              ## Reprocess in the "after frameset" insertion mode.
5403              !!!parse-error (type => 'after frameset:#character');              !!!parse-error (type => 'after frameset:#character', token => $token);
5404            }            }
5405                        
5406            ## Ignore the token.            ## Ignore the token.
# Line 5414  sub _tree_construction_main ($) { Line 5418  sub _tree_construction_main ($) {
5418        } elsif ($token->{type} == START_TAG_TOKEN) {        } elsif ($token->{type} == START_TAG_TOKEN) {
5419          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5420            !!!cp ('t316');            !!!cp ('t316');
5421            !!!parse-error (type => 'after html:'.$token->{tag_name});            !!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token);
5422    
5423            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
5424            ## Process in the "after frameset" insertion mode.            ## Process in the "after frameset" insertion mode.
# Line 5443  sub _tree_construction_main ($) { Line 5447  sub _tree_construction_main ($) {
5447          } else {          } else {
5448            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5449              !!!cp ('t321');              !!!cp ('t321');
5450              !!!parse-error (type => 'in frameset:'.$token->{tag_name});              !!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token);
5451            } else {            } else {
5452              !!!cp ('t322');              !!!cp ('t322');
5453              !!!parse-error (type => 'after frameset:'.$token->{tag_name});              !!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token);
5454            }            }
5455            ## Ignore the token            ## Ignore the token
5456            !!!next-token;            !!!next-token;
# Line 5455  sub _tree_construction_main ($) { Line 5459  sub _tree_construction_main ($) {
5459        } elsif ($token->{type} == END_TAG_TOKEN) {        } elsif ($token->{type} == END_TAG_TOKEN) {
5460          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {          if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
5461            !!!cp ('t323');            !!!cp ('t323');
5462            !!!parse-error (type => 'after html:/'.$token->{tag_name});            !!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token);
5463    
5464            $self->{insertion_mode} = AFTER_FRAMESET_IM;            $self->{insertion_mode} = AFTER_FRAMESET_IM;
5465            ## Process in the "after frameset" insertion mode.            ## Process in the "after frameset" insertion mode.
# Line 5468  sub _tree_construction_main ($) { Line 5472  sub _tree_construction_main ($) {
5472            if ($self->{open_elements}->[-1]->[1] eq 'html' and            if ($self->{open_elements}->[-1]->[1] eq 'html' and
5473                @{$self->{open_elements}} == 1) {                @{$self->{open_elements}} == 1) {
5474              !!!cp ('t325');              !!!cp ('t325');
5475              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
5476              ## Ignore the token              ## Ignore the token
5477              !!!next-token;              !!!next-token;
5478            } else {            } else {
# Line 5494  sub _tree_construction_main ($) { Line 5498  sub _tree_construction_main ($) {
5498          } else {          } else {
5499            if ($self->{insertion_mode} == IN_FRAMESET_IM) {            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
5500              !!!cp ('t330');              !!!cp ('t330');
5501              !!!parse-error (type => 'in frameset:/'.$token->{tag_name});              !!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token);
5502            } else {            } else {
5503              !!!cp ('t331');              !!!cp ('t331');
5504              !!!parse-error (type => 'after frameset:/'.$token->{tag_name});              !!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token);
5505            }            }
5506            ## Ignore the token            ## Ignore the token
5507            !!!next-token;            !!!next-token;
# Line 5507  sub _tree_construction_main ($) { Line 5511  sub _tree_construction_main ($) {
5511          unless ($self->{open_elements}->[-1]->[1] eq 'html' and          unless ($self->{open_elements}->[-1]->[1] eq 'html' and
5512                  @{$self->{open_elements}} == 1) { # redundant, maybe                  @{$self->{open_elements}} == 1) { # redundant, maybe
5513            !!!cp ('t331.1');            !!!cp ('t331.1');
5514            !!!parse-error (type => 'in body:#eof');            !!!parse-error (type => 'in body:#eof', token => $token);
5515          } else {          } else {
5516            !!!cp ('t331.2');            !!!cp ('t331.2');
5517          }          }
# Line 5600  sub _tree_construction_main ($) { Line 5604  sub _tree_construction_main ($) {
5604          $parse_rcdata->(RCDATA_CONTENT_MODEL);          $parse_rcdata->(RCDATA_CONTENT_MODEL);
5605          redo B;          redo B;
5606        } elsif ($token->{tag_name} eq 'body') {        } elsif ($token->{tag_name} eq 'body') {
5607          !!!parse-error (type => 'in body:body');          !!!parse-error (type => 'in body:body', token => $token);
5608                                
5609          if (@{$self->{open_elements}} == 1 or          if (@{$self->{open_elements}} == 1 or
5610              $self->{open_elements}->[1]->[1] ne 'body') {              $self->{open_elements}->[1]->[1] ne 'body') {
# Line 5631  sub _tree_construction_main ($) { Line 5635  sub _tree_construction_main ($) {
5635                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5636          if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {          if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
5637            !!!cp ('t350');            !!!cp ('t350');
5638            !!!parse-error (type => 'in form:form');            !!!parse-error (type => 'in form:form', token => $token);
5639            ## Ignore the token            ## Ignore the token
5640            !!!next-token;            !!!next-token;
5641            redo B;            redo B;
# Line 5718  sub _tree_construction_main ($) { Line 5722  sub _tree_construction_main ($) {
5722              if ($i != -1) {              if ($i != -1) {
5723                !!!cp ('t355');                !!!cp ('t355');
5724                !!!parse-error (type => 'end tag missing:'.                !!!parse-error (type => 'end tag missing:'.
5725                                $self->{open_elements}->[-1]->[1]);                                $self->{open_elements}->[-1]->[1], token => $token);
5726              } else {              } else {
5727                !!!cp ('t356');                !!!cp ('t356');
5728              }              }
# Line 5776  sub _tree_construction_main ($) { Line 5780  sub _tree_construction_main ($) {
5780            my $node = $active_formatting_elements->[$i];            my $node = $active_formatting_elements->[$i];
5781            if ($node->[1] eq 'a') {            if ($node->[1] eq 'a') {
5782              !!!cp ('t371');              !!!cp ('t371');
5783              !!!parse-error (type => 'in a:a');              !!!parse-error (type => 'in a:a', token => $token);
5784                            
5785              !!!back-token;              !!!back-token;
5786              $token = {type => END_TAG_TOKEN, tag_name => 'a'};              $token = {type => END_TAG_TOKEN, tag_name => 'a'};
5787              $formatting_end_tag->($token->{tag_name});              $formatting_end_tag->($token);
5788                            
5789              AFE2: for (reverse 0..$#$active_formatting_elements) {              AFE2: for (reverse 0..$#$active_formatting_elements) {
5790                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {                if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
# Line 5818  sub _tree_construction_main ($) { Line 5822  sub _tree_construction_main ($) {
5822            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5823            if ($node->[1] eq 'nobr') {            if ($node->[1] eq 'nobr') {
5824              !!!cp ('t376');              !!!cp ('t376');
5825              !!!parse-error (type => 'in nobr:nobr');              !!!parse-error (type => 'in nobr:nobr', token => $token);
5826              !!!back-token;              !!!back-token;
5827              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};              $token = {type => END_TAG_TOKEN, tag_name => 'nobr'};
5828              redo B;              redo B;
# Line 5842  sub _tree_construction_main ($) { Line 5846  sub _tree_construction_main ($) {
5846            my $node = $self->{open_elements}->[$_];            my $node = $self->{open_elements}->[$_];
5847            if ($node->[1] eq 'button') {            if ($node->[1] eq 'button') {
5848              !!!cp ('t378');              !!!cp ('t378');
5849              !!!parse-error (type => 'in button:button');              !!!parse-error (type => 'in button:button', token => $token);
5850              !!!back-token;              !!!back-token;
5851              $token = {type => END_TAG_TOKEN, tag_name => 'button'};              $token = {type => END_TAG_TOKEN, tag_name => 'button'};
5852              redo B;              redo B;
# Line 5882  sub _tree_construction_main ($) { Line 5886  sub _tree_construction_main ($) {
5886          $parse_rcdata->(CDATA_CONTENT_MODEL);          $parse_rcdata->(CDATA_CONTENT_MODEL);
5887          redo B;          redo B;
5888        } elsif ($token->{tag_name} eq 'isindex') {        } elsif ($token->{tag_name} eq 'isindex') {
5889          !!!parse-error (type => 'isindex');          !!!parse-error (type => 'isindex', token => $token);
5890                    
5891          if (defined $self->{form_element}) {          if (defined $self->{form_element}) {
5892            !!!cp ('t389');            !!!cp ('t389');
# Line 5966  sub _tree_construction_main ($) { Line 5970  sub _tree_construction_main ($) {
5970            ## Ignore the token            ## Ignore the token
5971          } else {          } else {
5972            !!!cp ('t398');            !!!cp ('t398');
5973            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            !!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token);
5974          }          }
5975          !!!next-token;          !!!next-token;
5976          redo B;          redo B;
# Line 5977  sub _tree_construction_main ($) { Line 5981  sub _tree_construction_main ($) {
5981                  thead => 1, tr => 1,                  thead => 1, tr => 1,
5982                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
5983          !!!cp ('t401');          !!!cp ('t401');
5984          !!!parse-error (type => 'in body:'.$token->{tag_name});          !!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token);
5985          ## Ignore the token          ## Ignore the token
5986          !!!next-token;          !!!next-token;
5987          redo B;          redo B;
# Line 5986  sub _tree_construction_main ($) { Line 5990  sub _tree_construction_main ($) {
5990        } else {        } else {
5991          if ($token->{tag_name} eq 'image') {          if ($token->{tag_name} eq 'image') {
5992            !!!cp ('t384');            !!!cp ('t384');
5993            !!!parse-error (type => 'image');            !!!parse-error (type => 'image', token => $token);
5994            $token->{tag_name} = 'img';            $token->{tag_name} = 'img';
5995          } else {          } else {
5996            !!!cp ('t385');            !!!cp ('t385');
# Line 6059  sub _tree_construction_main ($) { Line 6063  sub _tree_construction_main ($) {
6063            }            }
6064    
6065            !!!parse-error (type => 'start tag not allowed',            !!!parse-error (type => 'start tag not allowed',
6066                            value => $token->{tag_name});                            value => $token->{tag_name}, token => $token);
6067            ## NOTE: Ignore the token.            ## NOTE: Ignore the token.
6068            !!!next-token;            !!!next-token;
6069            redo B;            redo B;
# Line 6072  sub _tree_construction_main ($) { Line 6076  sub _tree_construction_main ($) {
6076                     tbody => 1, tfoot => 1, thead => 1,                     tbody => 1, tfoot => 1, thead => 1,
6077                    }->{$_->[1]}) {                    }->{$_->[1]}) {
6078              !!!cp ('t403');              !!!cp ('t403');
6079              !!!parse-error (type => 'not closed:'.$_->[1]);              !!!parse-error (type => 'not closed:'.$_->[1], token => $token);
6080              last;              last;
6081            } else {            } else {
6082              !!!cp ('t404');              !!!cp ('t404');
# Line 6087  sub _tree_construction_main ($) { Line 6091  sub _tree_construction_main ($) {
6091            ## ISSUE: There is an issue in the spec.            ## ISSUE: There is an issue in the spec.
6092            if ($self->{open_elements}->[-1]->[1] ne 'body') {            if ($self->{open_elements}->[-1]->[1] ne 'body') {
6093              !!!cp ('t406');              !!!cp ('t406');
6094              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1], token => $token);
6095            } else {            } else {
6096              !!!cp ('t407');              !!!cp ('t407');
6097            }            }
# Line 6096  sub _tree_construction_main ($) { Line 6100  sub _tree_construction_main ($) {
6100            redo B;            redo B;
6101          } else {          } else {
6102            !!!cp ('t408');            !!!cp ('t408');
6103            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6104            ## Ignore the token            ## Ignore the token
6105            !!!next-token;            !!!next-token;
6106            redo B;            redo B;
# Line 6127  sub _tree_construction_main ($) { Line 6131  sub _tree_construction_main ($) {
6131    
6132          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
6133            !!!cp ('t413');            !!!cp ('t413');
6134            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6135          } else {          } else {
6136            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
6137            while ({            while ({
# Line 6143  sub _tree_construction_main ($) { Line 6147  sub _tree_construction_main ($) {
6147            ## Step 2.            ## Step 2.
6148            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6149              !!!cp ('t412');              !!!cp ('t412');
6150              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
6151            } else {            } else {
6152              !!!cp ('t414');              !!!cp ('t414');
6153            }            }
# Line 6181  sub _tree_construction_main ($) { Line 6185  sub _tree_construction_main ($) {
6185    
6186          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
6187            !!!cp ('t421');            !!!cp ('t421');
6188            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6189          } else {          } else {
6190            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
6191            while ({            while ({
# Line 6194  sub _tree_construction_main ($) { Line 6198  sub _tree_construction_main ($) {
6198            ## Step 2.            ## Step 2.
6199            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6200              !!!cp ('t417.1');              !!!cp ('t417.1');
6201              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
6202            } else {            } else {
6203              !!!cp ('t420');              !!!cp ('t420');
6204            }              }  
# Line 6229  sub _tree_construction_main ($) { Line 6233  sub _tree_construction_main ($) {
6233    
6234          unless (defined $i) { # has an element in scope          unless (defined $i) { # has an element in scope
6235            !!!cp ('t425.1');            !!!cp ('t425.1');
6236            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6237          } else {          } else {
6238            ## Step 1. generate implied end tags            ## Step 1. generate implied end tags
6239            while ({            while ({
# Line 6242  sub _tree_construction_main ($) { Line 6246  sub _tree_construction_main ($) {
6246            ## Step 2.            ## Step 2.
6247            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6248              !!!cp ('t425');              !!!cp ('t425');
6249              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6250            } else {            } else {
6251              !!!cp ('t426');              !!!cp ('t426');
6252            }            }
# Line 6274  sub _tree_construction_main ($) { Line 6278  sub _tree_construction_main ($) {
6278          if (defined $i) {          if (defined $i) {
6279            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {            if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
6280              !!!cp ('t412.1');              !!!cp ('t412.1');
6281              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
6282            } else {            } else {
6283              !!!cp ('t414.1');              !!!cp ('t414.1');
6284            }            }
# Line 6282  sub _tree_construction_main ($) { Line 6286  sub _tree_construction_main ($) {
6286            splice @{$self->{open_elements}}, $i;            splice @{$self->{open_elements}}, $i;
6287          } else {          } else {
6288            !!!cp ('t413.1');            !!!cp ('t413.1');
6289            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6290    
6291            !!!cp ('t415.1');            !!!cp ('t415.1');
6292            ## As if <p>, then reprocess the current token            ## As if <p>, then reprocess the current token
# Line 6301  sub _tree_construction_main ($) { Line 6305  sub _tree_construction_main ($) {
6305                  strong => 1, tt => 1, u => 1,                  strong => 1, tt => 1, u => 1,
6306                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6307          !!!cp ('t427');          !!!cp ('t427');
6308          $formatting_end_tag->($token->{tag_name});          $formatting_end_tag->($token);
6309          redo B;          redo B;
6310        } elsif ($token->{tag_name} eq 'br') {        } elsif ($token->{tag_name} eq 'br') {
6311          !!!cp ('t428');          !!!cp ('t428');
6312          !!!parse-error (type => 'unmatched end tag:br');          !!!parse-error (type => 'unmatched end tag:br', token => $token);
6313    
6314          ## As if <br>          ## As if <br>
6315          $reconstruct_active_formatting_elements->($insert_to_current);          $reconstruct_active_formatting_elements->($insert_to_current);
# Line 6330  sub _tree_construction_main ($) { Line 6334  sub _tree_construction_main ($) {
6334                  noscript => 0, ## TODO: if scripting is enabled                  noscript => 0, ## TODO: if scripting is enabled
6335                 }->{$token->{tag_name}}) {                 }->{$token->{tag_name}}) {
6336          !!!cp ('t429');          !!!cp ('t429');
6337          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6338          ## Ignore the token          ## Ignore the token
6339          !!!next-token;          !!!next-token;
6340          redo B;          redo B;
# Line 6359  sub _tree_construction_main ($) { Line 6363  sub _tree_construction_main ($) {
6363              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {
6364                !!!cp ('t431');                !!!cp ('t431');
6365                ## NOTE: <x><y></x>                ## NOTE: <x><y></x>
6366                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token);
6367              } else {              } else {
6368                !!!cp ('t432');                !!!cp ('t432');
6369              }              }
# Line 6376  sub _tree_construction_main ($) { Line 6380  sub _tree_construction_main ($) {
6380                  ($special_category->{$node->[1]} or                  ($special_category->{$node->[1]} or
6381                   $scoping_category->{$node->[1]})) {                   $scoping_category->{$node->[1]})) {
6382                !!!cp ('t433');                !!!cp ('t433');
6383                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token);
6384                ## Ignore the token                ## Ignore the token
6385                !!!next-token;                !!!next-token;
6386                last S2;                last S2;

Legend:
Removed from v.1.112  
changed lines
  Added in v.1.113

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24