| 7 |
## doc.write (''); |
## doc.write (''); |
| 8 |
## alert (doc.compatMode); |
## alert (doc.compatMode); |
| 9 |
|
|
| 10 |
|
## ISSUE: HTML5 revision 967 says that the encoding layer MUST NOT |
| 11 |
|
## strip BOM and the HTML layer MUST ignore it. Whether we can do it |
| 12 |
|
## is not yet clear. |
| 13 |
|
## "{U+FEFF}..." in UTF-16BE/UTF-16LE is three or four characters? |
| 14 |
|
## "{U+FEFF}..." in GB18030? |
| 15 |
|
|
| 16 |
my $permitted_slash_tag_name = { |
my $permitted_slash_tag_name = { |
| 17 |
base => 1, |
base => 1, |
| 18 |
link => 1, |
link => 1, |
| 150 |
return $self; |
return $self; |
| 151 |
} # new |
} # new |
| 152 |
|
|
| 153 |
|
sub CM_ENTITY () { 0b001 } # & markup in data |
| 154 |
|
sub CM_LIMITED_MARKUP () { 0b010 } # < markup in data (limited) |
| 155 |
|
sub CM_FULL_MARKUP () { 0b100 } # < markup in data (any) |
| 156 |
|
|
| 157 |
|
sub PLAINTEXT_CONTENT_MODEL () { 0 } |
| 158 |
|
sub CDATA_CONTENT_MODEL () { CM_LIMITED_MARKUP } |
| 159 |
|
sub RCDATA_CONTENT_MODEL () { CM_ENTITY | CM_LIMITED_MARKUP } |
| 160 |
|
sub PCDATA_CONTENT_MODEL () { CM_ENTITY | CM_FULL_MARKUP } |
| 161 |
|
|
| 162 |
## Implementations MUST act as if state machine in the spec |
## Implementations MUST act as if state machine in the spec |
| 163 |
|
|
| 164 |
sub _initialize_tokenizer ($) { |
sub _initialize_tokenizer ($) { |
| 165 |
my $self = shift; |
my $self = shift; |
| 166 |
$self->{state} = 'data'; # MUST |
$self->{state} = 'data'; # MUST |
| 167 |
$self->{content_model_flag} = 'PCDATA'; # be |
$self->{content_model} = PCDATA_CONTENT_MODEL; # be |
| 168 |
undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE |
undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE |
| 169 |
undef $self->{current_attribute}; |
undef $self->{current_attribute}; |
| 170 |
undef $self->{last_emitted_start_tag_name}; |
undef $self->{last_emitted_start_tag_name}; |
| 203 |
A: { |
A: { |
| 204 |
if ($self->{state} eq 'data') { |
if ($self->{state} eq 'data') { |
| 205 |
if ($self->{next_input_character} == 0x0026) { # & |
if ($self->{next_input_character} == 0x0026) { # & |
| 206 |
if ($self->{content_model_flag} eq 'PCDATA' or |
if ($self->{content_model} & CM_ENTITY) { # PCDATA | RCDATA |
|
$self->{content_model_flag} eq 'RCDATA') { |
|
| 207 |
$self->{state} = 'entity data'; |
$self->{state} = 'entity data'; |
| 208 |
!!!next-input-character; |
!!!next-input-character; |
| 209 |
redo A; |
redo A; |
| 211 |
# |
# |
| 212 |
} |
} |
| 213 |
} elsif ($self->{next_input_character} == 0x002D) { # - |
} elsif ($self->{next_input_character} == 0x002D) { # - |
| 214 |
if ($self->{content_model_flag} eq 'RCDATA' or |
if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA |
|
$self->{content_model_flag} eq 'CDATA') { |
|
| 215 |
unless ($self->{escape}) { |
unless ($self->{escape}) { |
| 216 |
if ($self->{prev_input_character}->[0] == 0x002D and # - |
if ($self->{prev_input_character}->[0] == 0x002D and # - |
| 217 |
$self->{prev_input_character}->[1] == 0x0021 and # ! |
$self->{prev_input_character}->[1] == 0x0021 and # ! |
| 223 |
|
|
| 224 |
# |
# |
| 225 |
} elsif ($self->{next_input_character} == 0x003C) { # < |
} elsif ($self->{next_input_character} == 0x003C) { # < |
| 226 |
if ($self->{content_model_flag} eq 'PCDATA' or |
if ($self->{content_model} & CM_FULL_MARKUP or # PCDATA |
| 227 |
(($self->{content_model_flag} eq 'CDATA' or |
(($self->{content_model} & CM_LIMITED_MARKUP) and # CDATA | RCDATA |
|
$self->{content_model_flag} eq 'RCDATA') and |
|
| 228 |
not $self->{escape})) { |
not $self->{escape})) { |
| 229 |
$self->{state} = 'tag open'; |
$self->{state} = 'tag open'; |
| 230 |
!!!next-input-character; |
!!!next-input-character; |
| 234 |
} |
} |
| 235 |
} elsif ($self->{next_input_character} == 0x003E) { # > |
} elsif ($self->{next_input_character} == 0x003E) { # > |
| 236 |
if ($self->{escape} and |
if ($self->{escape} and |
| 237 |
($self->{content_model_flag} eq 'RCDATA' or |
($self->{content_model} & CM_LIMITED_MARKUP)) { # RCDATA | CDATA |
|
$self->{content_model_flag} eq 'CDATA')) { |
|
| 238 |
if ($self->{prev_input_character}->[0] == 0x002D and # - |
if ($self->{prev_input_character}->[0] == 0x002D and # - |
| 239 |
$self->{prev_input_character}->[1] == 0x002D) { # - |
$self->{prev_input_character}->[1] == 0x002D) { # - |
| 240 |
delete $self->{escape}; |
delete $self->{escape}; |
| 271 |
|
|
| 272 |
redo A; |
redo A; |
| 273 |
} elsif ($self->{state} eq 'tag open') { |
} elsif ($self->{state} eq 'tag open') { |
| 274 |
if ($self->{content_model_flag} eq 'RCDATA' or |
if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA |
|
$self->{content_model_flag} eq 'CDATA') { |
|
| 275 |
if ($self->{next_input_character} == 0x002F) { # / |
if ($self->{next_input_character} == 0x002F) { # / |
| 276 |
!!!next-input-character; |
!!!next-input-character; |
| 277 |
$self->{state} = 'close tag open'; |
$self->{state} = 'close tag open'; |
| 284 |
|
|
| 285 |
redo A; |
redo A; |
| 286 |
} |
} |
| 287 |
} elsif ($self->{content_model_flag} eq 'PCDATA') { |
} elsif ($self->{content_model} & CM_FULL_MARKUP) { # PCDATA |
| 288 |
if ($self->{next_input_character} == 0x0021) { # ! |
if ($self->{next_input_character} == 0x0021) { # ! |
| 289 |
$self->{state} = 'markup declaration open'; |
$self->{state} = 'markup declaration open'; |
| 290 |
!!!next-input-character; |
!!!next-input-character; |
| 331 |
redo A; |
redo A; |
| 332 |
} |
} |
| 333 |
} else { |
} else { |
| 334 |
die "$0: $self->{content_model_flag}: Unknown content model flag"; |
die "$0: $self->{content_model} in tag open"; |
| 335 |
} |
} |
| 336 |
} elsif ($self->{state} eq 'close tag open') { |
} elsif ($self->{state} eq 'close tag open') { |
| 337 |
if ($self->{content_model_flag} eq 'RCDATA' or |
if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA |
|
$self->{content_model_flag} eq 'CDATA') { |
|
| 338 |
if (defined $self->{last_emitted_start_tag_name}) { |
if (defined $self->{last_emitted_start_tag_name}) { |
| 339 |
|
## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564> |
| 340 |
my @next_char; |
my @next_char; |
| 341 |
TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) { |
TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) { |
| 342 |
push @next_char, $self->{next_input_character}; |
push @next_char, $self->{next_input_character}; |
| 432 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 433 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 434 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 435 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 436 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 437 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 438 |
} |
} |
| 459 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 460 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 461 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 462 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 463 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 464 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 465 |
} |
} |
| 507 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 508 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 509 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 510 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 511 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 512 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 513 |
} |
} |
| 547 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 548 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 549 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 550 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 551 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 552 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 553 |
} |
} |
| 571 |
my $before_leave = sub { |
my $before_leave = sub { |
| 572 |
if (exists $self->{current_token}->{attributes} # start tag or end tag |
if (exists $self->{current_token}->{attributes} # start tag or end tag |
| 573 |
->{$self->{current_attribute}->{name}}) { # MUST |
->{$self->{current_attribute}->{name}}) { # MUST |
| 574 |
!!!parse-error (type => 'dupulicate attribute'); |
!!!parse-error (type => 'duplicate attribute:'.$self->{current_attribute}->{name}); |
| 575 |
## Discard $self->{current_attribute} # MUST |
## Discard $self->{current_attribute} # MUST |
| 576 |
} else { |
} else { |
| 577 |
$self->{current_token}->{attributes}->{$self->{current_attribute}->{name}} |
$self->{current_token}->{attributes}->{$self->{current_attribute}->{name}} |
| 600 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 601 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 602 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 603 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 604 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 605 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 606 |
} |
} |
| 641 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 642 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 643 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 644 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 645 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 646 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 647 |
} |
} |
| 679 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 680 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 681 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 682 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 683 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 684 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 685 |
} |
} |
| 708 |
# |
# |
| 709 |
} else { |
} else { |
| 710 |
!!!parse-error (type => 'nestc'); |
!!!parse-error (type => 'nestc'); |
| 711 |
|
## TODO: Different error type for <aa / bb> than <aa/> |
| 712 |
} |
} |
| 713 |
$self->{state} = 'before attribute name'; |
$self->{state} = 'before attribute name'; |
| 714 |
# next-input-character is already done |
# next-input-character is already done |
| 720 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 721 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 722 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 723 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 724 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 725 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 726 |
} |
} |
| 767 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 768 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 769 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 770 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 771 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 772 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 773 |
} |
} |
| 787 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 788 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 789 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 790 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 791 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 792 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 793 |
} |
} |
| 823 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 824 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 825 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 826 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 827 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 828 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 829 |
} |
} |
| 859 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 860 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 861 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 862 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 863 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 864 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 865 |
} |
} |
| 898 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 899 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 900 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 901 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 902 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 903 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 904 |
} |
} |
| 918 |
= not defined $self->{last_emitted_start_tag_name}; |
= not defined $self->{last_emitted_start_tag_name}; |
| 919 |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
$self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name}; |
| 920 |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
} elsif ($self->{current_token}->{type} eq 'end tag') { |
| 921 |
$self->{content_model_flag} = 'PCDATA'; # MUST |
$self->{content_model} = PCDATA_CONTENT_MODEL; # MUST |
| 922 |
if ($self->{current_token}->{attributes}) { |
if ($self->{current_token}->{attributes}) { |
| 923 |
!!!parse-error (type => 'end tag attribute'); |
!!!parse-error (type => 'end tag attribute'); |
| 924 |
} |
} |
| 1029 |
} |
} |
| 1030 |
} |
} |
| 1031 |
|
|
| 1032 |
!!!parse-error (type => 'bogus comment open'); |
!!!parse-error (type => 'bogus comment'); |
| 1033 |
$self->{next_input_character} = shift @next_char; |
$self->{next_input_character} = shift @next_char; |
| 1034 |
!!!back-next-input-character (@next_char); |
!!!back-next-input-character (@next_char); |
| 1035 |
$self->{state} = 'bogus comment'; |
$self->{state} = 'bogus comment'; |
| 1088 |
redo A; |
redo A; |
| 1089 |
} else { |
} else { |
| 1090 |
$self->{current_token}->{data} # comment |
$self->{current_token}->{data} # comment |
| 1091 |
.= chr ($self->{next_input_character}); |
.= '-' . chr ($self->{next_input_character}); |
| 1092 |
$self->{state} = 'comment'; |
$self->{state} = 'comment'; |
| 1093 |
!!!next-input-character; |
!!!next-input-character; |
| 1094 |
redo A; |
redo A; |
| 1498 |
|
|
| 1499 |
redo A; |
redo A; |
| 1500 |
} else { |
} else { |
| 1501 |
!!!parse-error (type => 'string after PUBLIC literal'); |
!!!parse-error (type => 'string after SYSTEM'); |
| 1502 |
$self->{state} = 'bogus DOCTYPE'; |
$self->{state} = 'bogus DOCTYPE'; |
| 1503 |
!!!next-input-character; |
!!!next-input-character; |
| 1504 |
redo A; |
redo A; |
| 1647 |
redo X; |
redo X; |
| 1648 |
} elsif (not defined $code) { # no hexadecimal digit |
} elsif (not defined $code) { # no hexadecimal digit |
| 1649 |
!!!parse-error (type => 'bare hcro'); |
!!!parse-error (type => 'bare hcro'); |
| 1650 |
|
!!!back-next-input-character ($x_char, $self->{next_input_character}); |
| 1651 |
$self->{next_input_character} = 0x0023; # # |
$self->{next_input_character} = 0x0023; # # |
|
!!!back-next-input-character ($x_char); |
|
| 1652 |
return undef; |
return undef; |
| 1653 |
} elsif ($self->{next_input_character} == 0x003B) { # ; |
} elsif ($self->{next_input_character} == 0x003B) { # ; |
| 1654 |
!!!next-input-character; |
!!!next-input-character; |
| 1666 |
!!!parse-error (type => 'CR character reference'); |
!!!parse-error (type => 'CR character reference'); |
| 1667 |
$code = 0x000A; |
$code = 0x000A; |
| 1668 |
} elsif (0x80 <= $code and $code <= 0x9F) { |
} elsif (0x80 <= $code and $code <= 0x9F) { |
| 1669 |
!!!parse-error (type => sprintf 'c1 entity:U+%04X', $code); |
!!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code); |
| 1670 |
$code = $c1_entity_char->{$code}; |
$code = $c1_entity_char->{$code}; |
| 1671 |
} |
} |
| 1672 |
|
|
| 1701 |
!!!parse-error (type => 'CR character reference'); |
!!!parse-error (type => 'CR character reference'); |
| 1702 |
$code = 0x000A; |
$code = 0x000A; |
| 1703 |
} elsif (0x80 <= $code and $code <= 0x9F) { |
} elsif (0x80 <= $code and $code <= 0x9F) { |
| 1704 |
!!!parse-error (type => sprintf 'c1 entity:U+%04X', $code); |
!!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code); |
| 1705 |
$code = $c1_entity_char->{$code}; |
$code = $c1_entity_char->{$code}; |
| 1706 |
} |
} |
| 1707 |
|
|
| 1720 |
!!!next-input-character; |
!!!next-input-character; |
| 1721 |
|
|
| 1722 |
my $value = $entity_name; |
my $value = $entity_name; |
| 1723 |
my $match; |
my $match = 0; |
| 1724 |
require Whatpm::_NamedEntityList; |
require Whatpm::_NamedEntityList; |
| 1725 |
our $EntityChar; |
our $EntityChar; |
| 1726 |
|
|
| 1740 |
$match = 1; |
$match = 1; |
| 1741 |
!!!next-input-character; |
!!!next-input-character; |
| 1742 |
last; |
last; |
| 1743 |
} elsif (not $in_attr) { |
} else { |
| 1744 |
$value = $EntityChar->{$entity_name}; |
$value = $EntityChar->{$entity_name}; |
| 1745 |
$match = -1; |
$match = -1; |
| 1746 |
} else { |
!!!next-input-character; |
|
$value .= chr $self->{next_input_character}; |
|
| 1747 |
} |
} |
| 1748 |
} else { |
} else { |
| 1749 |
$value .= chr $self->{next_input_character}; |
$value .= chr $self->{next_input_character}; |
| 1750 |
|
$match *= 2; |
| 1751 |
|
!!!next-input-character; |
| 1752 |
} |
} |
|
!!!next-input-character; |
|
| 1753 |
} |
} |
| 1754 |
|
|
| 1755 |
if ($match > 0) { |
if ($match > 0) { |
| 1756 |
return {type => 'character', data => $value}; |
return {type => 'character', data => $value}; |
| 1757 |
} elsif ($match < 0) { |
} elsif ($match < 0) { |
| 1758 |
!!!parse-error (type => 'refc'); |
!!!parse-error (type => 'no refc'); |
| 1759 |
return {type => 'character', data => $value}; |
if ($in_attr and $match < -1) { |
| 1760 |
|
return {type => 'character', data => '&'.$entity_name}; |
| 1761 |
|
} else { |
| 1762 |
|
return {type => 'character', data => $value}; |
| 1763 |
|
} |
| 1764 |
} else { |
} else { |
| 1765 |
!!!parse-error (type => 'bare ero'); |
!!!parse-error (type => 'bare ero'); |
| 1766 |
## NOTE: No characters are consumed in the spec. |
## NOTE: No characters are consumed in the spec. |
| 2025 |
my $root_element; !!!create-element ($root_element, 'html'); |
my $root_element; !!!create-element ($root_element, 'html'); |
| 2026 |
$self->{document}->append_child ($root_element); |
$self->{document}->append_child ($root_element); |
| 2027 |
push @{$self->{open_elements}}, [$root_element, 'html']; |
push @{$self->{open_elements}}, [$root_element, 'html']; |
|
#$phase = 'main'; |
|
| 2028 |
## reprocess |
## reprocess |
| 2029 |
#redo B; |
#redo B; |
| 2030 |
return; |
return; ## Go to the main phase. |
| 2031 |
} # B |
} # B |
| 2032 |
} # _tree_construction_root_element |
} # _tree_construction_root_element |
| 2033 |
|
|
| 2067 |
th => 'in cell', |
th => 'in cell', |
| 2068 |
tr => 'in row', |
tr => 'in row', |
| 2069 |
tbody => 'in table body', |
tbody => 'in table body', |
| 2070 |
thead => 'in table head', |
thead => 'in table body', |
| 2071 |
tfoot => 'in table foot', |
tfoot => 'in table body', |
| 2072 |
caption => 'in caption', |
caption => 'in caption', |
| 2073 |
colgroup => 'in column group', |
colgroup => 'in column group', |
| 2074 |
table => 'in table', |
table => 'in table', |
| 2103 |
sub _tree_construction_main ($) { |
sub _tree_construction_main ($) { |
| 2104 |
my $self = shift; |
my $self = shift; |
| 2105 |
|
|
| 2106 |
my $phase = 'main'; |
my $previous_insertion_mode; |
| 2107 |
|
|
| 2108 |
my $active_formatting_elements = []; |
my $active_formatting_elements = []; |
| 2109 |
|
|
| 2199 |
$insert->($el); # /context node/->append_child ($el) |
$insert->($el); # /context node/->append_child ($el) |
| 2200 |
|
|
| 2201 |
## Step 3 |
## Step 3 |
| 2202 |
$self->{content_model_flag} = $content_model_flag; # CDATA or RCDATA |
$self->{content_model} = $content_model_flag; # CDATA or RCDATA |
| 2203 |
delete $self->{escape}; # MUST |
delete $self->{escape}; # MUST |
| 2204 |
|
|
| 2205 |
## Step 4 |
## Step 4 |
| 2217 |
} |
} |
| 2218 |
|
|
| 2219 |
## Step 6 |
## Step 6 |
| 2220 |
$self->{content_model_flag} = 'PCDATA'; |
$self->{content_model} = PCDATA_CONTENT_MODEL; |
| 2221 |
|
|
| 2222 |
## Step 7 |
## Step 7 |
| 2223 |
if ($token->{type} eq 'end tag' and $token->{tag_name} eq $start_tag_name) { |
if ($token->{type} eq 'end tag' and $token->{tag_name} eq $start_tag_name) { |
| 2224 |
## Ignore the token |
## Ignore the token |
| 2225 |
|
} elsif ($content_model_flag == CDATA_CONTENT_MODEL) { |
| 2226 |
|
!!!parse-error (type => 'in CDATA:#'.$token->{type}); |
| 2227 |
|
} elsif ($content_model_flag == RCDATA_CONTENT_MODEL) { |
| 2228 |
|
!!!parse-error (type => 'in RCDATA:#'.$token->{type}); |
| 2229 |
} else { |
} else { |
| 2230 |
!!!parse-error (type => 'in '.$content_model_flag.':#'.$token->{type}); |
die "$0: $content_model_flag in parse_rcdata"; |
| 2231 |
} |
} |
| 2232 |
!!!next-token; |
!!!next-token; |
| 2233 |
}; # $parse_rcdata |
}; # $parse_rcdata |
| 2238 |
!!!create-element ($script_el, 'script', $token->{attributes}); |
!!!create-element ($script_el, 'script', $token->{attributes}); |
| 2239 |
## TODO: mark as "parser-inserted" |
## TODO: mark as "parser-inserted" |
| 2240 |
|
|
| 2241 |
$self->{content_model_flag} = 'CDATA'; |
$self->{content_model} = CDATA_CONTENT_MODEL; |
| 2242 |
delete $self->{escape}; # MUST |
delete $self->{escape}; # MUST |
| 2243 |
|
|
| 2244 |
my $text = ''; |
my $text = ''; |
| 2251 |
$script_el->manakai_append_text ($text); |
$script_el->manakai_append_text ($text); |
| 2252 |
} |
} |
| 2253 |
|
|
| 2254 |
$self->{content_model_flag} = 'PCDATA'; |
$self->{content_model} = PCDATA_CONTENT_MODEL; |
| 2255 |
|
|
| 2256 |
if ($token->{type} eq 'end tag' and |
if ($token->{type} eq 'end tag' and |
| 2257 |
$token->{tag_name} eq 'script') { |
$token->{tag_name} eq 'script') { |
| 2505 |
return; |
return; |
| 2506 |
} elsif ($token->{tag_name} eq 'style') { |
} elsif ($token->{tag_name} eq 'style') { |
| 2507 |
## NOTE: This is an "as if in head" code clone |
## NOTE: This is an "as if in head" code clone |
| 2508 |
$parse_rcdata->('CDATA', $insert); |
$parse_rcdata->(CDATA_CONTENT_MODEL, $insert); |
| 2509 |
return; |
return; |
| 2510 |
} elsif ({ |
} elsif ({ |
| 2511 |
base => 1, link => 1, meta => 1, |
base => 1, link => 1, |
| 2512 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 2513 |
## NOTE: This is an "as if in head" code clone, only "-t" differs |
## NOTE: This is an "as if in head" code clone, only "-t" differs |
| 2514 |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
| 2515 |
pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec. |
pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec. |
| 2516 |
!!!next-token; |
!!!next-token; |
| 2517 |
## TODO: Extracting |charset| from |meta|. |
return; |
| 2518 |
|
} elsif ($token->{tag_name} eq 'meta') { |
| 2519 |
|
## NOTE: This is an "as if in head" code clone, only "-t" differs |
| 2520 |
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
| 2521 |
|
pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec. |
| 2522 |
|
|
| 2523 |
|
unless ($self->{confident}) { |
| 2524 |
|
my $charset; |
| 2525 |
|
if ($token->{attributes}->{charset}) { ## TODO: And if supported |
| 2526 |
|
$charset = $token->{attributes}->{charset}->{value}; |
| 2527 |
|
} |
| 2528 |
|
if ($token->{attributes}->{'http-equiv'}) { |
| 2529 |
|
## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition. |
| 2530 |
|
if ($token->{attributes}->{'http-equiv'}->{value} |
| 2531 |
|
=~ /\A[^;]*;[\x09-\x0D\x20]*charset[\x09-\x0D\x20]*= |
| 2532 |
|
[\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'| |
| 2533 |
|
([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) { |
| 2534 |
|
$charset = defined $1 ? $1 : defined $2 ? $2 : $3; |
| 2535 |
|
} ## TODO: And if supported |
| 2536 |
|
} |
| 2537 |
|
## TODO: Change the encoding |
| 2538 |
|
} |
| 2539 |
|
|
| 2540 |
|
!!!next-token; |
| 2541 |
return; |
return; |
| 2542 |
} elsif ($token->{tag_name} eq 'title') { |
} elsif ($token->{tag_name} eq 'title') { |
| 2543 |
!!!parse-error (type => 'in body:title'); |
!!!parse-error (type => 'in body:title'); |
| 2544 |
## NOTE: This is an "as if in head" code clone |
## NOTE: This is an "as if in head" code clone |
| 2545 |
$parse_rcdata->('RCDATA', $insert); |
$parse_rcdata->(RCDATA_CONTENT_MODEL, sub { |
| 2546 |
|
if (defined $self->{head_element}) { |
| 2547 |
|
$self->{head_element}->append_child ($_[0]); |
| 2548 |
|
} else { |
| 2549 |
|
$insert->($_[0]); |
| 2550 |
|
} |
| 2551 |
|
}); |
| 2552 |
return; |
return; |
| 2553 |
} elsif ($token->{tag_name} eq 'body') { |
} elsif ($token->{tag_name} eq 'body') { |
| 2554 |
!!!parse-error (type => 'in body:body'); |
!!!parse-error (type => 'in body:body'); |
| 2738 |
|
|
| 2739 |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
| 2740 |
|
|
| 2741 |
$self->{content_model_flag} = 'PLAINTEXT'; |
$self->{content_model} = PLAINTEXT_CONTENT_MODEL; |
| 2742 |
|
|
| 2743 |
!!!next-token; |
!!!next-token; |
| 2744 |
return; |
return; |
| 2841 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 2842 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 2843 |
if ($node->[1] eq 'nobr') { |
if ($node->[1] eq 'nobr') { |
| 2844 |
|
!!!parse-error (type => 'not closed:nobr'); |
| 2845 |
!!!back-token; |
!!!back-token; |
| 2846 |
$token = {type => 'end tag', tag_name => 'nobr'}; |
$token = {type => 'end tag', tag_name => 'nobr'}; |
| 2847 |
return; |
return; |
| 2893 |
return; |
return; |
| 2894 |
} elsif ($token->{tag_name} eq 'xmp') { |
} elsif ($token->{tag_name} eq 'xmp') { |
| 2895 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 2896 |
$parse_rcdata->('CDATA', $insert); |
$parse_rcdata->(CDATA_CONTENT_MODEL, $insert); |
| 2897 |
return; |
return; |
| 2898 |
} elsif ($token->{tag_name} eq 'table') { |
} elsif ($token->{tag_name} eq 'table') { |
| 2899 |
## has a p element in scope |
## has a p element in scope |
| 2925 |
!!!parse-error (type => 'image'); |
!!!parse-error (type => 'image'); |
| 2926 |
$token->{tag_name} = 'img'; |
$token->{tag_name} = 'img'; |
| 2927 |
} |
} |
| 2928 |
|
|
| 2929 |
|
## NOTE: There is an "as if <br>" code clone. |
| 2930 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 2931 |
|
|
| 2932 |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
| 3009 |
!!!create-element ($el, $token->{tag_name}, $token->{attributes}); |
!!!create-element ($el, $token->{tag_name}, $token->{attributes}); |
| 3010 |
|
|
| 3011 |
## TODO: $self->{form_element} if defined |
## TODO: $self->{form_element} if defined |
| 3012 |
$self->{content_model_flag} = 'RCDATA'; |
$self->{content_model} = RCDATA_CONTENT_MODEL; |
| 3013 |
delete $self->{escape}; # MUST |
delete $self->{escape}; # MUST |
| 3014 |
|
|
| 3015 |
$insert->($el); |
$insert->($el); |
| 3030 |
$el->manakai_append_text ($text); |
$el->manakai_append_text ($text); |
| 3031 |
} |
} |
| 3032 |
|
|
| 3033 |
$self->{content_model_flag} = 'PCDATA'; |
$self->{content_model} = PCDATA_CONTENT_MODEL; |
| 3034 |
|
|
| 3035 |
if ($token->{type} eq 'end tag' and |
if ($token->{type} eq 'end tag' and |
| 3036 |
$token->{tag_name} eq $tag_name) { |
$token->{tag_name} eq $tag_name) { |
| 3046 |
noframes => 1, |
noframes => 1, |
| 3047 |
noscript => 0, ## TODO: 1 if scripting is enabled |
noscript => 0, ## TODO: 1 if scripting is enabled |
| 3048 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 3049 |
$parse_rcdata->('CDATA', $insert); |
## NOTE: There are two "as if in body" code clones. |
| 3050 |
|
$parse_rcdata->(CDATA_CONTENT_MODEL, $insert); |
| 3051 |
return; |
return; |
| 3052 |
} elsif ($token->{tag_name} eq 'select') { |
} elsif ($token->{tag_name} eq 'select') { |
| 3053 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 3085 |
unless ({ |
unless ({ |
| 3086 |
dd => 1, dt => 1, li => 1, p => 1, td => 1, |
dd => 1, dt => 1, li => 1, p => 1, td => 1, |
| 3087 |
th => 1, tr => 1, body => 1, html => 1, |
th => 1, tr => 1, body => 1, html => 1, |
| 3088 |
|
tbody => 1, tfoot => 1, thead => 1, |
| 3089 |
}->{$_->[1]}) { |
}->{$_->[1]}) { |
| 3090 |
!!!parse-error (type => 'not closed:'.$_->[1]); |
!!!parse-error (type => 'not closed:'.$_->[1]); |
| 3091 |
} |
} |
| 3135 |
li => ($token->{tag_name} ne 'li'), |
li => ($token->{tag_name} ne 'li'), |
| 3136 |
p => ($token->{tag_name} ne 'p'), |
p => ($token->{tag_name} ne 'p'), |
| 3137 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 3138 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3139 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3140 |
!!!back-token; |
!!!back-token; |
| 3141 |
$token = {type => 'end tag', |
$token = {type => 'end tag', |
| 3153 |
} # INSCOPE |
} # INSCOPE |
| 3154 |
|
|
| 3155 |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 3156 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
if (defined $i) { |
| 3157 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 3158 |
|
} else { |
| 3159 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3160 |
|
} |
| 3161 |
} |
} |
| 3162 |
|
|
| 3163 |
splice @{$self->{open_elements}}, $i if defined $i; |
if (defined $i) { |
| 3164 |
|
splice @{$self->{open_elements}}, $i; |
| 3165 |
|
} elsif ($token->{tag_name} eq 'p') { |
| 3166 |
|
## As if <p>, then reprocess the current token |
| 3167 |
|
my $el; |
| 3168 |
|
!!!create-element ($el, 'p'); |
| 3169 |
|
$insert->($el); |
| 3170 |
|
} |
| 3171 |
$clear_up_to_marker->() |
$clear_up_to_marker->() |
| 3172 |
if { |
if { |
| 3173 |
button => 1, marquee => 1, object => 1, |
button => 1, marquee => 1, object => 1, |
| 3183 |
if ({ |
if ({ |
| 3184 |
dd => 1, dt => 1, li => 1, p => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 3185 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 3186 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3187 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3188 |
!!!back-token; |
!!!back-token; |
| 3189 |
$token = {type => 'end tag', |
$token = {type => 'end tag', |
| 3222 |
if ({ |
if ({ |
| 3223 |
dd => 1, dt => 1, li => 1, p => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 3224 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 3225 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3226 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3227 |
!!!back-token; |
!!!back-token; |
| 3228 |
$token = {type => 'end tag', |
$token = {type => 'end tag', |
| 3253 |
strong => 1, tt => 1, u => 1, |
strong => 1, tt => 1, u => 1, |
| 3254 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 3255 |
$formatting_end_tag->($token->{tag_name}); |
$formatting_end_tag->($token->{tag_name}); |
| 3256 |
## TODO: <http://html5.org/tools/web-apps-tracker?from=883&to=884> |
return; |
| 3257 |
|
} elsif ($token->{tag_name} eq 'br') { |
| 3258 |
|
!!!parse-error (type => 'unmatched end tag:br'); |
| 3259 |
|
|
| 3260 |
|
## As if <br> |
| 3261 |
|
$reconstruct_active_formatting_elements->($insert_to_current); |
| 3262 |
|
|
| 3263 |
|
my $el; |
| 3264 |
|
!!!create-element ($el, 'br'); |
| 3265 |
|
$insert->($el); |
| 3266 |
|
|
| 3267 |
|
## Ignore the token. |
| 3268 |
|
!!!next-token; |
| 3269 |
return; |
return; |
| 3270 |
} elsif ({ |
} elsif ({ |
| 3271 |
caption => 1, col => 1, colgroup => 1, frame => 1, |
caption => 1, col => 1, colgroup => 1, frame => 1, |
| 3272 |
frameset => 1, head => 1, option => 1, optgroup => 1, |
frameset => 1, head => 1, option => 1, optgroup => 1, |
| 3273 |
tbody => 1, td => 1, tfoot => 1, th => 1, |
tbody => 1, td => 1, tfoot => 1, th => 1, |
| 3274 |
thead => 1, tr => 1, |
thead => 1, tr => 1, |
| 3275 |
area => 1, basefont => 1, bgsound => 1, br => 1, |
area => 1, basefont => 1, bgsound => 1, |
| 3276 |
embed => 1, hr => 1, iframe => 1, image => 1, |
embed => 1, hr => 1, iframe => 1, image => 1, |
| 3277 |
img => 1, input => 1, isindex => 1, noembed => 1, |
img => 1, input => 1, isindex => 1, noembed => 1, |
| 3278 |
noframes => 1, param => 1, select => 1, spacer => 1, |
noframes => 1, param => 1, select => 1, spacer => 1, |
| 3299 |
if ({ |
if ({ |
| 3300 |
dd => 1, dt => 1, li => 1, p => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 3301 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 3302 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3303 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3304 |
!!!back-token; |
!!!back-token; |
| 3305 |
$token = {type => 'end tag', |
$token = {type => 'end tag', |
| 3343 |
}; # $in_body |
}; # $in_body |
| 3344 |
|
|
| 3345 |
B: { |
B: { |
| 3346 |
if ($phase eq 'main') { |
if ($token->{type} eq 'DOCTYPE') { |
| 3347 |
if ($token->{type} eq 'DOCTYPE') { |
!!!parse-error (type => 'DOCTYPE in the middle'); |
| 3348 |
!!!parse-error (type => 'in html:#DOCTYPE'); |
## Ignore the token |
| 3349 |
## Ignore the token |
## Stay in the phase |
| 3350 |
## Stay in the phase |
!!!next-token; |
| 3351 |
!!!next-token; |
redo B; |
| 3352 |
redo B; |
} elsif ($token->{type} eq 'end-of-file') { |
| 3353 |
} elsif ($token->{type} eq 'start tag' and |
if ($token->{insertion_mode} ne 'trailing end') { |
|
$token->{tag_name} eq 'html') { |
|
|
## ISSUE: "aa<html>" is not a parse error. |
|
|
## ISSUE: "<html>" in fragment is not a parse error. |
|
|
unless ($token->{first_start_tag}) { |
|
|
!!!parse-error (type => 'not first start tag'); |
|
|
} |
|
|
my $top_el = $self->{open_elements}->[0]->[0]; |
|
|
for my $attr_name (keys %{$token->{attributes}}) { |
|
|
unless ($top_el->has_attribute_ns (undef, $attr_name)) { |
|
|
$top_el->set_attribute_ns |
|
|
(undef, [undef, $attr_name], |
|
|
$token->{attributes}->{$attr_name}->{value}); |
|
|
} |
|
|
} |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'end-of-file') { |
|
| 3354 |
## Generate implied end tags |
## Generate implied end tags |
| 3355 |
if ({ |
if ({ |
| 3356 |
dd => 1, dt => 1, li => 1, p => 1, td => 1, th => 1, tr => 1, |
dd => 1, dt => 1, li => 1, p => 1, td => 1, th => 1, tr => 1, |
| 3357 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3358 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3359 |
!!!back-token; |
!!!back-token; |
| 3360 |
$token = {type => 'end tag', tag_name => $self->{open_elements}->[-1]->[1]}; |
$token = {type => 'end tag', tag_name => $self->{open_elements}->[-1]->[1]}; |
| 3370 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 3371 |
} |
} |
| 3372 |
|
|
|
## Stop parsing |
|
|
last B; |
|
|
|
|
| 3373 |
## ISSUE: There is an issue in the spec. |
## ISSUE: There is an issue in the spec. |
| 3374 |
|
} |
| 3375 |
|
|
| 3376 |
|
## Stop parsing |
| 3377 |
|
last B; |
| 3378 |
|
} elsif ($token->{type} eq 'start tag' and |
| 3379 |
|
$token->{tag_name} eq 'html') { |
| 3380 |
|
if ($self->{insertion_mode} eq 'trailing end') { |
| 3381 |
|
## Turn into the main phase |
| 3382 |
|
!!!parse-error (type => 'after html:html'); |
| 3383 |
|
$self->{insertion_mode} = $previous_insertion_mode; |
| 3384 |
|
} |
| 3385 |
|
|
| 3386 |
|
## ISSUE: "aa<html>" is not a parse error. |
| 3387 |
|
## ISSUE: "<html>" in fragment is not a parse error. |
| 3388 |
|
unless ($token->{first_start_tag}) { |
| 3389 |
|
!!!parse-error (type => 'not first start tag'); |
| 3390 |
|
} |
| 3391 |
|
my $top_el = $self->{open_elements}->[0]->[0]; |
| 3392 |
|
for my $attr_name (keys %{$token->{attributes}}) { |
| 3393 |
|
unless ($top_el->has_attribute_ns (undef, $attr_name)) { |
| 3394 |
|
$top_el->set_attribute_ns |
| 3395 |
|
(undef, [undef, $attr_name], |
| 3396 |
|
$token->{attributes}->{$attr_name}->{value}); |
| 3397 |
|
} |
| 3398 |
|
} |
| 3399 |
|
!!!next-token; |
| 3400 |
|
redo B; |
| 3401 |
|
} elsif ($token->{type} eq 'comment') { |
| 3402 |
|
my $comment = $self->{document}->create_comment ($token->{data}); |
| 3403 |
|
if ($self->{insertion_mode} eq 'trailing end') { |
| 3404 |
|
$self->{document}->append_child ($comment); |
| 3405 |
|
} elsif ($self->{insertion_mode} eq 'after body') { |
| 3406 |
|
$self->{open_elements}->[0]->[0]->append_child ($comment); |
| 3407 |
} else { |
} else { |
| 3408 |
if ($self->{insertion_mode} eq 'before head') { |
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
| 3409 |
|
} |
| 3410 |
|
!!!next-token; |
| 3411 |
|
redo B; |
| 3412 |
|
} elsif ($self->{insertion_mode} eq 'before head') { |
| 3413 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 3414 |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 3415 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
| 3425 |
$self->{insertion_mode} = 'in head'; |
$self->{insertion_mode} = 'in head'; |
| 3426 |
## reprocess |
## reprocess |
| 3427 |
redo B; |
redo B; |
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 3428 |
} elsif ($token->{type} eq 'start tag') { |
} elsif ($token->{type} eq 'start tag') { |
| 3429 |
my $attr = $token->{tag_name} eq 'head' ? $token->{attributes} : {}; |
my $attr = $token->{tag_name} eq 'head' ? $token->{attributes} : {}; |
| 3430 |
!!!create-element ($self->{head_element}, 'head', $attr); |
!!!create-element ($self->{head_element}, 'head', $attr); |
| 3443 |
} |
} |
| 3444 |
redo B; |
redo B; |
| 3445 |
} elsif ($token->{type} eq 'end tag') { |
} elsif ($token->{type} eq 'end tag') { |
| 3446 |
if ({head => 1, body => 1, html => 1}->{$token->{tag_name}}) { |
if ({ |
| 3447 |
|
head => 1, body => 1, html => 1, |
| 3448 |
|
p => 1, br => 1, |
| 3449 |
|
}->{$token->{tag_name}}) { |
| 3450 |
## As if <head> |
## As if <head> |
| 3451 |
!!!create-element ($self->{head_element}, 'head'); |
!!!create-element ($self->{head_element}, 'head'); |
| 3452 |
$self->{open_elements}->[-1]->[0]->append_child ($self->{head_element}); |
$self->{open_elements}->[-1]->[0]->append_child ($self->{head_element}); |
| 3476 |
} |
} |
| 3477 |
|
|
| 3478 |
# |
# |
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 3479 |
} elsif ($token->{type} eq 'start tag') { |
} elsif ($token->{type} eq 'start tag') { |
| 3480 |
if ({base => ($self->{insertion_mode} eq 'in head' or |
if ({base => ($self->{insertion_mode} eq 'in head' or |
| 3481 |
$self->{insertion_mode} eq 'after head'), |
$self->{insertion_mode} eq 'after head'), |
| 3482 |
link => 1, meta => 1}->{$token->{tag_name}}) { |
link => 1}->{$token->{tag_name}}) { |
| 3483 |
## NOTE: There is a "as if in head" code clone. |
## NOTE: There is a "as if in head" code clone. |
| 3484 |
if ($self->{insertion_mode} eq 'after head') { |
if ($self->{insertion_mode} eq 'after head') { |
| 3485 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
| 3487 |
} |
} |
| 3488 |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 3489 |
pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec. |
pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec. |
| 3490 |
|
pop @{$self->{open_elements}} |
| 3491 |
|
if $self->{insertion_mode} eq 'after head'; |
| 3492 |
|
!!!next-token; |
| 3493 |
|
redo B; |
| 3494 |
|
} elsif ($token->{tag_name} eq 'meta') { |
| 3495 |
|
## NOTE: There is a "as if in head" code clone. |
| 3496 |
|
if ($self->{insertion_mode} eq 'after head') { |
| 3497 |
|
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
| 3498 |
|
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3499 |
|
} |
| 3500 |
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 3501 |
|
pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec. |
| 3502 |
|
|
| 3503 |
|
unless ($self->{confident}) { |
| 3504 |
|
my $charset; |
| 3505 |
|
if ($token->{attributes}->{charset}) { ## TODO: And if supported |
| 3506 |
|
$charset = $token->{attributes}->{charset}->{value}; |
| 3507 |
|
} |
| 3508 |
|
if ($token->{attributes}->{'http-equiv'}) { |
| 3509 |
|
## ISSUE: Algorithm name in the spec was incorrect so that not linked to the definition. |
| 3510 |
|
if ($token->{attributes}->{'http-equiv'}->{value} |
| 3511 |
|
=~ /\A[^;]*;[\x09-\x0D\x20]*charset[\x09-\x0D\x20]*= |
| 3512 |
|
[\x09-\x0D\x20]*(?>"([^"]*)"|'([^']*)'| |
| 3513 |
|
([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) { |
| 3514 |
|
$charset = defined $1 ? $1 : defined $2 ? $2 : $3; |
| 3515 |
|
} ## TODO: And if supported |
| 3516 |
|
} |
| 3517 |
|
## TODO: Change the encoding |
| 3518 |
|
} |
| 3519 |
|
|
| 3520 |
## TODO: Extracting |charset| from |meta|. |
## TODO: Extracting |charset| from |meta|. |
| 3521 |
pop @{$self->{open_elements}} |
pop @{$self->{open_elements}} |
| 3522 |
if $self->{insertion_mode} eq 'after head'; |
if $self->{insertion_mode} eq 'after head'; |
| 3529 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
| 3530 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3531 |
} |
} |
| 3532 |
$parse_rcdata->('RCDATA', $insert_to_current); |
my $parent = defined $self->{head_element} ? $self->{head_element} |
| 3533 |
|
: $self->{open_elements}->[-1]->[0]; |
| 3534 |
|
$parse_rcdata->(RCDATA_CONTENT_MODEL, |
| 3535 |
|
sub { $parent->append_child ($_[0]) }); |
| 3536 |
pop @{$self->{open_elements}} |
pop @{$self->{open_elements}} |
| 3537 |
if $self->{insertion_mode} eq 'after head'; |
if $self->{insertion_mode} eq 'after head'; |
| 3538 |
redo B; |
redo B; |
| 3544 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
| 3545 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3546 |
} |
} |
| 3547 |
$parse_rcdata->('CDATA', $insert_to_current); |
$parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current); |
| 3548 |
pop @{$self->{open_elements}} |
pop @{$self->{open_elements}} |
| 3549 |
if $self->{insertion_mode} eq 'after head'; |
if $self->{insertion_mode} eq 'after head'; |
| 3550 |
redo B; |
redo B; |
| 3556 |
!!!next-token; |
!!!next-token; |
| 3557 |
redo B; |
redo B; |
| 3558 |
} elsif ($self->{insertion_mode} eq 'in head noscript') { |
} elsif ($self->{insertion_mode} eq 'in head noscript') { |
| 3559 |
!!!parse-error (type => 'noscript in noscript'); |
!!!parse-error (type => 'in noscript:noscript'); |
| 3560 |
## Ignore the token |
## Ignore the token |
| 3561 |
|
!!!next-token; |
| 3562 |
redo B; |
redo B; |
| 3563 |
} else { |
} else { |
| 3564 |
# |
# |
| 3609 |
!!!next-token; |
!!!next-token; |
| 3610 |
redo B; |
redo B; |
| 3611 |
} elsif ($self->{insertion_mode} eq 'in head' and |
} elsif ($self->{insertion_mode} eq 'in head' and |
| 3612 |
($token->{tag_name} eq 'body' or |
{ |
| 3613 |
$token->{tag_name} eq 'html')) { |
body => 1, html => 1, |
| 3614 |
|
p => 1, br => 1, |
| 3615 |
|
}->{$token->{tag_name}}) { |
| 3616 |
|
# |
| 3617 |
|
} elsif ($self->{insertion_mode} eq 'in head noscript' and |
| 3618 |
|
{ |
| 3619 |
|
p => 1, br => 1, |
| 3620 |
|
}->{$token->{tag_name}}) { |
| 3621 |
# |
# |
| 3622 |
} elsif ($self->{insertion_mode} ne 'after head') { |
} elsif ($self->{insertion_mode} ne 'after head') { |
| 3623 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3647 |
redo B; |
redo B; |
| 3648 |
|
|
| 3649 |
## ISSUE: An issue in the spec. |
## ISSUE: An issue in the spec. |
| 3650 |
} elsif ($self->{insertion_mode} eq 'in body') { |
} elsif ($self->{insertion_mode} eq 'in body' or |
| 3651 |
|
$self->{insertion_mode} eq 'in cell' or |
| 3652 |
|
$self->{insertion_mode} eq 'in caption') { |
| 3653 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 3654 |
## NOTE: There is a code clone of "character in body". |
## NOTE: There is a code clone of "character in body". |
| 3655 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 3658 |
|
|
| 3659 |
!!!next-token; |
!!!next-token; |
| 3660 |
redo B; |
redo B; |
|
} elsif ($token->{type} eq 'comment') { |
|
|
## NOTE: There is a code clone of "comment in body". |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} else { |
|
|
$in_body->($insert_to_current); |
|
|
redo B; |
|
|
} |
|
|
} elsif ($self->{insertion_mode} eq 'in table') { |
|
|
if ($token->{type} eq 'character') { |
|
|
## NOTE: There are "character in table" code clones. |
|
|
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; |
|
|
} |
|
|
} |
|
|
|
|
|
!!!parse-error (type => 'in table:#character'); |
|
|
|
|
|
## As if in body, but insert into foster parent element |
|
|
## ISSUE: Spec says that "whenever a node would be inserted |
|
|
## into the current node" while characters might not be |
|
|
## result in a new Text node. |
|
|
$reconstruct_active_formatting_elements->($insert_to_foster); |
|
|
|
|
|
if ({ |
|
|
table => 1, tbody => 1, tfoot => 1, |
|
|
thead => 1, tr => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
# MUST |
|
|
my $foster_parent_element; |
|
|
my $next_sibling; |
|
|
my $prev_sibling; |
|
|
OE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
if ($self->{open_elements}->[$_]->[1] eq 'table') { |
|
|
my $parent = $self->{open_elements}->[$_]->[0]->parent_node; |
|
|
if (defined $parent and $parent->node_type == 1) { |
|
|
$foster_parent_element = $parent; |
|
|
$next_sibling = $self->{open_elements}->[$_]->[0]; |
|
|
$prev_sibling = $next_sibling->previous_sibling; |
|
|
} else { |
|
|
$foster_parent_element = $self->{open_elements}->[$_ - 1]->[0]; |
|
|
$prev_sibling = $foster_parent_element->last_child; |
|
|
} |
|
|
last OE; |
|
|
} |
|
|
} # OE |
|
|
$foster_parent_element = $self->{open_elements}->[0]->[0] and |
|
|
$prev_sibling = $foster_parent_element->last_child |
|
|
unless defined $foster_parent_element; |
|
|
if (defined $prev_sibling and |
|
|
$prev_sibling->node_type == 3) { |
|
|
$prev_sibling->manakai_append_text ($token->{data}); |
|
|
} else { |
|
|
$foster_parent_element->insert_before |
|
|
($self->{document}->create_text_node ($token->{data}), |
|
|
$next_sibling); |
|
|
} |
|
|
} else { |
|
|
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
|
|
} |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 3661 |
} elsif ($token->{type} eq 'start tag') { |
} elsif ($token->{type} eq 'start tag') { |
| 3662 |
if ({ |
if ({ |
| 3663 |
caption => 1, |
caption => 1, col => 1, colgroup => 1, tbody => 1, |
| 3664 |
colgroup => 1, |
td => 1, tfoot => 1, th => 1, thead => 1, tr => 1, |
|
tbody => 1, tfoot => 1, thead => 1, |
|
| 3665 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 3666 |
## Clear back to table context |
if ($self->{insertion_mode} eq 'in cell') { |
| 3667 |
while ($self->{open_elements}->[-1]->[1] ne 'table' and |
## have an element in table scope |
| 3668 |
$self->{open_elements}->[-1]->[1] ne 'html') { |
my $tn; |
| 3669 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 3670 |
pop @{$self->{open_elements}}; |
my $node = $self->{open_elements}->[$_]; |
| 3671 |
} |
if ($node->[1] eq 'td' or $node->[1] eq 'th') { |
| 3672 |
|
$tn = $node->[1]; |
| 3673 |
push @$active_formatting_elements, ['#marker', ''] |
last INSCOPE; |
| 3674 |
if $token->{tag_name} eq 'caption'; |
} elsif ({ |
| 3675 |
|
table => 1, html => 1, |
| 3676 |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
}->{$node->[1]}) { |
| 3677 |
$self->{insertion_mode} = { |
last INSCOPE; |
| 3678 |
caption => 'in caption', |
} |
| 3679 |
colgroup => 'in column group', |
} # INSCOPE |
| 3680 |
tbody => 'in table body', |
unless (defined $tn) { |
| 3681 |
tfoot => 'in table body', |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3682 |
thead => 'in table body', |
## Ignore the token |
| 3683 |
}->{$token->{tag_name}}; |
!!!next-token; |
| 3684 |
!!!next-token; |
redo B; |
| 3685 |
redo B; |
} |
| 3686 |
} elsif ({ |
|
| 3687 |
col => 1, |
## Close the cell |
| 3688 |
td => 1, th => 1, tr => 1, |
!!!back-token; # <?> |
| 3689 |
}->{$token->{tag_name}}) { |
$token = {type => 'end tag', tag_name => $tn}; |
| 3690 |
## Clear back to table context |
redo B; |
| 3691 |
while ($self->{open_elements}->[-1]->[1] ne 'table' and |
} elsif ($self->{insertion_mode} eq 'in caption') { |
| 3692 |
$self->{open_elements}->[-1]->[1] ne 'html') { |
!!!parse-error (type => 'not closed:caption'); |
| 3693 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
| 3694 |
pop @{$self->{open_elements}}; |
## As if </caption> |
| 3695 |
} |
## have a table element in table scope |
| 3696 |
|
my $i; |
| 3697 |
!!!insert-element ($token->{tag_name} eq 'col' ? 'colgroup' : 'tbody'); |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 3698 |
$self->{insertion_mode} = $token->{tag_name} eq 'col' |
my $node = $self->{open_elements}->[$_]; |
| 3699 |
? 'in column group' : 'in table body'; |
if ($node->[1] eq 'caption') { |
| 3700 |
## reprocess |
$i = $_; |
| 3701 |
redo B; |
last INSCOPE; |
| 3702 |
} elsif ($token->{tag_name} eq 'table') { |
} elsif ({ |
| 3703 |
## NOTE: There are code clones for this "table in table" |
table => 1, html => 1, |
| 3704 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
}->{$node->[1]}) { |
| 3705 |
|
last INSCOPE; |
| 3706 |
|
} |
| 3707 |
|
} # INSCOPE |
| 3708 |
|
unless (defined $i) { |
| 3709 |
|
!!!parse-error (type => 'unmatched end tag:caption'); |
| 3710 |
|
## Ignore the token |
| 3711 |
|
!!!next-token; |
| 3712 |
|
redo B; |
| 3713 |
|
} |
| 3714 |
|
|
| 3715 |
|
## generate implied end tags |
| 3716 |
|
if ({ |
| 3717 |
|
dd => 1, dt => 1, li => 1, p => 1, |
| 3718 |
|
td => 1, th => 1, tr => 1, |
| 3719 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3720 |
|
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3721 |
|
!!!back-token; # <?> |
| 3722 |
|
$token = {type => 'end tag', tag_name => 'caption'}; |
| 3723 |
|
!!!back-token; |
| 3724 |
|
$token = {type => 'end tag', |
| 3725 |
|
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
| 3726 |
|
redo B; |
| 3727 |
|
} |
| 3728 |
|
|
| 3729 |
## As if </table> |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
| 3730 |
## have a table element in table scope |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
my $i; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq 'table') { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
| 3731 |
} |
} |
| 3732 |
} # INSCOPE |
|
| 3733 |
unless (defined $i) { |
splice @{$self->{open_elements}}, $i; |
| 3734 |
!!!parse-error (type => 'unmatched end tag:table'); |
|
| 3735 |
## Ignore tokens </table><table> |
$clear_up_to_marker->(); |
| 3736 |
!!!next-token; |
|
| 3737 |
redo B; |
$self->{insertion_mode} = 'in table'; |
| 3738 |
} |
|
| 3739 |
|
## reprocess |
|
## generate implied end tags |
|
|
if ({ |
|
|
dd => 1, dt => 1, li => 1, p => 1, |
|
|
td => 1, th => 1, tr => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!back-token; # <table> |
|
|
$token = {type => 'end tag', tag_name => 'table'}; |
|
|
!!!back-token; |
|
|
$token = {type => 'end tag', |
|
|
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
|
| 3740 |
redo B; |
redo B; |
| 3741 |
|
} else { |
| 3742 |
|
# |
| 3743 |
} |
} |
|
|
|
|
if ($self->{open_elements}->[-1]->[1] ne 'table') { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
|
} |
|
|
|
|
|
splice @{$self->{open_elements}}, $i; |
|
|
|
|
|
$self->_reset_insertion_mode; |
|
|
|
|
|
## reprocess |
|
|
redo B; |
|
| 3744 |
} else { |
} else { |
| 3745 |
# |
# |
| 3746 |
} |
} |
| 3747 |
} elsif ($token->{type} eq 'end tag') { |
} elsif ($token->{type} eq 'end tag') { |
| 3748 |
if ($token->{tag_name} eq 'table') { |
if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') { |
| 3749 |
## have a table element in table scope |
if ($self->{insertion_mode} eq 'in cell') { |
| 3750 |
my $i; |
## have an element in table scope |
| 3751 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
my $i; |
| 3752 |
my $node = $self->{open_elements}->[$_]; |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 3753 |
if ($node->[1] eq $token->{tag_name}) { |
my $node = $self->{open_elements}->[$_]; |
| 3754 |
$i = $_; |
if ($node->[1] eq $token->{tag_name}) { |
| 3755 |
last INSCOPE; |
$i = $_; |
| 3756 |
} elsif ({ |
last INSCOPE; |
| 3757 |
table => 1, html => 1, |
} elsif ({ |
| 3758 |
}->{$node->[1]}) { |
table => 1, html => 1, |
| 3759 |
last INSCOPE; |
}->{$node->[1]}) { |
| 3760 |
|
last INSCOPE; |
| 3761 |
|
} |
| 3762 |
|
} # INSCOPE |
| 3763 |
|
unless (defined $i) { |
| 3764 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3765 |
|
## Ignore the token |
| 3766 |
|
!!!next-token; |
| 3767 |
|
redo B; |
| 3768 |
|
} |
| 3769 |
|
|
| 3770 |
|
## generate implied end tags |
| 3771 |
|
if ({ |
| 3772 |
|
dd => 1, dt => 1, li => 1, p => 1, |
| 3773 |
|
td => ($token->{tag_name} eq 'th'), |
| 3774 |
|
th => ($token->{tag_name} eq 'td'), |
| 3775 |
|
tr => 1, |
| 3776 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3777 |
|
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3778 |
|
!!!back-token; |
| 3779 |
|
$token = {type => 'end tag', |
| 3780 |
|
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
| 3781 |
|
redo B; |
| 3782 |
} |
} |
| 3783 |
} # INSCOPE |
|
| 3784 |
unless (defined $i) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 3785 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 3786 |
|
} |
| 3787 |
|
|
| 3788 |
|
splice @{$self->{open_elements}}, $i; |
| 3789 |
|
|
| 3790 |
|
$clear_up_to_marker->(); |
| 3791 |
|
|
| 3792 |
|
$self->{insertion_mode} = 'in row'; |
| 3793 |
|
|
| 3794 |
|
!!!next-token; |
| 3795 |
|
redo B; |
| 3796 |
|
} elsif ($self->{insertion_mode} eq 'in caption') { |
| 3797 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3798 |
## Ignore the token |
## Ignore the token |
| 3799 |
!!!next-token; |
!!!next-token; |
| 3800 |
redo B; |
redo B; |
| 3801 |
|
} else { |
| 3802 |
|
# |
| 3803 |
} |
} |
| 3804 |
|
} elsif ($token->{tag_name} eq 'caption') { |
| 3805 |
## generate implied end tags |
if ($self->{insertion_mode} eq 'in caption') { |
| 3806 |
if ({ |
## have a table element in table scope |
| 3807 |
dd => 1, dt => 1, li => 1, p => 1, |
my $i; |
| 3808 |
td => 1, th => 1, tr => 1, |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 3809 |
}->{$self->{open_elements}->[-1]->[1]}) { |
my $node = $self->{open_elements}->[$_]; |
| 3810 |
!!!back-token; |
if ($node->[1] eq $token->{tag_name}) { |
| 3811 |
$token = {type => 'end tag', |
$i = $_; |
| 3812 |
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
last INSCOPE; |
| 3813 |
redo B; |
} elsif ({ |
| 3814 |
} |
table => 1, html => 1, |
| 3815 |
|
}->{$node->[1]}) { |
| 3816 |
if ($self->{open_elements}->[-1]->[1] ne 'table') { |
last INSCOPE; |
| 3817 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
} |
| 3818 |
} |
} # INSCOPE |
| 3819 |
|
unless (defined $i) { |
| 3820 |
splice @{$self->{open_elements}}, $i; |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3821 |
|
## Ignore the token |
| 3822 |
$self->_reset_insertion_mode; |
!!!next-token; |
| 3823 |
|
redo B; |
| 3824 |
!!!next-token; |
} |
| 3825 |
redo B; |
|
| 3826 |
} elsif ({ |
## generate implied end tags |
| 3827 |
body => 1, caption => 1, col => 1, colgroup => 1, |
if ({ |
| 3828 |
html => 1, tbody => 1, td => 1, tfoot => 1, th => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 3829 |
thead => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 3830 |
}->{$token->{tag_name}}) { |
tbody => 1, tfoot=> 1, thead => 1, |
| 3831 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3832 |
## Ignore the token |
!!!back-token; |
| 3833 |
!!!next-token; |
$token = {type => 'end tag', |
| 3834 |
redo B; |
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
| 3835 |
} else { |
redo B; |
|
# |
|
|
} |
|
|
} else { |
|
|
# |
|
|
} |
|
|
|
|
|
!!!parse-error (type => 'in table:'.$token->{tag_name}); |
|
|
$in_body->($insert_to_foster); |
|
|
redo B; |
|
|
} elsif ($self->{insertion_mode} eq 'in caption') { |
|
|
if ($token->{type} eq 'character') { |
|
|
## NOTE: This is a code clone of "character in body". |
|
|
$reconstruct_active_formatting_elements->($insert_to_current); |
|
|
|
|
|
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'comment') { |
|
|
## NOTE: This is a code clone of "comment in body". |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'start tag') { |
|
|
if ({ |
|
|
caption => 1, col => 1, colgroup => 1, tbody => 1, |
|
|
td => 1, tfoot => 1, th => 1, thead => 1, tr => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
!!!parse-error (type => 'not closed:caption'); |
|
|
|
|
|
## As if </caption> |
|
|
## have a table element in table scope |
|
|
my $i; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq 'caption') { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
| 3836 |
} |
} |
| 3837 |
} # INSCOPE |
|
| 3838 |
unless (defined $i) { |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
| 3839 |
!!!parse-error (type => 'unmatched end tag:caption'); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 3840 |
## Ignore the token |
} |
| 3841 |
|
|
| 3842 |
|
splice @{$self->{open_elements}}, $i; |
| 3843 |
|
|
| 3844 |
|
$clear_up_to_marker->(); |
| 3845 |
|
|
| 3846 |
|
$self->{insertion_mode} = 'in table'; |
| 3847 |
|
|
| 3848 |
!!!next-token; |
!!!next-token; |
| 3849 |
redo B; |
redo B; |
| 3850 |
} |
} elsif ($self->{insertion_mode} eq 'in cell') { |
| 3851 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3852 |
## generate implied end tags |
## Ignore the token |
| 3853 |
if ({ |
!!!next-token; |
|
dd => 1, dt => 1, li => 1, p => 1, |
|
|
td => 1, th => 1, tr => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!back-token; # <?> |
|
|
$token = {type => 'end tag', tag_name => 'caption'}; |
|
|
!!!back-token; |
|
|
$token = {type => 'end tag', |
|
|
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
|
| 3854 |
redo B; |
redo B; |
| 3855 |
|
} else { |
| 3856 |
|
# |
| 3857 |
} |
} |
| 3858 |
|
} elsif ({ |
| 3859 |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
table => 1, tbody => 1, tfoot => 1, |
| 3860 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
thead => 1, tr => 1, |
| 3861 |
} |
}->{$token->{tag_name}} and |
| 3862 |
|
$self->{insertion_mode} eq 'in cell') { |
| 3863 |
splice @{$self->{open_elements}}, $i; |
## have an element in table scope |
|
|
|
|
$clear_up_to_marker->(); |
|
|
|
|
|
$self->{insertion_mode} = 'in table'; |
|
|
|
|
|
## reprocess |
|
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} elsif ($token->{type} eq 'end tag') { |
|
|
if ($token->{tag_name} eq 'caption') { |
|
|
## have a table element in table scope |
|
| 3864 |
my $i; |
my $i; |
| 3865 |
|
my $tn; |
| 3866 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 3867 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 3868 |
if ($node->[1] eq $token->{tag_name}) { |
if ($node->[1] eq $token->{tag_name}) { |
| 3869 |
$i = $_; |
$i = $_; |
| 3870 |
last INSCOPE; |
last INSCOPE; |
| 3871 |
|
} elsif ($node->[1] eq 'td' or $node->[1] eq 'th') { |
| 3872 |
|
$tn = $node->[1]; |
| 3873 |
|
## NOTE: There is exactly one |td| or |th| element |
| 3874 |
|
## in scope in the stack of open elements by definition. |
| 3875 |
} elsif ({ |
} elsif ({ |
| 3876 |
table => 1, html => 1, |
table => 1, html => 1, |
| 3877 |
}->{$node->[1]}) { |
}->{$node->[1]}) { |
| 3884 |
!!!next-token; |
!!!next-token; |
| 3885 |
redo B; |
redo B; |
| 3886 |
} |
} |
|
|
|
|
## generate implied end tags |
|
|
if ({ |
|
|
dd => 1, dt => 1, li => 1, p => 1, |
|
|
td => 1, th => 1, tr => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!back-token; |
|
|
$token = {type => 'end tag', |
|
|
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
|
|
redo B; |
|
|
} |
|
| 3887 |
|
|
| 3888 |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
## Close the cell |
| 3889 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!back-token; # </?> |
| 3890 |
} |
$token = {type => 'end tag', tag_name => $tn}; |
|
|
|
|
splice @{$self->{open_elements}}, $i; |
|
|
|
|
|
$clear_up_to_marker->(); |
|
|
|
|
|
$self->{insertion_mode} = 'in table'; |
|
|
|
|
|
!!!next-token; |
|
| 3891 |
redo B; |
redo B; |
| 3892 |
} elsif ($token->{tag_name} eq 'table') { |
} elsif ($token->{tag_name} eq 'table' and |
| 3893 |
|
$self->{insertion_mode} eq 'in caption') { |
| 3894 |
!!!parse-error (type => 'not closed:caption'); |
!!!parse-error (type => 'not closed:caption'); |
| 3895 |
|
|
| 3896 |
## As if </caption> |
## As if </caption> |
| 3918 |
if ({ |
if ({ |
| 3919 |
dd => 1, dt => 1, li => 1, p => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 3920 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 3921 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 3922 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 3923 |
!!!back-token; # </table> |
!!!back-token; # </table> |
| 3924 |
$token = {type => 'end tag', tag_name => 'caption'}; |
$token = {type => 'end tag', tag_name => 'caption'}; |
| 3941 |
## reprocess |
## reprocess |
| 3942 |
redo B; |
redo B; |
| 3943 |
} elsif ({ |
} elsif ({ |
| 3944 |
body => 1, col => 1, colgroup => 1, |
body => 1, col => 1, colgroup => 1, html => 1, |
|
html => 1, tbody => 1, td => 1, tfoot => 1, |
|
|
th => 1, thead => 1, tr => 1, |
|
| 3945 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 3946 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
if ($self->{insertion_mode} eq 'in cell' or |
| 3947 |
## Ignore the token |
$self->{insertion_mode} eq 'in caption') { |
| 3948 |
redo B; |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
} else { |
|
|
# |
|
|
} |
|
|
} else { |
|
|
# |
|
|
} |
|
|
|
|
|
$in_body->($insert_to_current); |
|
|
redo B; |
|
|
} elsif ($self->{insertion_mode} eq 'in column group') { |
|
|
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; |
|
|
} |
|
|
} |
|
|
|
|
|
# |
|
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'start tag') { |
|
|
if ($token->{tag_name} eq 'col') { |
|
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
|
|
pop @{$self->{open_elements}}; |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} elsif ($token->{type} eq 'end tag') { |
|
|
if ($token->{tag_name} eq 'colgroup') { |
|
|
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
|
|
!!!parse-error (type => 'unmatched end tag:colgroup'); |
|
| 3949 |
## Ignore the token |
## Ignore the token |
| 3950 |
!!!next-token; |
!!!next-token; |
| 3951 |
redo B; |
redo B; |
| 3952 |
} else { |
} else { |
| 3953 |
pop @{$self->{open_elements}}; # colgroup |
# |
|
$self->{insertion_mode} = 'in table'; |
|
|
!!!next-token; |
|
|
redo B; |
|
| 3954 |
} |
} |
| 3955 |
} elsif ($token->{tag_name} eq 'col') { |
} elsif ({ |
| 3956 |
!!!parse-error (type => 'unmatched end tag:col'); |
tbody => 1, tfoot => 1, |
| 3957 |
|
thead => 1, tr => 1, |
| 3958 |
|
}->{$token->{tag_name}} and |
| 3959 |
|
$self->{insertion_mode} eq 'in caption') { |
| 3960 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 3961 |
## Ignore the token |
## Ignore the token |
| 3962 |
!!!next-token; |
!!!next-token; |
| 3963 |
redo B; |
redo B; |
| 3964 |
} else { |
} else { |
| 3965 |
# |
# |
| 3966 |
} |
} |
| 3967 |
} else { |
} else { |
| 3968 |
# |
# |
| 3969 |
} |
} |
| 3970 |
|
|
| 3971 |
## As if </colgroup> |
$in_body->($insert_to_current); |
| 3972 |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
redo B; |
| 3973 |
!!!parse-error (type => 'unmatched end tag:colgroup'); |
} elsif ($self->{insertion_mode} eq 'in row' or |
| 3974 |
## Ignore the token |
$self->{insertion_mode} eq 'in table body' or |
| 3975 |
!!!next-token; |
$self->{insertion_mode} eq 'in table') { |
|
redo B; |
|
|
} else { |
|
|
pop @{$self->{open_elements}}; # colgroup |
|
|
$self->{insertion_mode} = 'in table'; |
|
|
## reprocess |
|
|
redo B; |
|
|
} |
|
|
} elsif ($self->{insertion_mode} eq 'in table body') { |
|
| 3976 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 3977 |
## NOTE: This is a "character in table" code clone. |
## NOTE: There are "character in table" code clones. |
| 3978 |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 3979 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
| 3980 |
|
|
| 3991 |
## into the current node" while characters might not be |
## into the current node" while characters might not be |
| 3992 |
## result in a new Text node. |
## result in a new Text node. |
| 3993 |
$reconstruct_active_formatting_elements->($insert_to_foster); |
$reconstruct_active_formatting_elements->($insert_to_foster); |
| 3994 |
|
|
| 3995 |
if ({ |
if ({ |
| 3996 |
table => 1, tbody => 1, tfoot => 1, |
table => 1, tbody => 1, tfoot => 1, |
| 3997 |
thead => 1, tr => 1, |
thead => 1, tr => 1, |
| 4031 |
|
|
| 4032 |
!!!next-token; |
!!!next-token; |
| 4033 |
redo B; |
redo B; |
|
} elsif ($token->{type} eq 'comment') { |
|
|
## Copied from 'in table' |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 4034 |
} elsif ($token->{type} eq 'start tag') { |
} elsif ($token->{type} eq 'start tag') { |
| 4035 |
if ({ |
if ({ |
| 4036 |
tr => 1, |
tr => ($self->{insertion_mode} ne 'in row'), |
| 4037 |
th => 1, td => 1, |
th => 1, td => 1, |
| 4038 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 4039 |
unless ($token->{tag_name} eq 'tr') { |
if ($self->{insertion_mode} eq 'in table') { |
| 4040 |
!!!parse-error (type => 'missing start tag:tr'); |
## Clear back to table context |
| 4041 |
|
while ($self->{open_elements}->[-1]->[1] ne 'table' and |
| 4042 |
|
$self->{open_elements}->[-1]->[1] ne 'html') { |
| 4043 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4044 |
|
pop @{$self->{open_elements}}; |
| 4045 |
|
} |
| 4046 |
|
|
| 4047 |
|
!!!insert-element ('tbody'); |
| 4048 |
|
$self->{insertion_mode} = 'in table body'; |
| 4049 |
|
## reprocess in the "in table body" insertion mode... |
| 4050 |
} |
} |
| 4051 |
|
|
| 4052 |
## Clear back to table body context |
if ($self->{insertion_mode} eq 'in table body') { |
| 4053 |
|
unless ($token->{tag_name} eq 'tr') { |
| 4054 |
|
!!!parse-error (type => 'missing start tag:tr'); |
| 4055 |
|
} |
| 4056 |
|
|
| 4057 |
|
## Clear back to table body context |
| 4058 |
|
while (not { |
| 4059 |
|
tbody => 1, tfoot => 1, thead => 1, html => 1, |
| 4060 |
|
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4061 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4062 |
|
pop @{$self->{open_elements}}; |
| 4063 |
|
} |
| 4064 |
|
|
| 4065 |
|
$self->{insertion_mode} = 'in row'; |
| 4066 |
|
if ($token->{tag_name} eq 'tr') { |
| 4067 |
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4068 |
|
!!!next-token; |
| 4069 |
|
redo B; |
| 4070 |
|
} else { |
| 4071 |
|
!!!insert-element ('tr'); |
| 4072 |
|
## reprocess in the "in row" insertion mode |
| 4073 |
|
} |
| 4074 |
|
} |
| 4075 |
|
|
| 4076 |
|
## Clear back to table row context |
| 4077 |
while (not { |
while (not { |
| 4078 |
tbody => 1, tfoot => 1, thead => 1, html => 1, |
tr => 1, html => 1, |
| 4079 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4080 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4081 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 4082 |
} |
} |
| 4083 |
|
|
| 4084 |
$self->{insertion_mode} = 'in row'; |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4085 |
if ($token->{tag_name} eq 'tr') { |
$self->{insertion_mode} = 'in cell'; |
| 4086 |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
|
| 4087 |
!!!next-token; |
push @$active_formatting_elements, ['#marker', '']; |
| 4088 |
} else { |
|
| 4089 |
!!!insert-element ('tr'); |
!!!next-token; |
|
## reprocess |
|
|
} |
|
| 4090 |
redo B; |
redo B; |
| 4091 |
} elsif ({ |
} elsif ({ |
| 4092 |
caption => 1, col => 1, colgroup => 1, |
caption => 1, col => 1, colgroup => 1, |
| 4093 |
tbody => 1, tfoot => 1, thead => 1, |
tbody => 1, tfoot => 1, thead => 1, |
| 4094 |
|
tr => 1, # $self->{insertion_mode} eq 'in row' |
| 4095 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 4096 |
## have an element in table scope |
if ($self->{insertion_mode} eq 'in row') { |
| 4097 |
my $i; |
## As if </tr> |
| 4098 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
## have an element in table scope |
| 4099 |
my $node = $self->{open_elements}->[$_]; |
my $i; |
| 4100 |
if ({ |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4101 |
tbody => 1, thead => 1, tfoot => 1, |
my $node = $self->{open_elements}->[$_]; |
| 4102 |
}->{$node->[1]}) { |
if ($node->[1] eq 'tr') { |
| 4103 |
$i = $_; |
$i = $_; |
| 4104 |
last INSCOPE; |
last INSCOPE; |
| 4105 |
} elsif ({ |
} elsif ({ |
| 4106 |
table => 1, html => 1, |
table => 1, html => 1, |
| 4107 |
}->{$node->[1]}) { |
}->{$node->[1]}) { |
| 4108 |
last INSCOPE; |
last INSCOPE; |
| 4109 |
|
} |
| 4110 |
|
} # INSCOPE |
| 4111 |
|
unless (defined $i) { |
| 4112 |
|
!!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}); |
| 4113 |
|
## Ignore the token |
| 4114 |
|
!!!next-token; |
| 4115 |
|
redo B; |
| 4116 |
|
} |
| 4117 |
|
|
| 4118 |
|
## Clear back to table row context |
| 4119 |
|
while (not { |
| 4120 |
|
tr => 1, html => 1, |
| 4121 |
|
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4122 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4123 |
|
pop @{$self->{open_elements}}; |
| 4124 |
|
} |
| 4125 |
|
|
| 4126 |
|
pop @{$self->{open_elements}}; # tr |
| 4127 |
|
$self->{insertion_mode} = 'in table body'; |
| 4128 |
|
if ($token->{tag_name} eq 'tr') { |
| 4129 |
|
## reprocess |
| 4130 |
|
redo B; |
| 4131 |
|
} else { |
| 4132 |
|
## reprocess in the "in table body" insertion mode... |
| 4133 |
} |
} |
|
} # INSCOPE |
|
|
unless (defined $i) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
| 4134 |
} |
} |
| 4135 |
|
|
| 4136 |
## Clear back to table body context |
if ($self->{insertion_mode} eq 'in table body') { |
| 4137 |
while (not { |
## have an element in table scope |
| 4138 |
tbody => 1, tfoot => 1, thead => 1, html => 1, |
my $i; |
| 4139 |
}->{$self->{open_elements}->[-1]->[1]}) { |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4140 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
my $node = $self->{open_elements}->[$_]; |
| 4141 |
|
if ({ |
| 4142 |
|
tbody => 1, thead => 1, tfoot => 1, |
| 4143 |
|
}->{$node->[1]}) { |
| 4144 |
|
$i = $_; |
| 4145 |
|
last INSCOPE; |
| 4146 |
|
} elsif ({ |
| 4147 |
|
table => 1, html => 1, |
| 4148 |
|
}->{$node->[1]}) { |
| 4149 |
|
last INSCOPE; |
| 4150 |
|
} |
| 4151 |
|
} # INSCOPE |
| 4152 |
|
unless (defined $i) { |
| 4153 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4154 |
|
## Ignore the token |
| 4155 |
|
!!!next-token; |
| 4156 |
|
redo B; |
| 4157 |
|
} |
| 4158 |
|
|
| 4159 |
|
## Clear back to table body context |
| 4160 |
|
while (not { |
| 4161 |
|
tbody => 1, tfoot => 1, thead => 1, html => 1, |
| 4162 |
|
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4163 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4164 |
|
pop @{$self->{open_elements}}; |
| 4165 |
|
} |
| 4166 |
|
|
| 4167 |
|
## As if <{current node}> |
| 4168 |
|
## have an element in table scope |
| 4169 |
|
## true by definition |
| 4170 |
|
|
| 4171 |
|
## Clear back to table body context |
| 4172 |
|
## nop by definition |
| 4173 |
|
|
| 4174 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 4175 |
|
$self->{insertion_mode} = 'in table'; |
| 4176 |
|
## reprocess in "in table" insertion mode... |
| 4177 |
} |
} |
| 4178 |
|
|
| 4179 |
## As if <{current node}> |
if ($token->{tag_name} eq 'col') { |
| 4180 |
## have an element in table scope |
## Clear back to table context |
| 4181 |
## true by definition |
while ($self->{open_elements}->[-1]->[1] ne 'table' and |
| 4182 |
|
$self->{open_elements}->[-1]->[1] ne 'html') { |
| 4183 |
## Clear back to table body context |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4184 |
## nop by definition |
pop @{$self->{open_elements}}; |
| 4185 |
|
} |
| 4186 |
pop @{$self->{open_elements}}; |
|
| 4187 |
$self->{insertion_mode} = 'in table'; |
!!!insert-element ('colgroup'); |
| 4188 |
## reprocess |
$self->{insertion_mode} = 'in column group'; |
| 4189 |
redo B; |
## reprocess |
| 4190 |
|
redo B; |
| 4191 |
|
} elsif ({ |
| 4192 |
|
caption => 1, |
| 4193 |
|
colgroup => 1, |
| 4194 |
|
tbody => 1, tfoot => 1, thead => 1, |
| 4195 |
|
}->{$token->{tag_name}}) { |
| 4196 |
|
## Clear back to table context |
| 4197 |
|
while ($self->{open_elements}->[-1]->[1] ne 'table' and |
| 4198 |
|
$self->{open_elements}->[-1]->[1] ne 'html') { |
| 4199 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4200 |
|
pop @{$self->{open_elements}}; |
| 4201 |
|
} |
| 4202 |
|
|
| 4203 |
|
push @$active_formatting_elements, ['#marker', ''] |
| 4204 |
|
if $token->{tag_name} eq 'caption'; |
| 4205 |
|
|
| 4206 |
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4207 |
|
$self->{insertion_mode} = { |
| 4208 |
|
caption => 'in caption', |
| 4209 |
|
colgroup => 'in column group', |
| 4210 |
|
tbody => 'in table body', |
| 4211 |
|
tfoot => 'in table body', |
| 4212 |
|
thead => 'in table body', |
| 4213 |
|
}->{$token->{tag_name}}; |
| 4214 |
|
!!!next-token; |
| 4215 |
|
redo B; |
| 4216 |
|
} else { |
| 4217 |
|
die "$0: in table: <>: $token->{tag_name}"; |
| 4218 |
|
} |
| 4219 |
} elsif ($token->{tag_name} eq 'table') { |
} elsif ($token->{tag_name} eq 'table') { |
| 4220 |
## NOTE: This is a code clone of "table in table" |
## NOTE: There are code clones for this "table in table" |
| 4221 |
!!!parse-error (type => 'not closed:table'); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4222 |
|
|
| 4223 |
## As if </table> |
## As if </table> |
| 4224 |
## have a table element in table scope |
## have a table element in table scope |
| 4245 |
if ({ |
if ({ |
| 4246 |
dd => 1, dt => 1, li => 1, p => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 4247 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 4248 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 4249 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4250 |
!!!back-token; # <table> |
!!!back-token; # <table> |
| 4251 |
$token = {type => 'end tag', tag_name => 'table'}; |
$token = {type => 'end tag', tag_name => 'table'}; |
| 4261 |
|
|
| 4262 |
splice @{$self->{open_elements}}, $i; |
splice @{$self->{open_elements}}, $i; |
| 4263 |
|
|
| 4264 |
$self->_reset_insertion_mode; |
$self->_reset_insertion_mode; |
| 4265 |
|
|
| 4266 |
## reprocess |
## reprocess |
| 4267 |
redo B; |
redo B; |
| 4269 |
# |
# |
| 4270 |
} |
} |
| 4271 |
} elsif ($token->{type} eq 'end tag') { |
} elsif ($token->{type} eq 'end tag') { |
| 4272 |
if ({ |
if ($token->{tag_name} eq 'tr' and |
| 4273 |
tbody => 1, tfoot => 1, thead => 1, |
$self->{insertion_mode} eq 'in row') { |
|
}->{$token->{tag_name}}) { |
|
| 4274 |
## have an element in table scope |
## have an element in table scope |
| 4275 |
my $i; |
my $i; |
| 4276 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4291 |
redo B; |
redo B; |
| 4292 |
} |
} |
| 4293 |
|
|
| 4294 |
## Clear back to table body context |
## Clear back to table row context |
| 4295 |
while (not { |
while (not { |
| 4296 |
tbody => 1, tfoot => 1, thead => 1, html => 1, |
tr => 1, html => 1, |
| 4297 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4298 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4299 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 4300 |
} |
} |
| 4301 |
|
|
| 4302 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; # tr |
| 4303 |
$self->{insertion_mode} = 'in table'; |
$self->{insertion_mode} = 'in table body'; |
| 4304 |
!!!next-token; |
!!!next-token; |
| 4305 |
redo B; |
redo B; |
| 4306 |
} elsif ($token->{tag_name} eq 'table') { |
} elsif ($token->{tag_name} eq 'table') { |
| 4307 |
## have an element in table scope |
if ($self->{insertion_mode} eq 'in row') { |
| 4308 |
my $i; |
## As if </tr> |
| 4309 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
## have an element in table scope |
| 4310 |
my $node = $self->{open_elements}->[$_]; |
my $i; |
| 4311 |
if ({ |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4312 |
tbody => 1, thead => 1, tfoot => 1, |
my $node = $self->{open_elements}->[$_]; |
| 4313 |
}->{$node->[1]}) { |
if ($node->[1] eq 'tr') { |
| 4314 |
$i = $_; |
$i = $_; |
| 4315 |
last INSCOPE; |
last INSCOPE; |
| 4316 |
} elsif ({ |
} elsif ({ |
| 4317 |
table => 1, html => 1, |
table => 1, html => 1, |
| 4318 |
}->{$node->[1]}) { |
}->{$node->[1]}) { |
| 4319 |
last INSCOPE; |
last INSCOPE; |
| 4320 |
|
} |
| 4321 |
|
} # INSCOPE |
| 4322 |
|
unless (defined $i) { |
| 4323 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{type}); |
| 4324 |
|
## Ignore the token |
| 4325 |
|
!!!next-token; |
| 4326 |
|
redo B; |
| 4327 |
} |
} |
| 4328 |
} # INSCOPE |
|
| 4329 |
unless (defined $i) { |
## Clear back to table row context |
| 4330 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
while (not { |
| 4331 |
## Ignore the token |
tr => 1, html => 1, |
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
|
|
|
|
## Clear back to table body context |
|
|
while (not { |
|
|
tbody => 1, tfoot => 1, thead => 1, html => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
|
pop @{$self->{open_elements}}; |
|
|
} |
|
|
|
|
|
## As if <{current node}> |
|
|
## have an element in table scope |
|
|
## true by definition |
|
|
|
|
|
## Clear back to table body context |
|
|
## nop by definition |
|
|
|
|
|
pop @{$self->{open_elements}}; |
|
|
$self->{insertion_mode} = 'in table'; |
|
|
## reprocess |
|
|
redo B; |
|
|
} elsif ({ |
|
|
body => 1, caption => 1, col => 1, colgroup => 1, |
|
|
html => 1, td => 1, th => 1, tr => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} else { |
|
|
# |
|
|
} |
|
|
|
|
|
## As if in table |
|
|
!!!parse-error (type => 'in table:'.$token->{tag_name}); |
|
|
$in_body->($insert_to_foster); |
|
|
redo B; |
|
|
} elsif ($self->{insertion_mode} eq 'in row') { |
|
|
if ($token->{type} eq 'character') { |
|
|
## NOTE: This is a "character in table" code clone. |
|
|
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; |
|
|
} |
|
|
} |
|
|
|
|
|
!!!parse-error (type => 'in table:#character'); |
|
|
|
|
|
## As if in body, but insert into foster parent element |
|
|
## ISSUE: Spec says that "whenever a node would be inserted |
|
|
## into the current node" while characters might not be |
|
|
## result in a new Text node. |
|
|
$reconstruct_active_formatting_elements->($insert_to_foster); |
|
|
|
|
|
if ({ |
|
|
table => 1, tbody => 1, tfoot => 1, |
|
|
thead => 1, tr => 1, |
|
| 4332 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4333 |
# MUST |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4334 |
my $foster_parent_element; |
pop @{$self->{open_elements}}; |
| 4335 |
my $next_sibling; |
} |
| 4336 |
my $prev_sibling; |
|
| 4337 |
OE: for (reverse 0..$#{$self->{open_elements}}) { |
pop @{$self->{open_elements}}; # tr |
| 4338 |
if ($self->{open_elements}->[$_]->[1] eq 'table') { |
$self->{insertion_mode} = 'in table body'; |
| 4339 |
my $parent = $self->{open_elements}->[$_]->[0]->parent_node; |
## reprocess in the "in table body" insertion mode... |
| 4340 |
if (defined $parent and $parent->node_type == 1) { |
} |
| 4341 |
$foster_parent_element = $parent; |
|
| 4342 |
$next_sibling = $self->{open_elements}->[$_]->[0]; |
if ($self->{insertion_mode} eq 'in table body') { |
| 4343 |
$prev_sibling = $next_sibling->previous_sibling; |
## have an element in table scope |
| 4344 |
} else { |
my $i; |
| 4345 |
$foster_parent_element = $self->{open_elements}->[$_ - 1]->[0]; |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4346 |
$prev_sibling = $foster_parent_element->last_child; |
my $node = $self->{open_elements}->[$_]; |
| 4347 |
|
if ({ |
| 4348 |
|
tbody => 1, thead => 1, tfoot => 1, |
| 4349 |
|
}->{$node->[1]}) { |
| 4350 |
|
$i = $_; |
| 4351 |
|
last INSCOPE; |
| 4352 |
|
} elsif ({ |
| 4353 |
|
table => 1, html => 1, |
| 4354 |
|
}->{$node->[1]}) { |
| 4355 |
|
last INSCOPE; |
| 4356 |
} |
} |
| 4357 |
last OE; |
} # INSCOPE |
| 4358 |
|
unless (defined $i) { |
| 4359 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4360 |
|
## Ignore the token |
| 4361 |
|
!!!next-token; |
| 4362 |
|
redo B; |
| 4363 |
} |
} |
| 4364 |
} # OE |
|
| 4365 |
$foster_parent_element = $self->{open_elements}->[0]->[0] and |
## Clear back to table body context |
| 4366 |
$prev_sibling = $foster_parent_element->last_child |
while (not { |
| 4367 |
unless defined $foster_parent_element; |
tbody => 1, tfoot => 1, thead => 1, html => 1, |
| 4368 |
if (defined $prev_sibling and |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4369 |
$prev_sibling->node_type == 3) { |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4370 |
$prev_sibling->manakai_append_text ($token->{data}); |
pop @{$self->{open_elements}}; |
|
} else { |
|
|
$foster_parent_element->insert_before |
|
|
($self->{document}->create_text_node ($token->{data}), |
|
|
$next_sibling); |
|
|
} |
|
|
} else { |
|
|
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
|
|
} |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'comment') { |
|
|
## Copied from 'in table' |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'start tag') { |
|
|
if ($token->{tag_name} eq 'th' or |
|
|
$token->{tag_name} eq 'td') { |
|
|
## Clear back to table row context |
|
|
while (not { |
|
|
tr => 1, html => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
|
pop @{$self->{open_elements}}; |
|
|
} |
|
|
|
|
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
|
|
$self->{insertion_mode} = 'in cell'; |
|
|
|
|
|
push @$active_formatting_elements, ['#marker', '']; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
caption => 1, col => 1, colgroup => 1, |
|
|
tbody => 1, tfoot => 1, thead => 1, tr => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
## As if </tr> |
|
|
## have an element in table scope |
|
|
my $i; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq 'tr') { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
| 4371 |
} |
} |
| 4372 |
} # INSCOPE |
|
| 4373 |
unless (defined $i) { |
## As if <{current node}> |
| 4374 |
!!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}); |
## have an element in table scope |
| 4375 |
## Ignore the token |
## true by definition |
| 4376 |
!!!next-token; |
|
| 4377 |
redo B; |
## Clear back to table body context |
| 4378 |
} |
## nop by definition |
| 4379 |
|
|
|
## Clear back to table row context |
|
|
while (not { |
|
|
tr => 1, html => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
| 4380 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 4381 |
|
$self->{insertion_mode} = 'in table'; |
| 4382 |
|
## reprocess in the "in table" insertion mode... |
| 4383 |
} |
} |
| 4384 |
|
|
|
pop @{$self->{open_elements}}; # tr |
|
|
$self->{insertion_mode} = 'in table body'; |
|
|
## reprocess |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'table') { |
|
|
## NOTE: This is a code clone of "table in table" |
|
|
!!!parse-error (type => 'not closed:table'); |
|
|
|
|
|
## As if </table> |
|
| 4385 |
## have a table element in table scope |
## have a table element in table scope |
| 4386 |
my $i; |
my $i; |
| 4387 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4388 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 4389 |
if ($node->[1] eq 'table') { |
if ($node->[1] eq $token->{tag_name}) { |
| 4390 |
$i = $_; |
$i = $_; |
| 4391 |
last INSCOPE; |
last INSCOPE; |
| 4392 |
} elsif ({ |
} elsif ({ |
| 4396 |
} |
} |
| 4397 |
} # INSCOPE |
} # INSCOPE |
| 4398 |
unless (defined $i) { |
unless (defined $i) { |
| 4399 |
!!!parse-error (type => 'unmatched end tag:table'); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4400 |
## Ignore tokens </table><table> |
## Ignore the token |
| 4401 |
!!!next-token; |
!!!next-token; |
| 4402 |
redo B; |
redo B; |
| 4403 |
} |
} |
| 4404 |
|
|
| 4405 |
## generate implied end tags |
## generate implied end tags |
| 4406 |
if ({ |
if ({ |
| 4407 |
dd => 1, dt => 1, li => 1, p => 1, |
dd => 1, dt => 1, li => 1, p => 1, |
| 4408 |
td => 1, th => 1, tr => 1, |
td => 1, th => 1, tr => 1, |
| 4409 |
|
tbody => 1, tfoot=> 1, thead => 1, |
| 4410 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
|
!!!back-token; # <table> |
|
|
$token = {type => 'end tag', tag_name => 'table'}; |
|
| 4411 |
!!!back-token; |
!!!back-token; |
| 4412 |
$token = {type => 'end tag', |
$token = {type => 'end tag', |
| 4413 |
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
| 4414 |
redo B; |
redo B; |
| 4415 |
} |
} |
| 4416 |
|
|
| 4417 |
if ($self->{open_elements}->[-1]->[1] ne 'table') { |
if ($self->{open_elements}->[-1]->[1] ne 'table') { |
| 4418 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4419 |
} |
} |
| 4420 |
|
|
| 4421 |
splice @{$self->{open_elements}}, $i; |
splice @{$self->{open_elements}}, $i; |
| 4422 |
|
|
| 4423 |
$self->_reset_insertion_mode; |
$self->_reset_insertion_mode; |
| 4424 |
|
|
|
## reprocess |
|
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} elsif ($token->{type} eq 'end tag') { |
|
|
if ($token->{tag_name} eq 'tr') { |
|
|
## have an element in table scope |
|
|
my $i; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq $token->{tag_name}) { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
unless (defined $i) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
|
|
|
|
## Clear back to table row context |
|
|
while (not { |
|
|
tr => 1, html => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
|
pop @{$self->{open_elements}}; |
|
|
} |
|
|
|
|
|
pop @{$self->{open_elements}}; # tr |
|
|
$self->{insertion_mode} = 'in table body'; |
|
| 4425 |
!!!next-token; |
!!!next-token; |
| 4426 |
redo B; |
redo B; |
|
} elsif ($token->{tag_name} eq 'table') { |
|
|
## As if </tr> |
|
|
## have an element in table scope |
|
|
my $i; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq 'tr') { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
unless (defined $i) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{type}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
|
|
|
|
## Clear back to table row context |
|
|
while (not { |
|
|
tr => 1, html => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
|
pop @{$self->{open_elements}}; |
|
|
} |
|
|
|
|
|
pop @{$self->{open_elements}}; # tr |
|
|
$self->{insertion_mode} = 'in table body'; |
|
|
## reprocess |
|
|
redo B; |
|
| 4427 |
} elsif ({ |
} elsif ({ |
| 4428 |
tbody => 1, tfoot => 1, thead => 1, |
tbody => 1, tfoot => 1, thead => 1, |
| 4429 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}} and |
| 4430 |
## have an element in table scope |
($self->{insertion_mode} eq 'in row' or |
| 4431 |
my $i; |
$self->{insertion_mode} eq 'in table body')) { |
| 4432 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
if ($self->{insertion_mode} eq 'in row') { |
| 4433 |
my $node = $self->{open_elements}->[$_]; |
## have an element in table scope |
| 4434 |
if ($node->[1] eq $token->{tag_name}) { |
my $i; |
| 4435 |
$i = $_; |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4436 |
last INSCOPE; |
my $node = $self->{open_elements}->[$_]; |
| 4437 |
} elsif ({ |
if ($node->[1] eq $token->{tag_name}) { |
| 4438 |
table => 1, html => 1, |
$i = $_; |
| 4439 |
}->{$node->[1]}) { |
last INSCOPE; |
| 4440 |
last INSCOPE; |
} elsif ({ |
| 4441 |
|
table => 1, html => 1, |
| 4442 |
|
}->{$node->[1]}) { |
| 4443 |
|
last INSCOPE; |
| 4444 |
|
} |
| 4445 |
|
} # INSCOPE |
| 4446 |
|
unless (defined $i) { |
| 4447 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4448 |
|
## Ignore the token |
| 4449 |
|
!!!next-token; |
| 4450 |
|
redo B; |
| 4451 |
|
} |
| 4452 |
|
|
| 4453 |
|
## As if </tr> |
| 4454 |
|
## have an element in table scope |
| 4455 |
|
my $i; |
| 4456 |
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4457 |
|
my $node = $self->{open_elements}->[$_]; |
| 4458 |
|
if ($node->[1] eq 'tr') { |
| 4459 |
|
$i = $_; |
| 4460 |
|
last INSCOPE; |
| 4461 |
|
} elsif ({ |
| 4462 |
|
table => 1, html => 1, |
| 4463 |
|
}->{$node->[1]}) { |
| 4464 |
|
last INSCOPE; |
| 4465 |
|
} |
| 4466 |
|
} # INSCOPE |
| 4467 |
|
unless (defined $i) { |
| 4468 |
|
!!!parse-error (type => 'unmatched end tag:tr'); |
| 4469 |
|
## Ignore the token |
| 4470 |
|
!!!next-token; |
| 4471 |
|
redo B; |
| 4472 |
|
} |
| 4473 |
|
|
| 4474 |
|
## Clear back to table row context |
| 4475 |
|
while (not { |
| 4476 |
|
tr => 1, html => 1, |
| 4477 |
|
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4478 |
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4479 |
|
pop @{$self->{open_elements}}; |
| 4480 |
} |
} |
| 4481 |
} # INSCOPE |
|
| 4482 |
unless (defined $i) { |
pop @{$self->{open_elements}}; # tr |
| 4483 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
$self->{insertion_mode} = 'in table body'; |
| 4484 |
## Ignore the token |
## reprocess in the "in table body" insertion mode... |
|
!!!next-token; |
|
|
redo B; |
|
| 4485 |
} |
} |
| 4486 |
|
|
|
## As if </tr> |
|
| 4487 |
## have an element in table scope |
## have an element in table scope |
| 4488 |
my $i; |
my $i; |
| 4489 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
| 4490 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 4491 |
if ($node->[1] eq 'tr') { |
if ($node->[1] eq $token->{tag_name}) { |
| 4492 |
$i = $_; |
$i = $_; |
| 4493 |
last INSCOPE; |
last INSCOPE; |
| 4494 |
} elsif ({ |
} elsif ({ |
| 4498 |
} |
} |
| 4499 |
} # INSCOPE |
} # INSCOPE |
| 4500 |
unless (defined $i) { |
unless (defined $i) { |
| 4501 |
!!!parse-error (type => 'unmatched end tag:tr'); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4502 |
## Ignore the token |
## Ignore the token |
| 4503 |
!!!next-token; |
!!!next-token; |
| 4504 |
redo B; |
redo B; |
| 4505 |
} |
} |
| 4506 |
|
|
| 4507 |
## Clear back to table row context |
## Clear back to table body context |
| 4508 |
while (not { |
while (not { |
| 4509 |
tr => 1, html => 1, |
tbody => 1, tfoot => 1, thead => 1, html => 1, |
| 4510 |
}->{$self->{open_elements}->[-1]->[1]}) { |
}->{$self->{open_elements}->[-1]->[1]}) { |
| 4511 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
| 4512 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 4513 |
} |
} |
| 4514 |
|
|
| 4515 |
pop @{$self->{open_elements}}; # tr |
pop @{$self->{open_elements}}; |
| 4516 |
$self->{insertion_mode} = 'in table body'; |
$self->{insertion_mode} = 'in table'; |
| 4517 |
## reprocess |
!!!next-token; |
| 4518 |
redo B; |
redo B; |
| 4519 |
} elsif ({ |
} elsif ({ |
| 4520 |
body => 1, caption => 1, col => 1, |
body => 1, caption => 1, col => 1, colgroup => 1, |
| 4521 |
colgroup => 1, html => 1, td => 1, th => 1, |
html => 1, td => 1, th => 1, |
| 4522 |
|
tr => 1, # $self->{insertion_mode} eq 'in row' |
| 4523 |
|
tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} eq 'in table' |
| 4524 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 4525 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4526 |
## Ignore the token |
## Ignore the token |
| 4530 |
# |
# |
| 4531 |
} |
} |
| 4532 |
} else { |
} else { |
| 4533 |
# |
die "$0: $token->{type}: Unknown token type"; |
| 4534 |
} |
} |
| 4535 |
|
|
|
## As if in table |
|
| 4536 |
!!!parse-error (type => 'in table:'.$token->{tag_name}); |
!!!parse-error (type => 'in table:'.$token->{tag_name}); |
| 4537 |
$in_body->($insert_to_foster); |
$in_body->($insert_to_foster); |
| 4538 |
redo B; |
redo B; |
| 4539 |
} elsif ($self->{insertion_mode} eq 'in cell') { |
} elsif ($self->{insertion_mode} eq 'in column group') { |
| 4540 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 4541 |
## NOTE: This is a code clone of "character in body". |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 4542 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
| 4543 |
|
unless (length $token->{data}) { |
|
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'comment') { |
|
|
## NOTE: This is a code clone of "comment in body". |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'start tag') { |
|
|
if ({ |
|
|
caption => 1, col => 1, colgroup => 1, |
|
|
tbody => 1, td => 1, tfoot => 1, th => 1, |
|
|
thead => 1, tr => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
## have an element in table scope |
|
|
my $tn; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq 'td' or $node->[1] eq 'th') { |
|
|
$tn = $node->[1]; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
unless (defined $tn) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
| 4544 |
!!!next-token; |
!!!next-token; |
| 4545 |
redo B; |
redo B; |
| 4546 |
} |
} |
| 4547 |
|
} |
| 4548 |
## Close the cell |
|
| 4549 |
!!!back-token; # <?> |
# |
| 4550 |
$token = {type => 'end tag', tag_name => $tn}; |
} elsif ($token->{type} eq 'start tag') { |
| 4551 |
|
if ($token->{tag_name} eq 'col') { |
| 4552 |
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4553 |
|
pop @{$self->{open_elements}}; |
| 4554 |
|
!!!next-token; |
| 4555 |
redo B; |
redo B; |
| 4556 |
} else { |
} else { |
| 4557 |
# |
# |
| 4558 |
} |
} |
| 4559 |
} elsif ($token->{type} eq 'end tag') { |
} elsif ($token->{type} eq 'end tag') { |
| 4560 |
if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') { |
if ($token->{tag_name} eq 'colgroup') { |
| 4561 |
## have an element in table scope |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
| 4562 |
my $i; |
!!!parse-error (type => 'unmatched end tag:colgroup'); |
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq $token->{tag_name}) { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
unless (defined $i) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
| 4563 |
## Ignore the token |
## Ignore the token |
| 4564 |
!!!next-token; |
!!!next-token; |
| 4565 |
redo B; |
redo B; |
| 4566 |
|
} else { |
| 4567 |
|
pop @{$self->{open_elements}}; # colgroup |
| 4568 |
|
$self->{insertion_mode} = 'in table'; |
| 4569 |
|
!!!next-token; |
| 4570 |
|
redo B; |
| 4571 |
} |
} |
| 4572 |
|
} elsif ($token->{tag_name} eq 'col') { |
| 4573 |
## generate implied end tags |
!!!parse-error (type => 'unmatched end tag:col'); |
|
if ({ |
|
|
dd => 1, dt => 1, li => 1, p => 1, |
|
|
td => ($token->{tag_name} eq 'th'), |
|
|
th => ($token->{tag_name} eq 'td'), |
|
|
tr => 1, |
|
|
}->{$self->{open_elements}->[-1]->[1]}) { |
|
|
!!!back-token; |
|
|
$token = {type => 'end tag', |
|
|
tag_name => $self->{open_elements}->[-1]->[1]}; # MUST |
|
|
redo B; |
|
|
} |
|
|
|
|
|
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
|
|
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
|
|
} |
|
|
|
|
|
splice @{$self->{open_elements}}, $i; |
|
|
|
|
|
$clear_up_to_marker->(); |
|
|
|
|
|
$self->{insertion_mode} = 'in row'; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
body => 1, caption => 1, col => 1, |
|
|
colgroup => 1, html => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
| 4574 |
## Ignore the token |
## Ignore the token |
| 4575 |
!!!next-token; |
!!!next-token; |
| 4576 |
redo B; |
redo B; |
|
} elsif ({ |
|
|
table => 1, tbody => 1, tfoot => 1, |
|
|
thead => 1, tr => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
## have an element in table scope |
|
|
my $i; |
|
|
my $tn; |
|
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
|
my $node = $self->{open_elements}->[$_]; |
|
|
if ($node->[1] eq $token->{tag_name}) { |
|
|
$i = $_; |
|
|
last INSCOPE; |
|
|
} elsif ($node->[1] eq 'td' or $node->[1] eq 'th') { |
|
|
$tn = $node->[1]; |
|
|
## NOTE: There is exactly one |td| or |th| element |
|
|
## in scope in the stack of open elements by definition. |
|
|
} elsif ({ |
|
|
table => 1, html => 1, |
|
|
}->{$node->[1]}) { |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
unless (defined $i) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
|
|
|
|
## Close the cell |
|
|
!!!back-token; # </?> |
|
|
$token = {type => 'end tag', tag_name => $tn}; |
|
|
redo B; |
|
| 4577 |
} else { |
} else { |
| 4578 |
# |
# |
| 4579 |
} |
} |
| 4580 |
} else { |
} else { |
| 4581 |
# |
# |
| 4582 |
} |
} |
| 4583 |
|
|
| 4584 |
$in_body->($insert_to_current); |
## As if </colgroup> |
| 4585 |
redo B; |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
| 4586 |
|
!!!parse-error (type => 'unmatched end tag:colgroup'); |
| 4587 |
|
## Ignore the token |
| 4588 |
|
!!!next-token; |
| 4589 |
|
redo B; |
| 4590 |
|
} else { |
| 4591 |
|
pop @{$self->{open_elements}}; # colgroup |
| 4592 |
|
$self->{insertion_mode} = 'in table'; |
| 4593 |
|
## reprocess |
| 4594 |
|
redo B; |
| 4595 |
|
} |
| 4596 |
} elsif ($self->{insertion_mode} eq 'in select') { |
} elsif ($self->{insertion_mode} eq 'in select') { |
| 4597 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 4598 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
| 4599 |
!!!next-token; |
!!!next-token; |
| 4600 |
redo B; |
redo B; |
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 4601 |
} elsif ($token->{type} eq 'start tag') { |
} elsif ($token->{type} eq 'start tag') { |
| 4602 |
if ($token->{tag_name} eq 'option') { |
if ($token->{tag_name} eq 'option') { |
| 4603 |
if ($self->{open_elements}->[-1]->[1] eq 'option') { |
if ($self->{open_elements}->[-1]->[1] eq 'option') { |
| 4770 |
} elsif ($self->{insertion_mode} eq 'after body') { |
} elsif ($self->{insertion_mode} eq 'after body') { |
| 4771 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 4772 |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 4773 |
|
my $data = $1; |
| 4774 |
## As if in body |
## As if in body |
| 4775 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 4776 |
|
|
| 4777 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
| 4778 |
|
|
| 4779 |
unless (length $token->{data}) { |
unless (length $token->{data}) { |
| 4780 |
!!!next-token; |
!!!next-token; |
| 4783 |
} |
} |
| 4784 |
|
|
| 4785 |
# |
# |
| 4786 |
!!!parse-error (type => 'after body:#'.$token->{type}); |
!!!parse-error (type => 'after body:#character'); |
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[0]->[0]->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 4787 |
} elsif ($token->{type} eq 'start tag') { |
} elsif ($token->{type} eq 'start tag') { |
| 4788 |
!!!parse-error (type => 'after body:'.$token->{tag_name}); |
!!!parse-error (type => 'after body:'.$token->{tag_name}); |
| 4789 |
# |
# |
| 4795 |
!!!next-token; |
!!!next-token; |
| 4796 |
redo B; |
redo B; |
| 4797 |
} else { |
} else { |
| 4798 |
$phase = 'trailing end'; |
$previous_insertion_mode = $self->{insertion_mode}; |
| 4799 |
|
$self->{insertion_mode} = 'trailing end'; |
| 4800 |
!!!next-token; |
!!!next-token; |
| 4801 |
redo B; |
redo B; |
| 4802 |
} |
} |
| 4804 |
!!!parse-error (type => 'after body:/'.$token->{tag_name}); |
!!!parse-error (type => 'after body:/'.$token->{tag_name}); |
| 4805 |
} |
} |
| 4806 |
} else { |
} else { |
| 4807 |
!!!parse-error (type => 'after body:#'.$token->{type}); |
die "$0: $token->{type}: Unknown token type"; |
| 4808 |
} |
} |
| 4809 |
|
|
| 4810 |
$self->{insertion_mode} = 'in body'; |
$self->{insertion_mode} = 'in body'; |
| 4811 |
## reprocess |
## reprocess |
| 4812 |
redo B; |
redo B; |
| 4813 |
} elsif ($self->{insertion_mode} eq 'in frameset') { |
} elsif ($self->{insertion_mode} eq 'in frameset') { |
| 4814 |
if ($token->{type} eq 'character') { |
if ($token->{type} eq 'character') { |
| 4815 |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 4816 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
|
|
|
|
unless (length $token->{data}) { |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
|
} |
|
| 4817 |
|
|
| 4818 |
# |
unless (length $token->{data}) { |
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
|
| 4819 |
!!!next-token; |
!!!next-token; |
| 4820 |
redo B; |
redo B; |
|
} elsif ($token->{type} eq 'start tag') { |
|
|
if ($token->{tag_name} eq 'frameset') { |
|
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'frame') { |
|
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
|
|
pop @{$self->{open_elements}}; |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'noframes') { |
|
|
$in_body->($insert_to_current); |
|
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} elsif ($token->{type} eq 'end tag') { |
|
|
if ($token->{tag_name} eq 'frameset') { |
|
|
if ($self->{open_elements}->[-1]->[1] eq 'html' and |
|
|
@{$self->{open_elements}} == 1) { |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
} else { |
|
|
pop @{$self->{open_elements}}; |
|
|
!!!next-token; |
|
|
} |
|
|
|
|
|
## if not inner_html and |
|
|
if ($self->{open_elements}->[-1]->[1] ne 'frameset') { |
|
|
$self->{insertion_mode} = 'after frameset'; |
|
|
} |
|
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} else { |
|
|
# |
|
| 4821 |
} |
} |
| 4822 |
|
} |
| 4823 |
if (defined $token->{tag_name}) { |
|
| 4824 |
!!!parse-error (type => 'in frameset:'.$token->{tag_name}); |
!!!parse-error (type => 'in frameset:#character'); |
| 4825 |
|
## Ignore the token |
| 4826 |
|
!!!next-token; |
| 4827 |
|
redo B; |
| 4828 |
|
} elsif ($token->{type} eq 'start tag') { |
| 4829 |
|
if ($token->{tag_name} eq 'frameset') { |
| 4830 |
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4831 |
|
!!!next-token; |
| 4832 |
|
redo B; |
| 4833 |
|
} elsif ($token->{tag_name} eq 'frame') { |
| 4834 |
|
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4835 |
|
pop @{$self->{open_elements}}; |
| 4836 |
|
!!!next-token; |
| 4837 |
|
redo B; |
| 4838 |
|
} elsif ($token->{tag_name} eq 'noframes') { |
| 4839 |
|
## NOTE: As if in body. |
| 4840 |
|
$parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current); |
| 4841 |
|
redo B; |
| 4842 |
|
} else { |
| 4843 |
|
!!!parse-error (type => 'in frameset:'.$token->{tag_name}); |
| 4844 |
|
## Ignore the token |
| 4845 |
|
!!!next-token; |
| 4846 |
|
redo B; |
| 4847 |
|
} |
| 4848 |
|
} elsif ($token->{type} eq 'end tag') { |
| 4849 |
|
if ($token->{tag_name} eq 'frameset') { |
| 4850 |
|
if ($self->{open_elements}->[-1]->[1] eq 'html' and |
| 4851 |
|
@{$self->{open_elements}} == 1) { |
| 4852 |
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
| 4853 |
|
## Ignore the token |
| 4854 |
|
!!!next-token; |
| 4855 |
} else { |
} else { |
| 4856 |
!!!parse-error (type => 'in frameset:#'.$token->{type}); |
pop @{$self->{open_elements}}; |
| 4857 |
|
!!!next-token; |
| 4858 |
} |
} |
| 4859 |
|
|
| 4860 |
|
if (not defined $self->{inner_html_node} and |
| 4861 |
|
$self->{open_elements}->[-1]->[1] ne 'frameset') { |
| 4862 |
|
$self->{insertion_mode} = 'after frameset'; |
| 4863 |
|
} |
| 4864 |
|
redo B; |
| 4865 |
|
} else { |
| 4866 |
|
!!!parse-error (type => 'in frameset:/'.$token->{tag_name}); |
| 4867 |
## Ignore the token |
## Ignore the token |
| 4868 |
!!!next-token; |
!!!next-token; |
| 4869 |
redo B; |
redo B; |
| 4870 |
} elsif ($self->{insertion_mode} eq 'after frameset') { |
} |
| 4871 |
if ($token->{type} eq 'character') { |
} else { |
| 4872 |
|
die "$0: $token->{type}: Unknown token type"; |
| 4873 |
|
} |
| 4874 |
|
} elsif ($self->{insertion_mode} eq 'after frameset') { |
| 4875 |
|
if ($token->{type} eq 'character') { |
| 4876 |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 4877 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data}); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($1); |
| 4878 |
|
|
| 4879 |
unless (length $token->{data}) { |
unless (length $token->{data}) { |
| 4880 |
!!!next-token; |
!!!next-token; |
| 4882 |
} |
} |
| 4883 |
} |
} |
| 4884 |
|
|
| 4885 |
# |
if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) { |
| 4886 |
} elsif ($token->{type} eq 'comment') { |
!!!parse-error (type => 'after frameset:#character'); |
| 4887 |
my $comment = $self->{document}->create_comment ($token->{data}); |
|
| 4888 |
$self->{open_elements}->[-1]->[0]->append_child ($comment); |
## Ignore the token. |
| 4889 |
!!!next-token; |
if (length $token->{data}) { |
| 4890 |
redo B; |
## reprocess the rest of characters |
| 4891 |
} elsif ($token->{type} eq 'start tag') { |
} else { |
| 4892 |
if ($token->{tag_name} eq 'noframes') { |
!!!next-token; |
| 4893 |
$in_body->($insert_to_current); |
} |
|
redo B; |
|
|
} else { |
|
|
# |
|
|
} |
|
|
} elsif ($token->{type} eq 'end tag') { |
|
|
if ($token->{tag_name} eq 'html') { |
|
|
$phase = 'trailing end'; |
|
|
!!!next-token; |
|
| 4894 |
redo B; |
redo B; |
|
} else { |
|
|
# |
|
| 4895 |
} |
} |
| 4896 |
} else { |
|
| 4897 |
# |
die qq[$0: Character "$token->{data}"]; |
| 4898 |
} |
} elsif ($token->{type} eq 'start tag') { |
| 4899 |
|
if ($token->{tag_name} eq 'noframes') { |
| 4900 |
if (defined $token->{tag_name}) { |
## NOTE: As if in body. |
| 4901 |
!!!parse-error (type => 'after frameset:'.$token->{tag_name}); |
$parse_rcdata->(CDATA_CONTENT_MODEL, $insert_to_current); |
| 4902 |
} else { |
redo B; |
| 4903 |
!!!parse-error (type => 'after frameset:#'.$token->{type}); |
} else { |
| 4904 |
} |
!!!parse-error (type => 'after frameset:'.$token->{tag_name}); |
| 4905 |
## Ignore the token |
## Ignore the token |
| 4906 |
!!!next-token; |
!!!next-token; |
| 4907 |
redo B; |
redo B; |
| 4908 |
|
} |
| 4909 |
## ISSUE: An issue in spec there |
} elsif ($token->{type} eq 'end tag') { |
| 4910 |
|
if ($token->{tag_name} eq 'html') { |
| 4911 |
|
$previous_insertion_mode = $self->{insertion_mode}; |
| 4912 |
|
$self->{insertion_mode} = 'trailing end'; |
| 4913 |
|
!!!next-token; |
| 4914 |
|
redo B; |
| 4915 |
} else { |
} else { |
| 4916 |
die "$0: $self->{insertion_mode}: Unknown insertion mode"; |
!!!parse-error (type => 'after frameset:/'.$token->{tag_name}); |
| 4917 |
|
## Ignore the token |
| 4918 |
|
!!!next-token; |
| 4919 |
|
redo B; |
| 4920 |
} |
} |
| 4921 |
|
} else { |
| 4922 |
|
die "$0: $token->{type}: Unknown token type"; |
| 4923 |
} |
} |
| 4924 |
} elsif ($phase eq 'trailing end') { |
|
| 4925 |
|
## ISSUE: An issue in spec here |
| 4926 |
|
} elsif ($self->{insertion_mode} eq 'trailing end') { |
| 4927 |
## states in the main stage is preserved yet # MUST |
## states in the main stage is preserved yet # MUST |
| 4928 |
|
|
| 4929 |
if ($token->{type} eq 'DOCTYPE') { |
if ($token->{type} eq 'character') { |
|
!!!parse-error (type => 'after html:#DOCTYPE'); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'comment') { |
|
|
my $comment = $self->{document}->create_comment ($token->{data}); |
|
|
$self->{document}->append_child ($comment); |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{type} eq 'character') { |
|
| 4930 |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { |
| 4931 |
my $data = $1; |
my $data = $1; |
| 4932 |
## As if in the main phase. |
## As if in the main phase. |
| 4933 |
## NOTE: The insertion mode in the main phase |
## NOTE: The insertion mode in the main phase |
| 4934 |
## just before the phase has been changed to the trailing |
## just before the phase has been changed to the trailing |
| 4935 |
## end phase is either "after body" or "after frameset". |
## end phase is either "after body" or "after frameset". |
| 4936 |
$reconstruct_active_formatting_elements->($insert_to_current) |
$reconstruct_active_formatting_elements->($insert_to_current); |
|
if $phase eq 'main'; |
|
| 4937 |
|
|
| 4938 |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($data); |
$self->{open_elements}->[-1]->[0]->manakai_append_text ($data); |
| 4939 |
|
|
| 4944 |
} |
} |
| 4945 |
|
|
| 4946 |
!!!parse-error (type => 'after html:#character'); |
!!!parse-error (type => 'after html:#character'); |
| 4947 |
$phase = 'main'; |
$self->{insertion_mode} = $previous_insertion_mode; |
| 4948 |
## reprocess |
## reprocess |
| 4949 |
redo B; |
redo B; |
| 4950 |
} elsif ($token->{type} eq 'start tag' or |
} elsif ($token->{type} eq 'start tag') { |
|
$token->{type} eq 'end tag') { |
|
| 4951 |
!!!parse-error (type => 'after html:'.$token->{tag_name}); |
!!!parse-error (type => 'after html:'.$token->{tag_name}); |
| 4952 |
$phase = 'main'; |
$self->{insertion_mode} = $previous_insertion_mode; |
| 4953 |
|
## reprocess |
| 4954 |
|
redo B; |
| 4955 |
|
} elsif ($token->{type} eq 'end tag') { |
| 4956 |
|
!!!parse-error (type => 'after html:/'.$token->{tag_name}); |
| 4957 |
|
$self->{insertion_mode} = $previous_insertion_mode; |
| 4958 |
## reprocess |
## reprocess |
| 4959 |
redo B; |
redo B; |
|
} elsif ($token->{type} eq 'end-of-file') { |
|
|
## Stop parsing |
|
|
last B; |
|
| 4960 |
} else { |
} else { |
| 4961 |
die "$0: $token->{type}: Unknown token"; |
die "$0: $token->{type}: Unknown token"; |
| 4962 |
} |
} |
| 4963 |
|
} else { |
| 4964 |
|
die "$0: $self->{insertion_mode}: Unknown insertion mode"; |
| 4965 |
} |
} |
| 4966 |
} # B |
} # B |
| 4967 |
|
|
| 5049 |
|
|
| 5050 |
## Step 2 |
## Step 2 |
| 5051 |
my $node_ln = $node->local_name; |
my $node_ln = $node->local_name; |
| 5052 |
$p->{content_model_flag} = { |
$p->{content_model} = { |
| 5053 |
title => 'RCDATA', |
title => RCDATA_CONTENT_MODEL, |
| 5054 |
textarea => 'RCDATA', |
textarea => RCDATA_CONTENT_MODEL, |
| 5055 |
style => 'CDATA', |
style => CDATA_CONTENT_MODEL, |
| 5056 |
script => 'CDATA', |
script => CDATA_CONTENT_MODEL, |
| 5057 |
xmp => 'CDATA', |
xmp => CDATA_CONTENT_MODEL, |
| 5058 |
iframe => 'CDATA', |
iframe => CDATA_CONTENT_MODEL, |
| 5059 |
noembed => 'CDATA', |
noembed => CDATA_CONTENT_MODEL, |
| 5060 |
noframes => 'CDATA', |
noframes => CDATA_CONTENT_MODEL, |
| 5061 |
noscript => 'CDATA', |
noscript => CDATA_CONTENT_MODEL, |
| 5062 |
plaintext => 'PLAINTEXT', |
plaintext => PLAINTEXT_CONTENT_MODEL, |
| 5063 |
}->{$node_ln} || 'PCDATA'; |
}->{$node_ln}; |
| 5064 |
## ISSUE: What is "the name of the element"? local name? |
$p->{content_model} = PCDATA_CONTENT_MODEL |
| 5065 |
|
unless defined $p->{content_model}; |
| 5066 |
|
## ISSUE: What is "the name of the element"? local name? |
| 5067 |
|
|
| 5068 |
$p->{inner_html_node} = [$node, $node_ln]; |
$p->{inner_html_node} = [$node, $node_ln]; |
| 5069 |
|
|