/[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.49 by wakaba, Sat Jul 21 10:39:45 2007 UTC revision 1.50 by wakaba, Sat Jul 21 10:59:40 2007 UTC
# Line 3409  sub _tree_construction_main ($) { Line 3409  sub _tree_construction_main ($) {
3409        }        }
3410        !!!next-token;        !!!next-token;
3411        redo B;        redo B;
3412      } elsif ($self->{insertion_mode} eq 'before head') {      } elsif ($self->{insertion_mode} eq 'in head' or
3413            if ($token->{type} eq 'character') {               $self->{insertion_mode} eq 'in head noscript' or
3414              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {               $self->{insertion_mode} eq 'after head' or
3415                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);               $self->{insertion_mode} eq 'before head') {
3416                unless (length $token->{data}) {        if ($token->{type} eq 'character') {
3417                  !!!next-token;          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3418                  redo B;            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3419                }            unless (length $token->{data}) {
3420              }              !!!next-token;
3421              ## As if <head>              redo B;
3422              !!!create-element ($self->{head_element}, 'head');            }
3423              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});          }
3424              push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
3425              $self->{insertion_mode} = 'in head';          if ($self->{insertion_mode} eq 'before head') {
3426              ## As if <head>
3427              !!!create-element ($self->{head_element}, 'head');
3428              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3429              push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3430    
3431              ## Reprocess in the "in head" insertion mode...
3432              pop @{$self->{open_elements}};
3433    
3434              ## Reprocess in the "after head" insertion mode...
3435            } elsif ($self->{insertion_mode} eq 'in head noscript') {
3436              ## As if </noscript>
3437              pop @{$self->{open_elements}};
3438              !!!parse-error (type => 'in noscript:#character');
3439              
3440              ## Reprocess in the "in head" insertion mode...
3441              ## As if </head>
3442              pop @{$self->{open_elements}};
3443    
3444              ## Reprocess in the "after head" insertion mode...
3445            } elsif ($self->{insertion_mode} eq 'in head') {
3446              pop @{$self->{open_elements}};
3447    
3448              ## Reprocess in the "after head" insertion mode...
3449            }
3450    
3451                ## "after head" insertion mode
3452                ## As if <body>
3453                !!!insert-element ('body');
3454                $self->{insertion_mode} = 'in body';
3455              ## reprocess              ## reprocess
3456              redo B;              redo B;
3457            } elsif ($token->{type} eq 'start tag') {            } elsif ($token->{type} eq 'start tag') {
             my $attr = $token->{tag_name} eq 'head' ? $token->{attributes} : {};  
             !!!create-element ($self->{head_element}, 'head', $attr);  
             $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
             push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
             $self->{insertion_mode} = 'in head';  
3458              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3459                !!!next-token;                if ($self->{insertion_mode} eq 'before head') {
3460              } else {                  !!!create-element ($self->{head_element}, $token->{tag_name}, $token->{attributes});
3461                ## reprocess                  $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3462              }                  push @{$self->{open_elements}}, [$self->{head_element}, $token->{tag_name}];
3463              redo B;                  $self->{insertion_mode} = 'in head';
3464            } elsif ($token->{type} eq 'end tag') {                  !!!next-token;
3465              if ({                  redo B;
3466                   head => 1, body => 1, html => 1,                } elsif ($self->{insertion_mode} ne 'after head') {
3467                   p => 1, br => 1,                  !!!parse-error (type => 'in head:head'); # or in head noscript
3468                  }->{$token->{tag_name}}) {                  ## Ignore the token
3469                    !!!next-token;
3470                    redo B;
3471                  } else {
3472                    #
3473                  }
3474                } elsif ($self->{insertion_mode} eq 'before head') {
3475                ## As if <head>                ## As if <head>
3476                !!!create-element ($self->{head_element}, 'head');                !!!create-element ($self->{head_element}, 'head');
3477                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3478                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];                push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3479    
3480                $self->{insertion_mode} = 'in head';                $self->{insertion_mode} = 'in head';
               ## reprocess  
               redo B;  
             } else {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token ## ISSUE: An issue in the spec.  
               !!!next-token;  
               redo B;  
             }  
           } else {  
             die "$0: $token->{type}: Unknown type";  
           }  
         } elsif ($self->{insertion_mode} eq 'in head' or  
                  $self->{insertion_mode} eq 'in head noscript' or  
                  $self->{insertion_mode} eq 'after head') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
               
             if ($self->{insertion_mode} eq 'in head noscript') {  
               ## As if </noscript>  
               pop @{$self->{open_elements}};  
               !!!parse-error (type => 'in noscript:#character');  
                 
3481                ## Reprocess in the "in head" insertion mode...                ## Reprocess in the "in head" insertion mode...
               ## As if </head>  
               pop @{$self->{open_elements}};  
   
               ## Reprocess in the "after head" insertion mode...  
             } elsif ($self->{insertion_mode} eq 'in head') {  
               pop @{$self->{open_elements}};  
   
               ## Reprocess in the "after head" insertion mode...  
3482              }              }
3483    
             ## 'after head' insertion mode  
             ## As if <body>  
             !!!insert-element ('body');  
             $self->{insertion_mode} = 'in body';  
             ## reprocess  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
3484              if ($token->{tag_name} eq 'base') {              if ($token->{tag_name} eq 'base') {
3485                if ($self->{insertion_mode} eq 'in head noscript') {                if ($self->{insertion_mode} eq 'in head noscript') {
3486                  ## As if </noscript>                  ## As if </noscript>
# Line 3605  sub _tree_construction_main ($) { Line 3593  sub _tree_construction_main ($) {
3593                } else {                } else {
3594                  #                  #
3595                }                }
             } elsif ($token->{tag_name} eq 'head') {  
               if ($self->{insertion_mode} ne 'after head') {  
                 !!!parse-error (type => 'in head:head'); # or in head noscript  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               } else {  
                 #  
               }  
3596              } elsif ($token->{tag_name} eq 'script') {              } elsif ($token->{tag_name} eq 'script') {
3597                if ($self->{insertion_mode} eq 'in head noscript') {                if ($self->{insertion_mode} eq 'in head noscript') {
3598                  ## As if </noscript>                  ## As if </noscript>
# Line 3684  sub _tree_construction_main ($) { Line 3663  sub _tree_construction_main ($) {
3663              redo B;              redo B;
3664            } elsif ($token->{type} eq 'end tag') {            } elsif ($token->{type} eq 'end tag') {
3665              if ($token->{tag_name} eq 'head') {              if ($token->{tag_name} eq 'head') {
3666                if ($self->{insertion_mode} eq 'in head noscript') {                if ($self->{insertion_mode} eq 'before head') {
3667                    ## As if <head>
3668                    !!!create-element ($self->{head_element}, 'head');
3669                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3670                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3671    
3672                    ## Reprocess in the "in head" insertion mode...
3673                    pop @{$self->{open_elements}};
3674                    $self->{insertion_mode} = 'after head';
3675                    !!!next-token;
3676                    redo B;
3677                  } elsif ($self->{insertion_mode} eq 'in head noscript') {
3678                  ## As if </noscript>                  ## As if </noscript>
3679                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3680                  !!!parse-error (type => 'in noscript:script');                  !!!parse-error (type => 'in noscript:script');
3681                                    
                 $self->{insertion_mode} = 'in head';  
3682                  ## Reprocess in the "in head" insertion mode...                  ## Reprocess in the "in head" insertion mode...
3683                }                  pop @{$self->{open_elements}};
3684                                  $self->{insertion_mode} = 'after head';
3685                if ($self->{insertion_mode} eq 'in head') {                  !!!next-token;
3686                    redo B;
3687                  } elsif ($self->{insertion_mode} eq 'in head') {
3688                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
3689                  $self->{insertion_mode} = 'after head';                  $self->{insertion_mode} = 'after head';
3690                  !!!next-token;                  !!!next-token;
# Line 3707  sub _tree_construction_main ($) { Line 3698  sub _tree_construction_main ($) {
3698                  $self->{insertion_mode} = 'in head';                  $self->{insertion_mode} = 'in head';
3699                  !!!next-token;                  !!!next-token;
3700                  redo B;                  redo B;
3701                  } elsif ($self->{insertion_mode} eq 'before head') {
3702                    !!!parse-error (type => 'unmatched end tag:noscript');
3703                    ## Ignore the token ## ISSUE: An issue in the spec.
3704                    !!!next-token;
3705                    redo B;
3706                } else {                } else {
3707                  #                  #
3708                }                }
3709              } elsif ({              } elsif ({
3710                        body => 1, html => 1,                        body => 1, html => 1,
3711                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3712                if ($self->{insertion_mode} eq 'in head noscript') {                if ($self->{insertion_mode} eq 'before head') {
3713                    ## As if <head>
3714                    !!!create-element ($self->{head_element}, 'head');
3715                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3716                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3717    
3718                    $self->{insertion_mode} = 'in head';
3719                    ## Reprocess in the "in head" insertion mode...
3720                  } elsif ($self->{insertion_mode} eq 'in head noscript') {
3721                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3722                  ## Ignore the token                  ## Ignore the token
3723                  !!!next-token;                  !!!next-token;
3724                  redo B;                  redo B;
               } else { # 'in head', 'after head'  
                 #  
3725                }                }
3726                  
3727                  #
3728              } elsif ({              } elsif ({
3729                        p => 1, br => 1,                        p => 1, br => 1,
3730                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3731                  if ($self->{insertion_mode} eq 'before head') {
3732                    ## As if <head>
3733                    !!!create-element ($self->{head_element}, 'head');
3734                    $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3735                    push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3736    
3737                    $self->{insertion_mode} = 'in head';
3738                    ## Reprocess in the "in head" insertion mode...
3739                  }
3740    
3741                #                #
3742              } else {              } else {
3743                if ($self->{insertion_mode} ne 'after head') {                if ($self->{insertion_mode} ne 'after head') {
# Line 3751  sub _tree_construction_main ($) { Line 3765  sub _tree_construction_main ($) {
3765                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3766    
3767                ## Reprocess in the "after head" insertion mode...                ## Reprocess in the "after head" insertion mode...
3768                } elsif ($self->{insertion_mode} eq 'before head') {
3769                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3770                  ## Ignore the token ## ISSUE: An issue in the spec.
3771                  !!!next-token;
3772                  redo B;
3773              }              }
3774    
3775              ## "after head" insertion mode              ## "after head" insertion mode
# Line 3764  sub _tree_construction_main ($) { Line 3783  sub _tree_construction_main ($) {
3783            }            }
3784    
3785            ## ISSUE: An issue in the spec.            ## ISSUE: An issue in the spec.
3786          } elsif ($self->{insertion_mode} eq 'in body' or      } elsif ($self->{insertion_mode} eq 'in body' or
3787                   $self->{insertion_mode} eq 'in cell' or               $self->{insertion_mode} eq 'in cell' or
3788                   $self->{insertion_mode} eq 'in caption') {               $self->{insertion_mode} eq 'in caption') {
3789            if ($token->{type} eq 'character') {            if ($token->{type} eq 'character') {
3790              ## NOTE: There is a code clone of "character in body".              ## NOTE: There is a code clone of "character in body".
3791              $reconstruct_active_formatting_elements->($insert_to_current);              $reconstruct_active_formatting_elements->($insert_to_current);

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24