| 108 |
$self->{change_encoding} = sub { |
$self->{change_encoding} = sub { |
| 109 |
my $self = shift; |
my $self = shift; |
| 110 |
my $charset = lc shift; |
my $charset = lc shift; |
| 111 |
|
my $token = shift; |
| 112 |
## TODO: if $charset is supported |
## TODO: if $charset is supported |
| 113 |
## TODO: normalize charset name |
## TODO: normalize charset name |
| 114 |
|
|
| 127 |
} |
} |
| 128 |
|
|
| 129 |
!!!parse-error (type => 'charset label detected:'.$self->{input_encoding}. |
!!!parse-error (type => 'charset label detected:'.$self->{input_encoding}. |
| 130 |
':'.$charset, level => 'w'); |
':'.$charset, level => 'w', token => $token); |
| 131 |
|
|
| 132 |
## Step 3 |
## Step 3 |
| 133 |
# if (can) { |
# if (can) { |
| 178 |
if defined $self->{input_encoding}; |
if defined $self->{input_encoding}; |
| 179 |
|
|
| 180 |
my $i = 0; |
my $i = 0; |
| 181 |
my $line = 1; |
$self->{line_prev} = $self->{line} = 1; |
| 182 |
my $column = 0; |
$self->{column_prev} = $self->{column} = 0; |
| 183 |
$self->{set_next_char} = sub { |
$self->{set_next_char} = sub { |
| 184 |
my $self = shift; |
my $self = shift; |
| 185 |
|
|
| 188 |
|
|
| 189 |
$self->{next_char} = -1 and return if $i >= length $$s; |
$self->{next_char} = -1 and return if $i >= length $$s; |
| 190 |
$self->{next_char} = ord substr $$s, $i++, 1; |
$self->{next_char} = ord substr $$s, $i++, 1; |
| 191 |
$column++; |
|
| 192 |
|
($self->{line_prev}, $self->{column_prev}) |
| 193 |
|
= ($self->{line}, $self->{column}); |
| 194 |
|
$self->{column}++; |
| 195 |
|
|
| 196 |
if ($self->{next_char} == 0x000A) { # LF |
if ($self->{next_char} == 0x000A) { # LF |
| 197 |
$line++; |
$self->{line}++; |
| 198 |
$column = 0; |
$self->{column} = 0; |
| 199 |
} elsif ($self->{next_char} == 0x000D) { # CR |
} elsif ($self->{next_char} == 0x000D) { # CR |
| 200 |
$i++ if substr ($$s, $i, 1) eq "\x0A"; |
$i++ if substr ($$s, $i, 1) eq "\x0A"; |
| 201 |
$self->{next_char} = 0x000A; # LF # MUST |
$self->{next_char} = 0x000A; # LF # MUST |
| 202 |
$line++; |
$self->{line}++; |
| 203 |
$column = 0; |
$self->{column} = 0; |
| 204 |
} elsif ($self->{next_char} > 0x10FFFF) { |
} elsif ($self->{next_char} > 0x10FFFF) { |
| 205 |
$self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST |
$self->{next_char} = 0xFFFD; # REPLACEMENT CHARACTER # MUST |
| 206 |
} elsif ($self->{next_char} == 0x0000) { # NULL |
} elsif ($self->{next_char} == 0x0000) { # NULL |
| 213 |
|
|
| 214 |
my $onerror = $_[2] || sub { |
my $onerror = $_[2] || sub { |
| 215 |
my (%opt) = @_; |
my (%opt) = @_; |
| 216 |
warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n"; |
my $line = $opt{token} ? $opt{token}->{line} : $opt{line}; |
| 217 |
|
my $column = $opt{token} ? $opt{token}->{column} : $opt{column}; |
| 218 |
|
warn "Parse error ($opt{type}) at line $line column $column\n"; |
| 219 |
}; |
}; |
| 220 |
$self->{parse_error} = sub { |
$self->{parse_error} = sub { |
| 221 |
$onerror->(@_, line => $line, column => $column); |
$onerror->(line => $self->{line}, column => $self->{column}, @_); |
| 222 |
}; |
}; |
| 223 |
|
|
| 224 |
$self->_initialize_tokenizer; |
$self->_initialize_tokenizer; |
| 226 |
$self->_construct_tree; |
$self->_construct_tree; |
| 227 |
$self->_terminate_tree_constructor; |
$self->_terminate_tree_constructor; |
| 228 |
|
|
| 229 |
|
delete $self->{parse_error}; # remove loop |
| 230 |
|
|
| 231 |
return $self->{document}; |
return $self->{document}; |
| 232 |
} # parse_string |
} # parse_string |
| 233 |
|
|
| 457 |
# |
# |
| 458 |
} elsif ($self->{next_char} == -1) { |
} elsif ($self->{next_char} == -1) { |
| 459 |
!!!cp (11); |
!!!cp (11); |
| 460 |
!!!emit ({type => END_OF_FILE_TOKEN}); |
!!!emit ({type => END_OF_FILE_TOKEN, |
| 461 |
|
line => $self->{line}, column => $self->{column}}); |
| 462 |
last A; ## TODO: ok? |
last A; ## TODO: ok? |
| 463 |
} else { |
} else { |
| 464 |
!!!cp (12); |
!!!cp (12); |
| 465 |
} |
} |
| 466 |
# Anything else |
# Anything else |
| 467 |
my $token = {type => CHARACTER_TOKEN, |
my $token = {type => CHARACTER_TOKEN, |
| 468 |
data => chr $self->{next_char}}; |
data => chr $self->{next_char}, |
| 469 |
|
line => $self->{line}, column => $self->{column}}; |
| 470 |
## Stay in the data state |
## Stay in the data state |
| 471 |
!!!next-input-character; |
!!!next-input-character; |
| 472 |
|
|
| 475 |
redo A; |
redo A; |
| 476 |
} elsif ($self->{state} == ENTITY_DATA_STATE) { |
} elsif ($self->{state} == ENTITY_DATA_STATE) { |
| 477 |
## (cannot happen in CDATA state) |
## (cannot happen in CDATA state) |
| 478 |
|
|
| 479 |
|
my ($l, $c) = ($self->{line_prev}, $self->{column_prev}); |
| 480 |
|
|
| 481 |
my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1); |
my $token = $self->_tokenize_attempt_to_consume_an_entity (0, -1); |
| 482 |
|
|
| 485 |
|
|
| 486 |
unless (defined $token) { |
unless (defined $token) { |
| 487 |
!!!cp (13); |
!!!cp (13); |
| 488 |
!!!emit ({type => CHARACTER_TOKEN, data => '&'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '&', |
| 489 |
|
line => $l, column => $c}); |
| 490 |
} else { |
} else { |
| 491 |
!!!cp (14); |
!!!cp (14); |
| 492 |
!!!emit ($token); |
!!!emit ($token); |
| 505 |
## reconsume |
## reconsume |
| 506 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 507 |
|
|
| 508 |
!!!emit ({type => CHARACTER_TOKEN, data => '<'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '<', |
| 509 |
|
line => $self->{line_prev}, |
| 510 |
|
column => $self->{column_prev}}); |
| 511 |
|
|
| 512 |
redo A; |
redo A; |
| 513 |
} |
} |
| 527 |
!!!cp (19); |
!!!cp (19); |
| 528 |
$self->{current_token} |
$self->{current_token} |
| 529 |
= {type => START_TAG_TOKEN, |
= {type => START_TAG_TOKEN, |
| 530 |
tag_name => chr ($self->{next_char} + 0x0020)}; |
tag_name => chr ($self->{next_char} + 0x0020), |
| 531 |
|
line => $self->{line_prev}, |
| 532 |
|
column => $self->{column_prev}}; |
| 533 |
$self->{state} = TAG_NAME_STATE; |
$self->{state} = TAG_NAME_STATE; |
| 534 |
!!!next-input-character; |
!!!next-input-character; |
| 535 |
redo A; |
redo A; |
| 537 |
$self->{next_char} <= 0x007A) { # a..z |
$self->{next_char} <= 0x007A) { # a..z |
| 538 |
!!!cp (20); |
!!!cp (20); |
| 539 |
$self->{current_token} = {type => START_TAG_TOKEN, |
$self->{current_token} = {type => START_TAG_TOKEN, |
| 540 |
tag_name => chr ($self->{next_char})}; |
tag_name => chr ($self->{next_char}), |
| 541 |
|
line => $self->{line_prev}, |
| 542 |
|
column => $self->{column_prev}}; |
| 543 |
$self->{state} = TAG_NAME_STATE; |
$self->{state} = TAG_NAME_STATE; |
| 544 |
!!!next-input-character; |
!!!next-input-character; |
| 545 |
redo A; |
redo A; |
| 549 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 550 |
!!!next-input-character; |
!!!next-input-character; |
| 551 |
|
|
| 552 |
!!!emit ({type => CHARACTER_TOKEN, data => '<>'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '<>', |
| 553 |
|
line => $self->{line_prev}, |
| 554 |
|
column => $self->{column_prev}}); |
| 555 |
|
|
| 556 |
redo A; |
redo A; |
| 557 |
} elsif ($self->{next_char} == 0x003F) { # ? |
} elsif ($self->{next_char} == 0x003F) { # ? |
| 558 |
!!!cp (22); |
!!!cp (22); |
| 559 |
!!!parse-error (type => 'pio'); |
!!!parse-error (type => 'pio'); |
| 560 |
$self->{state} = BOGUS_COMMENT_STATE; |
$self->{state} = BOGUS_COMMENT_STATE; |
| 561 |
|
$self->{current_token} = {type => COMMENT_TOKEN, data => '', |
| 562 |
|
line => $self->{line_prev}, |
| 563 |
|
column => $self->{column_prev}}; |
| 564 |
## $self->{next_char} is intentionally left as is |
## $self->{next_char} is intentionally left as is |
| 565 |
redo A; |
redo A; |
| 566 |
} else { |
} else { |
| 569 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 570 |
## reconsume |
## reconsume |
| 571 |
|
|
| 572 |
!!!emit ({type => CHARACTER_TOKEN, data => '<'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '<', |
| 573 |
|
line => $self->{line_prev}, |
| 574 |
|
column => $self->{column_prev}}); |
| 575 |
|
|
| 576 |
redo A; |
redo A; |
| 577 |
} |
} |
| 579 |
die "$0: $self->{content_model} in tag open"; |
die "$0: $self->{content_model} in tag open"; |
| 580 |
} |
} |
| 581 |
} elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) { |
} elsif ($self->{state} == CLOSE_TAG_OPEN_STATE) { |
| 582 |
|
my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); # "<"of"</" |
| 583 |
if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA |
if ($self->{content_model} & CM_LIMITED_MARKUP) { # RCDATA | CDATA |
| 584 |
if (defined $self->{last_emitted_start_tag_name}) { |
if (defined $self->{last_emitted_start_tag_name}) { |
| 585 |
|
|
| 586 |
## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564> |
## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564> |
| 587 |
my @next_char; |
my @next_char; |
| 588 |
TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) { |
TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) { |
| 599 |
!!!back-next-input-character (@next_char); |
!!!back-next-input-character (@next_char); |
| 600 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 601 |
|
|
| 602 |
!!!emit ({type => CHARACTER_TOKEN, data => '</'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '</', |
| 603 |
|
line => $l, column => $c}); |
| 604 |
|
|
| 605 |
redo A; |
redo A; |
| 606 |
} |
} |
| 619 |
$self->{next_char} = shift @next_char; # reconsume |
$self->{next_char} = shift @next_char; # reconsume |
| 620 |
!!!back-next-input-character (@next_char); |
!!!back-next-input-character (@next_char); |
| 621 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 622 |
!!!emit ({type => CHARACTER_TOKEN, data => '</'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '</', |
| 623 |
|
line => $l, column => $c}); |
| 624 |
redo A; |
redo A; |
| 625 |
} else { |
} else { |
| 626 |
!!!cp (27); |
!!!cp (27); |
| 633 |
!!!cp (28); |
!!!cp (28); |
| 634 |
# next-input-character is already done |
# next-input-character is already done |
| 635 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 636 |
!!!emit ({type => CHARACTER_TOKEN, data => '</'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '</', |
| 637 |
|
line => $l, column => $c}); |
| 638 |
redo A; |
redo A; |
| 639 |
} |
} |
| 640 |
} |
} |
| 642 |
if (0x0041 <= $self->{next_char} and |
if (0x0041 <= $self->{next_char} and |
| 643 |
$self->{next_char} <= 0x005A) { # A..Z |
$self->{next_char} <= 0x005A) { # A..Z |
| 644 |
!!!cp (29); |
!!!cp (29); |
| 645 |
$self->{current_token} = {type => END_TAG_TOKEN, |
$self->{current_token} |
| 646 |
tag_name => chr ($self->{next_char} + 0x0020)}; |
= {type => END_TAG_TOKEN, |
| 647 |
|
tag_name => chr ($self->{next_char} + 0x0020), |
| 648 |
|
line => $l, column => $c}; |
| 649 |
$self->{state} = TAG_NAME_STATE; |
$self->{state} = TAG_NAME_STATE; |
| 650 |
!!!next-input-character; |
!!!next-input-character; |
| 651 |
redo A; |
redo A; |
| 653 |
$self->{next_char} <= 0x007A) { # a..z |
$self->{next_char} <= 0x007A) { # a..z |
| 654 |
!!!cp (30); |
!!!cp (30); |
| 655 |
$self->{current_token} = {type => END_TAG_TOKEN, |
$self->{current_token} = {type => END_TAG_TOKEN, |
| 656 |
tag_name => chr ($self->{next_char})}; |
tag_name => chr ($self->{next_char}), |
| 657 |
|
line => $l, column => $c}; |
| 658 |
$self->{state} = TAG_NAME_STATE; |
$self->{state} = TAG_NAME_STATE; |
| 659 |
!!!next-input-character; |
!!!next-input-character; |
| 660 |
redo A; |
redo A; |
| 670 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 671 |
# reconsume |
# reconsume |
| 672 |
|
|
| 673 |
!!!emit ({type => CHARACTER_TOKEN, data => '</'}); |
!!!emit ({type => CHARACTER_TOKEN, data => '</', |
| 674 |
|
line => $l, column => $c}); |
| 675 |
|
|
| 676 |
redo A; |
redo A; |
| 677 |
} else { |
} else { |
| 678 |
!!!cp (33); |
!!!cp (33); |
| 679 |
!!!parse-error (type => 'bogus end tag'); |
!!!parse-error (type => 'bogus end tag'); |
| 680 |
$self->{state} = BOGUS_COMMENT_STATE; |
$self->{state} = BOGUS_COMMENT_STATE; |
| 681 |
|
$self->{current_token} = {type => COMMENT_TOKEN, data => '', |
| 682 |
|
line => $self->{line_prev}, # "<" of "</" |
| 683 |
|
column => $self->{column_prev} - 1}; |
| 684 |
## $self->{next_char} is intentionally left as is |
## $self->{next_char} is intentionally left as is |
| 685 |
redo A; |
redo A; |
| 686 |
} |
} |
| 1417 |
} elsif ($self->{state} == BOGUS_COMMENT_STATE) { |
} elsif ($self->{state} == BOGUS_COMMENT_STATE) { |
| 1418 |
## (only happen if PCDATA state) |
## (only happen if PCDATA state) |
| 1419 |
|
|
| 1420 |
my $token = {type => COMMENT_TOKEN, data => ''}; |
## NOTE: Set by the previous state |
| 1421 |
|
#my $token = {type => COMMENT_TOKEN, data => ''}; |
| 1422 |
|
|
| 1423 |
BC: { |
BC: { |
| 1424 |
if ($self->{next_char} == 0x003E) { # > |
if ($self->{next_char} == 0x003E) { # > |
| 1426 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 1427 |
!!!next-input-character; |
!!!next-input-character; |
| 1428 |
|
|
| 1429 |
!!!emit ($token); |
!!!emit ($self->{current_token}); # comment |
| 1430 |
|
|
| 1431 |
redo A; |
redo A; |
| 1432 |
} elsif ($self->{next_char} == -1) { |
} elsif ($self->{next_char} == -1) { |
| 1434 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 1435 |
## reconsume |
## reconsume |
| 1436 |
|
|
| 1437 |
!!!emit ($token); |
!!!emit ($self->{current_token}); # comment |
| 1438 |
|
|
| 1439 |
redo A; |
redo A; |
| 1440 |
} else { |
} else { |
| 1441 |
!!!cp (126); |
!!!cp (126); |
| 1442 |
$token->{data} .= chr ($self->{next_char}); |
$self->{current_token}->{data} .= chr ($self->{next_char}); # comment |
| 1443 |
!!!next-input-character; |
!!!next-input-character; |
| 1444 |
redo BC; |
redo BC; |
| 1445 |
} |
} |
| 1449 |
} elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) { |
} elsif ($self->{state} == MARKUP_DECLARATION_OPEN_STATE) { |
| 1450 |
## (only happen if PCDATA state) |
## (only happen if PCDATA state) |
| 1451 |
|
|
| 1452 |
|
my ($l, $c) = ($self->{line_prev}, $self->{column_prev} - 1); |
| 1453 |
|
|
| 1454 |
my @next_char; |
my @next_char; |
| 1455 |
push @next_char, $self->{next_char}; |
push @next_char, $self->{next_char}; |
| 1456 |
|
|
| 1459 |
push @next_char, $self->{next_char}; |
push @next_char, $self->{next_char}; |
| 1460 |
if ($self->{next_char} == 0x002D) { # - |
if ($self->{next_char} == 0x002D) { # - |
| 1461 |
!!!cp (127); |
!!!cp (127); |
| 1462 |
$self->{current_token} = {type => COMMENT_TOKEN, data => ''}; |
$self->{current_token} = {type => COMMENT_TOKEN, data => '', |
| 1463 |
|
line => $l, column => $c}; |
| 1464 |
$self->{state} = COMMENT_START_STATE; |
$self->{state} = COMMENT_START_STATE; |
| 1465 |
!!!next-input-character; |
!!!next-input-character; |
| 1466 |
redo A; |
redo A; |
| 1496 |
!!!cp (129); |
!!!cp (129); |
| 1497 |
## TODO: What a stupid code this is! |
## TODO: What a stupid code this is! |
| 1498 |
$self->{state} = DOCTYPE_STATE; |
$self->{state} = DOCTYPE_STATE; |
| 1499 |
|
$self->{current_token} = {type => DOCTYPE_TOKEN, |
| 1500 |
|
quirks => 1, |
| 1501 |
|
line => $l, column => $c}; |
| 1502 |
!!!next-input-character; |
!!!next-input-character; |
| 1503 |
redo A; |
redo A; |
| 1504 |
} else { |
} else { |
| 1527 |
$self->{next_char} = shift @next_char; |
$self->{next_char} = shift @next_char; |
| 1528 |
!!!back-next-input-character (@next_char); |
!!!back-next-input-character (@next_char); |
| 1529 |
$self->{state} = BOGUS_COMMENT_STATE; |
$self->{state} = BOGUS_COMMENT_STATE; |
| 1530 |
|
$self->{current_token} = {type => COMMENT_TOKEN, data => '', |
| 1531 |
|
line => $l, column => $c}; |
| 1532 |
redo A; |
redo A; |
| 1533 |
|
|
| 1534 |
## ISSUE: typos in spec: chacacters, is is a parse error |
## ISSUE: typos in spec: chacacters, is is a parse error |
| 1652 |
redo A; |
redo A; |
| 1653 |
} elsif ($self->{next_char} == 0x002D) { # - |
} elsif ($self->{next_char} == 0x002D) { # - |
| 1654 |
!!!cp (152); |
!!!cp (152); |
| 1655 |
!!!parse-error (type => 'dash in comment'); |
!!!parse-error (type => 'dash in comment', |
| 1656 |
|
line => $self->{line_prev}, |
| 1657 |
|
column => $self->{column_prev}); |
| 1658 |
$self->{current_token}->{data} .= '-'; # comment |
$self->{current_token}->{data} .= '-'; # comment |
| 1659 |
## Stay in the state |
## Stay in the state |
| 1660 |
!!!next-input-character; |
!!!next-input-character; |
| 1670 |
redo A; |
redo A; |
| 1671 |
} else { |
} else { |
| 1672 |
!!!cp (154); |
!!!cp (154); |
| 1673 |
!!!parse-error (type => 'dash in comment'); |
!!!parse-error (type => 'dash in comment', |
| 1674 |
|
line => $self->{line_prev}, |
| 1675 |
|
column => $self->{column_prev}); |
| 1676 |
$self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment |
$self->{current_token}->{data} .= '--' . chr ($self->{next_char}); # comment |
| 1677 |
$self->{state} = COMMENT_STATE; |
$self->{state} = COMMENT_STATE; |
| 1678 |
!!!next-input-character; |
!!!next-input-character; |
| 1711 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 1712 |
!!!next-input-character; |
!!!next-input-character; |
| 1713 |
|
|
| 1714 |
!!!emit ({type => DOCTYPE_TOKEN, quirks => 1}); |
!!!emit ($self->{current_token}); # DOCTYPE (quirks) |
| 1715 |
|
|
| 1716 |
redo A; |
redo A; |
| 1717 |
} elsif ($self->{next_char} == -1) { |
} elsif ($self->{next_char} == -1) { |
| 1720 |
$self->{state} = DATA_STATE; |
$self->{state} = DATA_STATE; |
| 1721 |
## reconsume |
## reconsume |
| 1722 |
|
|
| 1723 |
!!!emit ({type => DOCTYPE_TOKEN, quirks => 1}); |
!!!emit ($self->{current_token}); # DOCTYPE (quirks) |
| 1724 |
|
|
| 1725 |
redo A; |
redo A; |
| 1726 |
} else { |
} else { |
| 1727 |
!!!cp (160); |
!!!cp (160); |
| 1728 |
$self->{current_token} |
$self->{current_token}->{name} = chr $self->{next_char}; |
| 1729 |
= {type => DOCTYPE_TOKEN, |
delete $self->{current_token}->{quirks}; |
|
name => chr ($self->{next_char}), |
|
|
#quirks => 0, |
|
|
}; |
|
| 1730 |
## ISSUE: "Set the token's name name to the" in the spec |
## ISSUE: "Set the token's name name to the" in the spec |
| 1731 |
$self->{state} = DOCTYPE_NAME_STATE; |
$self->{state} = DOCTYPE_NAME_STATE; |
| 1732 |
!!!next-input-character; |
!!!next-input-character; |
| 2253 |
sub _tokenize_attempt_to_consume_an_entity ($$$) { |
sub _tokenize_attempt_to_consume_an_entity ($$$) { |
| 2254 |
my ($self, $in_attr, $additional) = @_; |
my ($self, $in_attr, $additional) = @_; |
| 2255 |
|
|
| 2256 |
|
my ($l, $c) = ($self->{line_prev}, $self->{column_prev}); |
| 2257 |
|
|
| 2258 |
if ({ |
if ({ |
| 2259 |
0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF, |
0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF, |
| 2260 |
0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR |
0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR |
| 2295 |
redo X; |
redo X; |
| 2296 |
} elsif (not defined $code) { # no hexadecimal digit |
} elsif (not defined $code) { # no hexadecimal digit |
| 2297 |
!!!cp (1005); |
!!!cp (1005); |
| 2298 |
!!!parse-error (type => 'bare hcro'); |
!!!parse-error (type => 'bare hcro', line => $l, column => $c); |
| 2299 |
!!!back-next-input-character ($x_char, $self->{next_char}); |
!!!back-next-input-character ($x_char, $self->{next_char}); |
| 2300 |
$self->{next_char} = 0x0023; # # |
$self->{next_char} = 0x0023; # # |
| 2301 |
return undef; |
return undef; |
| 2304 |
!!!next-input-character; |
!!!next-input-character; |
| 2305 |
} else { |
} else { |
| 2306 |
!!!cp (1007); |
!!!cp (1007); |
| 2307 |
!!!parse-error (type => 'no refc'); |
!!!parse-error (type => 'no refc', line => $l, column => $c); |
| 2308 |
} |
} |
| 2309 |
|
|
| 2310 |
if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) { |
if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) { |
| 2311 |
!!!cp (1008); |
!!!cp (1008); |
| 2312 |
!!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code); |
!!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c); |
| 2313 |
$code = 0xFFFD; |
$code = 0xFFFD; |
| 2314 |
} elsif ($code > 0x10FFFF) { |
} elsif ($code > 0x10FFFF) { |
| 2315 |
!!!cp (1009); |
!!!cp (1009); |
| 2316 |
!!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code); |
!!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c); |
| 2317 |
$code = 0xFFFD; |
$code = 0xFFFD; |
| 2318 |
} elsif ($code == 0x000D) { |
} elsif ($code == 0x000D) { |
| 2319 |
!!!cp (1010); |
!!!cp (1010); |
| 2320 |
!!!parse-error (type => 'CR character reference'); |
!!!parse-error (type => 'CR character reference', line => $l, column => $c); |
| 2321 |
$code = 0x000A; |
$code = 0x000A; |
| 2322 |
} elsif (0x80 <= $code and $code <= 0x9F) { |
} elsif (0x80 <= $code and $code <= 0x9F) { |
| 2323 |
!!!cp (1011); |
!!!cp (1011); |
| 2324 |
!!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code); |
!!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c); |
| 2325 |
$code = $c1_entity_char->{$code}; |
$code = $c1_entity_char->{$code}; |
| 2326 |
} |
} |
| 2327 |
|
|
| 2328 |
return {type => CHARACTER_TOKEN, data => chr $code, |
return {type => CHARACTER_TOKEN, data => chr $code, |
| 2329 |
has_reference => 1}; |
has_reference => 1, line => $l, column => $c}; |
| 2330 |
} # X |
} # X |
| 2331 |
} elsif (0x0030 <= $self->{next_char} and |
} elsif (0x0030 <= $self->{next_char} and |
| 2332 |
$self->{next_char} <= 0x0039) { # 0..9 |
$self->{next_char} <= 0x0039) { # 0..9 |
| 2347 |
!!!next-input-character; |
!!!next-input-character; |
| 2348 |
} else { |
} else { |
| 2349 |
!!!cp (1014); |
!!!cp (1014); |
| 2350 |
!!!parse-error (type => 'no refc'); |
!!!parse-error (type => 'no refc', line => $l, column => $c); |
| 2351 |
} |
} |
| 2352 |
|
|
| 2353 |
if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) { |
if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) { |
| 2354 |
!!!cp (1015); |
!!!cp (1015); |
| 2355 |
!!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code); |
!!!parse-error (type => (sprintf 'invalid character reference:U+%04X', $code), line => $l, column => $c); |
| 2356 |
$code = 0xFFFD; |
$code = 0xFFFD; |
| 2357 |
} elsif ($code > 0x10FFFF) { |
} elsif ($code > 0x10FFFF) { |
| 2358 |
!!!cp (1016); |
!!!cp (1016); |
| 2359 |
!!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code); |
!!!parse-error (type => (sprintf 'invalid character reference:U-%08X', $code), line => $l, column => $c); |
| 2360 |
$code = 0xFFFD; |
$code = 0xFFFD; |
| 2361 |
} elsif ($code == 0x000D) { |
} elsif ($code == 0x000D) { |
| 2362 |
!!!cp (1017); |
!!!cp (1017); |
| 2363 |
!!!parse-error (type => 'CR character reference'); |
!!!parse-error (type => 'CR character reference', line => $l, column => $c); |
| 2364 |
$code = 0x000A; |
$code = 0x000A; |
| 2365 |
} elsif (0x80 <= $code and $code <= 0x9F) { |
} elsif (0x80 <= $code and $code <= 0x9F) { |
| 2366 |
!!!cp (1018); |
!!!cp (1018); |
| 2367 |
!!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code); |
!!!parse-error (type => (sprintf 'C1 character reference:U+%04X', $code), line => $l, column => $c); |
| 2368 |
$code = $c1_entity_char->{$code}; |
$code = $c1_entity_char->{$code}; |
| 2369 |
} |
} |
| 2370 |
|
|
| 2371 |
return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1}; |
return {type => CHARACTER_TOKEN, data => chr $code, has_reference => 1, |
| 2372 |
|
line => $l, column => $c}; |
| 2373 |
} else { |
} else { |
| 2374 |
!!!cp (1019); |
!!!cp (1019); |
| 2375 |
!!!parse-error (type => 'bare nero'); |
!!!parse-error (type => 'bare nero', line => $l, column => $c); |
| 2376 |
!!!back-next-input-character ($self->{next_char}); |
!!!back-next-input-character ($self->{next_char}); |
| 2377 |
$self->{next_char} = 0x0023; # # |
$self->{next_char} = 0x0023; # # |
| 2378 |
return undef; |
return undef; |
| 2422 |
|
|
| 2423 |
if ($match > 0) { |
if ($match > 0) { |
| 2424 |
!!!cp (1023); |
!!!cp (1023); |
| 2425 |
return {type => CHARACTER_TOKEN, data => $value, has_reference => 1}; |
return {type => CHARACTER_TOKEN, data => $value, has_reference => 1, |
| 2426 |
|
line => $l, column => $c}; |
| 2427 |
} elsif ($match < 0) { |
} elsif ($match < 0) { |
| 2428 |
!!!parse-error (type => 'no refc'); |
!!!parse-error (type => 'no refc', line => $l, column => $c); |
| 2429 |
if ($in_attr and $match < -1) { |
if ($in_attr and $match < -1) { |
| 2430 |
!!!cp (1024); |
!!!cp (1024); |
| 2431 |
return {type => CHARACTER_TOKEN, data => '&'.$entity_name}; |
return {type => CHARACTER_TOKEN, data => '&'.$entity_name, |
| 2432 |
|
line => $l, column => $c}; |
| 2433 |
} else { |
} else { |
| 2434 |
!!!cp (1025); |
!!!cp (1025); |
| 2435 |
return {type => CHARACTER_TOKEN, data => $value, has_reference => 1}; |
return {type => CHARACTER_TOKEN, data => $value, has_reference => 1, |
| 2436 |
|
line => $l, column => $c}; |
| 2437 |
} |
} |
| 2438 |
} else { |
} else { |
| 2439 |
!!!cp (1026); |
!!!cp (1026); |
| 2440 |
!!!parse-error (type => 'bare ero'); |
!!!parse-error (type => 'bare ero', line => $l, column => $c); |
| 2441 |
## NOTE: "No characters are consumed" in the spec. |
## NOTE: "No characters are consumed" in the spec. |
| 2442 |
return {type => CHARACTER_TOKEN, data => '&'.$value}; |
return {type => CHARACTER_TOKEN, data => '&'.$value, |
| 2443 |
|
line => $l, column => $c}; |
| 2444 |
} |
} |
| 2445 |
} else { |
} else { |
| 2446 |
!!!cp (1027); |
!!!cp (1027); |
| 2447 |
## no characters are consumed |
## no characters are consumed |
| 2448 |
!!!parse-error (type => 'bare ero'); |
!!!parse-error (type => 'bare ero', line => $l, column => $c); |
| 2449 |
return undef; |
return undef; |
| 2450 |
} |
} |
| 2451 |
} # _tokenize_attempt_to_consume_an_entity |
} # _tokenize_attempt_to_consume_an_entity |
| 2516 |
defined $token->{public_identifier} or |
defined $token->{public_identifier} or |
| 2517 |
defined $token->{system_identifier}) { |
defined $token->{system_identifier}) { |
| 2518 |
!!!cp ('t1'); |
!!!cp ('t1'); |
| 2519 |
!!!parse-error (type => 'not HTML5'); |
!!!parse-error (type => 'not HTML5', token => $token); |
| 2520 |
} elsif ($doctype_name ne 'HTML') { |
} elsif ($doctype_name ne 'HTML') { |
| 2521 |
!!!cp ('t2'); |
!!!cp ('t2'); |
| 2522 |
## ISSUE: ASCII case-insensitive? (in fact it does not matter) |
## ISSUE: ASCII case-insensitive? (in fact it does not matter) |
| 2523 |
!!!parse-error (type => 'not HTML5'); |
!!!parse-error (type => 'not HTML5', token => $token); |
| 2524 |
} else { |
} else { |
| 2525 |
!!!cp ('t3'); |
!!!cp ('t3'); |
| 2526 |
} |
} |
| 2659 |
END_OF_FILE_TOKEN, 1, |
END_OF_FILE_TOKEN, 1, |
| 2660 |
}->{$token->{type}}) { |
}->{$token->{type}}) { |
| 2661 |
!!!cp ('t14'); |
!!!cp ('t14'); |
| 2662 |
!!!parse-error (type => 'no DOCTYPE'); |
!!!parse-error (type => 'no DOCTYPE', token => $token); |
| 2663 |
$self->{document}->manakai_compat_mode ('quirks'); |
$self->{document}->manakai_compat_mode ('quirks'); |
| 2664 |
## Go to the "before html" insertion mode. |
## Go to the "before html" insertion mode. |
| 2665 |
## reprocess |
## reprocess |
| 2680 |
!!!cp ('t17'); |
!!!cp ('t17'); |
| 2681 |
} |
} |
| 2682 |
|
|
| 2683 |
!!!parse-error (type => 'no DOCTYPE'); |
!!!parse-error (type => 'no DOCTYPE', token => $token); |
| 2684 |
$self->{document}->manakai_compat_mode ('quirks'); |
$self->{document}->manakai_compat_mode ('quirks'); |
| 2685 |
## Go to the "before html" insertion mode. |
## Go to the "before html" insertion mode. |
| 2686 |
## reprocess |
## reprocess |
| 2709 |
B: { |
B: { |
| 2710 |
if ($token->{type} == DOCTYPE_TOKEN) { |
if ($token->{type} == DOCTYPE_TOKEN) { |
| 2711 |
!!!cp ('t19'); |
!!!cp ('t19'); |
| 2712 |
!!!parse-error (type => 'in html:#DOCTYPE'); |
!!!parse-error (type => 'in html:#DOCTYPE', token => $token); |
| 2713 |
## Ignore the token |
## Ignore the token |
| 2714 |
## Stay in the insertion mode. |
## Stay in the insertion mode. |
| 2715 |
!!!next-token; |
!!!next-token; |
| 3005 |
## NOTE: An end-of-file token. |
## NOTE: An end-of-file token. |
| 3006 |
if ($content_model_flag == CDATA_CONTENT_MODEL) { |
if ($content_model_flag == CDATA_CONTENT_MODEL) { |
| 3007 |
!!!cp ('t43'); |
!!!cp ('t43'); |
| 3008 |
!!!parse-error (type => 'in CDATA:#'.$token->{type}); |
!!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token); |
| 3009 |
} elsif ($content_model_flag == RCDATA_CONTENT_MODEL) { |
} elsif ($content_model_flag == RCDATA_CONTENT_MODEL) { |
| 3010 |
!!!cp ('t44'); |
!!!cp ('t44'); |
| 3011 |
!!!parse-error (type => 'in RCDATA:#'.$token->{type}); |
!!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token); |
| 3012 |
} else { |
} else { |
| 3013 |
die "$0: $content_model_flag in parse_rcdata"; |
die "$0: $content_model_flag in parse_rcdata"; |
| 3014 |
} |
} |
| 3044 |
## Ignore the token |
## Ignore the token |
| 3045 |
} else { |
} else { |
| 3046 |
!!!cp ('t48'); |
!!!cp ('t48'); |
| 3047 |
!!!parse-error (type => 'in CDATA:#'.$token->{type}); |
!!!parse-error (type => 'in CDATA:#'.$token->{type}, token => $token); |
| 3048 |
## ISSUE: And ignore? |
## ISSUE: And ignore? |
| 3049 |
## TODO: mark as "already executed" |
## TODO: mark as "already executed" |
| 3050 |
} |
} |
| 3072 |
my $open_tables = [[$self->{open_elements}->[0]->[0]]]; |
my $open_tables = [[$self->{open_elements}->[0]->[0]]]; |
| 3073 |
|
|
| 3074 |
my $formatting_end_tag = sub { |
my $formatting_end_tag = sub { |
| 3075 |
my $tag_name = shift; |
my $end_tag_token = shift; |
| 3076 |
|
my $tag_name = $end_tag_token->{tag_name}; |
| 3077 |
|
|
| 3078 |
## NOTE: The adoption agency algorithm (AAA). |
## NOTE: The adoption agency algorithm (AAA). |
| 3079 |
|
|
| 3094 |
} # AFE |
} # AFE |
| 3095 |
unless (defined $formatting_element) { |
unless (defined $formatting_element) { |
| 3096 |
!!!cp ('t53'); |
!!!cp ('t53'); |
| 3097 |
!!!parse-error (type => 'unmatched end tag:'.$tag_name); |
!!!parse-error (type => 'unmatched end tag:'.$tag_name, token => $end_tag_token); |
| 3098 |
## Ignore the token |
## Ignore the token |
| 3099 |
!!!next-token; |
!!!next-token; |
| 3100 |
return; |
return; |
| 3111 |
last INSCOPE; |
last INSCOPE; |
| 3112 |
} else { # in open elements but not in scope |
} else { # in open elements but not in scope |
| 3113 |
!!!cp ('t55'); |
!!!cp ('t55'); |
| 3114 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, |
| 3115 |
|
token => $end_tag_token); |
| 3116 |
## Ignore the token |
## Ignore the token |
| 3117 |
!!!next-token; |
!!!next-token; |
| 3118 |
return; |
return; |
| 3127 |
} # INSCOPE |
} # INSCOPE |
| 3128 |
unless (defined $formatting_element_i_in_open) { |
unless (defined $formatting_element_i_in_open) { |
| 3129 |
!!!cp ('t57'); |
!!!cp ('t57'); |
| 3130 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, |
| 3131 |
|
token => $end_tag_token); |
| 3132 |
pop @$active_formatting_elements; # $formatting_element |
pop @$active_formatting_elements; # $formatting_element |
| 3133 |
!!!next-token; ## TODO: ok? |
!!!next-token; ## TODO: ok? |
| 3134 |
return; |
return; |
| 3135 |
} |
} |
| 3136 |
if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) { |
if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) { |
| 3137 |
!!!cp ('t58'); |
!!!cp ('t58'); |
| 3138 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], |
| 3139 |
|
token => $end_tag_token); |
| 3140 |
} |
} |
| 3141 |
|
|
| 3142 |
## Step 2 |
## Step 2 |
| 3347 |
B: { |
B: { |
| 3348 |
if ($token->{type} == DOCTYPE_TOKEN) { |
if ($token->{type} == DOCTYPE_TOKEN) { |
| 3349 |
!!!cp ('t73'); |
!!!cp ('t73'); |
| 3350 |
!!!parse-error (type => 'DOCTYPE in the middle'); |
!!!parse-error (type => 'DOCTYPE in the middle', token => $token); |
| 3351 |
## Ignore the token |
## Ignore the token |
| 3352 |
## Stay in the phase |
## Stay in the phase |
| 3353 |
!!!next-token; |
!!!next-token; |
| 3356 |
$token->{tag_name} eq 'html') { |
$token->{tag_name} eq 'html') { |
| 3357 |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
| 3358 |
!!!cp ('t79'); |
!!!cp ('t79'); |
| 3359 |
!!!parse-error (type => 'after html:html'); |
!!!parse-error (type => 'after html:html', token => $token); |
| 3360 |
$self->{insertion_mode} = AFTER_BODY_IM; |
$self->{insertion_mode} = AFTER_BODY_IM; |
| 3361 |
} elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) { |
} elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) { |
| 3362 |
!!!cp ('t80'); |
!!!cp ('t80'); |
| 3363 |
!!!parse-error (type => 'after html:html'); |
!!!parse-error (type => 'after html:html', token => $token); |
| 3364 |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
| 3365 |
} else { |
} else { |
| 3366 |
!!!cp ('t81'); |
!!!cp ('t81'); |
| 3367 |
} |
} |
| 3368 |
|
|
| 3369 |
!!!cp ('t82'); |
!!!cp ('t82'); |
| 3370 |
!!!parse-error (type => 'not first start tag'); |
!!!parse-error (type => 'not first start tag', token => $token); |
| 3371 |
my $top_el = $self->{open_elements}->[0]->[0]; |
my $top_el = $self->{open_elements}->[0]->[0]; |
| 3372 |
for my $attr_name (keys %{$token->{attributes}}) { |
for my $attr_name (keys %{$token->{attributes}}) { |
| 3373 |
unless ($top_el->has_attribute_ns (undef, $attr_name)) { |
unless ($top_el->has_attribute_ns (undef, $attr_name)) { |
| 3427 |
!!!cp ('t90'); |
!!!cp ('t90'); |
| 3428 |
## As if </noscript> |
## As if </noscript> |
| 3429 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3430 |
!!!parse-error (type => 'in noscript:#character'); |
!!!parse-error (type => 'in noscript:#character', token => $token); |
| 3431 |
|
|
| 3432 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3433 |
## As if </head> |
## As if </head> |
| 3464 |
# |
# |
| 3465 |
} else { |
} else { |
| 3466 |
!!!cp ('t95'); |
!!!cp ('t95'); |
| 3467 |
!!!parse-error (type => 'in head:head'); # or in head noscript |
!!!parse-error (type => 'in head:head', token => $token); # or in head noscript |
| 3468 |
## Ignore the token |
## Ignore the token |
| 3469 |
!!!next-token; |
!!!next-token; |
| 3470 |
redo B; |
redo B; |
| 3487 |
!!!cp ('t98'); |
!!!cp ('t98'); |
| 3488 |
## As if </noscript> |
## As if </noscript> |
| 3489 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3490 |
!!!parse-error (type => 'in noscript:base'); |
!!!parse-error (type => 'in noscript:base', token => $token); |
| 3491 |
|
|
| 3492 |
$self->{insertion_mode} = IN_HEAD_IM; |
$self->{insertion_mode} = IN_HEAD_IM; |
| 3493 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3498 |
## NOTE: There is a "as if in head" code clone. |
## NOTE: There is a "as if in head" code clone. |
| 3499 |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
| 3500 |
!!!cp ('t100'); |
!!!cp ('t100'); |
| 3501 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token); |
| 3502 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3503 |
} else { |
} else { |
| 3504 |
!!!cp ('t101'); |
!!!cp ('t101'); |
| 3513 |
## NOTE: There is a "as if in head" code clone. |
## NOTE: There is a "as if in head" code clone. |
| 3514 |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
| 3515 |
!!!cp ('t102'); |
!!!cp ('t102'); |
| 3516 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token); |
| 3517 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3518 |
} else { |
} else { |
| 3519 |
!!!cp ('t103'); |
!!!cp ('t103'); |
| 3528 |
## NOTE: There is a "as if in head" code clone. |
## NOTE: There is a "as if in head" code clone. |
| 3529 |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
| 3530 |
!!!cp ('t104'); |
!!!cp ('t104'); |
| 3531 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token); |
| 3532 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3533 |
} else { |
} else { |
| 3534 |
!!!cp ('t105'); |
!!!cp ('t105'); |
| 3540 |
if ($token->{attributes}->{charset}) { ## TODO: And if supported |
if ($token->{attributes}->{charset}) { ## TODO: And if supported |
| 3541 |
!!!cp ('t106'); |
!!!cp ('t106'); |
| 3542 |
$self->{change_encoding} |
$self->{change_encoding} |
| 3543 |
->($self, $token->{attributes}->{charset}->{value}); |
->($self, $token->{attributes}->{charset}->{value}, |
| 3544 |
|
$token); |
| 3545 |
|
|
| 3546 |
$meta_el->[0]->get_attribute_node_ns (undef, 'charset') |
$meta_el->[0]->get_attribute_node_ns (undef, 'charset') |
| 3547 |
->set_user_data (manakai_has_reference => |
->set_user_data (manakai_has_reference => |
| 3556 |
([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) { |
([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) { |
| 3557 |
!!!cp ('t107'); |
!!!cp ('t107'); |
| 3558 |
$self->{change_encoding} |
$self->{change_encoding} |
| 3559 |
->($self, defined $1 ? $1 : defined $2 ? $2 : $3); |
->($self, defined $1 ? $1 : defined $2 ? $2 : $3, |
| 3560 |
|
$token); |
| 3561 |
$meta_el->[0]->get_attribute_node_ns (undef, 'content') |
$meta_el->[0]->get_attribute_node_ns (undef, 'content') |
| 3562 |
->set_user_data (manakai_has_reference => |
->set_user_data (manakai_has_reference => |
| 3563 |
$token->{attributes}->{content} |
$token->{attributes}->{content} |
| 3592 |
!!!cp ('t111'); |
!!!cp ('t111'); |
| 3593 |
## As if </noscript> |
## As if </noscript> |
| 3594 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3595 |
!!!parse-error (type => 'in noscript:title'); |
!!!parse-error (type => 'in noscript:title', token => $token); |
| 3596 |
|
|
| 3597 |
$self->{insertion_mode} = IN_HEAD_IM; |
$self->{insertion_mode} = IN_HEAD_IM; |
| 3598 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3599 |
} elsif ($self->{insertion_mode} == AFTER_HEAD_IM) { |
} elsif ($self->{insertion_mode} == AFTER_HEAD_IM) { |
| 3600 |
!!!cp ('t112'); |
!!!cp ('t112'); |
| 3601 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token); |
| 3602 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3603 |
} else { |
} else { |
| 3604 |
!!!cp ('t113'); |
!!!cp ('t113'); |
| 3617 |
## NOTE: There is a "as if in head" code clone. |
## NOTE: There is a "as if in head" code clone. |
| 3618 |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
if ($self->{insertion_mode} == AFTER_HEAD_IM) { |
| 3619 |
!!!cp ('t114'); |
!!!cp ('t114'); |
| 3620 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token); |
| 3621 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3622 |
} else { |
} else { |
| 3623 |
!!!cp ('t115'); |
!!!cp ('t115'); |
| 3636 |
redo B; |
redo B; |
| 3637 |
} elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) { |
} elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) { |
| 3638 |
!!!cp ('t117'); |
!!!cp ('t117'); |
| 3639 |
!!!parse-error (type => 'in noscript:noscript'); |
!!!parse-error (type => 'in noscript:noscript', token => $token); |
| 3640 |
## Ignore the token |
## Ignore the token |
| 3641 |
!!!next-token; |
!!!next-token; |
| 3642 |
redo B; |
redo B; |
| 3649 |
!!!cp ('t119'); |
!!!cp ('t119'); |
| 3650 |
## As if </noscript> |
## As if </noscript> |
| 3651 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3652 |
!!!parse-error (type => 'in noscript:script'); |
!!!parse-error (type => 'in noscript:script', token => $token); |
| 3653 |
|
|
| 3654 |
$self->{insertion_mode} = IN_HEAD_IM; |
$self->{insertion_mode} = IN_HEAD_IM; |
| 3655 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3656 |
} elsif ($self->{insertion_mode} == AFTER_HEAD_IM) { |
} elsif ($self->{insertion_mode} == AFTER_HEAD_IM) { |
| 3657 |
!!!cp ('t120'); |
!!!cp ('t120'); |
| 3658 |
!!!parse-error (type => 'after head:'.$token->{tag_name}); |
!!!parse-error (type => 'after head:'.$token->{tag_name}, token => $token); |
| 3659 |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
push @{$self->{open_elements}}, [$self->{head_element}, 'head']; |
| 3660 |
} else { |
} else { |
| 3661 |
!!!cp ('t121'); |
!!!cp ('t121'); |
| 3672 |
!!!cp ('t122'); |
!!!cp ('t122'); |
| 3673 |
## As if </noscript> |
## As if </noscript> |
| 3674 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3675 |
!!!parse-error (type => 'in noscript:'.$token->{tag_name}); |
!!!parse-error (type => 'in noscript:'.$token->{tag_name}, token => $token); |
| 3676 |
|
|
| 3677 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3678 |
## As if </head> |
## As if </head> |
| 3710 |
!!!cp ('t129'); |
!!!cp ('t129'); |
| 3711 |
## As if </noscript> |
## As if </noscript> |
| 3712 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3713 |
!!!parse-error (type => 'in noscript:/'.$token->{tag_name}); |
!!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token); |
| 3714 |
|
|
| 3715 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3716 |
## As if </head> |
## As if </head> |
| 3751 |
!!!cp ('t133'); |
!!!cp ('t133'); |
| 3752 |
## As if </noscript> |
## As if </noscript> |
| 3753 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3754 |
!!!parse-error (type => 'in noscript:/head'); |
!!!parse-error (type => 'in noscript:/head', token => $token); |
| 3755 |
|
|
| 3756 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3757 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3777 |
redo B; |
redo B; |
| 3778 |
} elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) { |
} elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) { |
| 3779 |
!!!cp ('t137'); |
!!!cp ('t137'); |
| 3780 |
!!!parse-error (type => 'unmatched end tag:noscript'); |
!!!parse-error (type => 'unmatched end tag:noscript', token => $token); |
| 3781 |
## Ignore the token ## ISSUE: An issue in the spec. |
## Ignore the token ## ISSUE: An issue in the spec. |
| 3782 |
!!!next-token; |
!!!next-token; |
| 3783 |
redo B; |
redo B; |
| 3799 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3800 |
} elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) { |
} elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) { |
| 3801 |
!!!cp ('t140'); |
!!!cp ('t140'); |
| 3802 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 3803 |
## Ignore the token |
## Ignore the token |
| 3804 |
!!!next-token; |
!!!next-token; |
| 3805 |
redo B; |
redo B; |
| 3831 |
# |
# |
| 3832 |
} else { |
} else { |
| 3833 |
!!!cp ('t145'); |
!!!cp ('t145'); |
| 3834 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 3835 |
## Ignore the token |
## Ignore the token |
| 3836 |
!!!next-token; |
!!!next-token; |
| 3837 |
redo B; |
redo B; |
| 3842 |
!!!cp ('t146'); |
!!!cp ('t146'); |
| 3843 |
## As if </noscript> |
## As if </noscript> |
| 3844 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3845 |
!!!parse-error (type => 'in noscript:/'.$token->{tag_name}); |
!!!parse-error (type => 'in noscript:/'.$token->{tag_name}, token => $token); |
| 3846 |
|
|
| 3847 |
## Reprocess in the "in head" insertion mode... |
## Reprocess in the "in head" insertion mode... |
| 3848 |
## As if </head> |
## As if </head> |
| 3858 |
} elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) { |
} elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) { |
| 3859 |
## ISSUE: This case cannot be reached? |
## ISSUE: This case cannot be reached? |
| 3860 |
!!!cp ('t148'); |
!!!cp ('t148'); |
| 3861 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 3862 |
## Ignore the token ## ISSUE: An issue in the spec. |
## Ignore the token ## ISSUE: An issue in the spec. |
| 3863 |
!!!next-token; |
!!!next-token; |
| 3864 |
redo B; |
redo B; |
| 3902 |
} elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) { |
} elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) { |
| 3903 |
!!!cp ('t149.3'); |
!!!cp ('t149.3'); |
| 3904 |
|
|
| 3905 |
!!!parse-error (type => 'in noscript:#eof'); |
!!!parse-error (type => 'in noscript:#eof', token => $token); |
| 3906 |
|
|
| 3907 |
## As if </noscript> |
## As if </noscript> |
| 3908 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 3947 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 3948 |
if ($self->{insertion_mode} == IN_CELL_IM) { |
if ($self->{insertion_mode} == IN_CELL_IM) { |
| 3949 |
## have an element in table scope |
## have an element in table scope |
| 3950 |
my $tn; |
for (reverse 0..$#{$self->{open_elements}}) { |
|
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
|
| 3951 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 3952 |
if ($node->[1] eq 'td' or $node->[1] eq 'th') { |
if ($node->[1] eq 'td' or $node->[1] eq 'th') { |
| 3953 |
!!!cp ('t151'); |
!!!cp ('t151'); |
| 3954 |
$tn = $node->[1]; |
|
| 3955 |
last INSCOPE; |
## Close the cell |
| 3956 |
|
!!!back-token; # <?> |
| 3957 |
|
$token = {type => END_TAG_TOKEN, tag_name => $node->[1], |
| 3958 |
|
line => $token->{line}, |
| 3959 |
|
column => $token->{column}}; |
| 3960 |
|
redo B; |
| 3961 |
} elsif ({ |
} elsif ({ |
| 3962 |
table => 1, html => 1, |
table => 1, html => 1, |
| 3963 |
}->{$node->[1]}) { |
}->{$node->[1]}) { |
| 3964 |
!!!cp ('t152'); |
!!!cp ('t152'); |
| 3965 |
last INSCOPE; |
## ISSUE: This case can never be reached, maybe. |
| 3966 |
} |
last; |
|
} # INSCOPE |
|
|
unless (defined $tn) { |
|
|
!!!cp ('t153'); |
|
|
## TODO: This error type is wrong. |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
| 3967 |
} |
} |
| 3968 |
|
} |
| 3969 |
!!!cp ('t154'); |
|
| 3970 |
## Close the cell |
!!!cp ('t153'); |
| 3971 |
!!!back-token; # <?> |
!!!parse-error (type => 'start tag not allowed', |
| 3972 |
$token = {type => END_TAG_TOKEN, tag_name => $tn}; |
value => $token->{tag_name}, token => $token); |
| 3973 |
|
## Ignore the token |
| 3974 |
|
!!!next-token; |
| 3975 |
redo B; |
redo B; |
| 3976 |
} elsif ($self->{insertion_mode} == IN_CAPTION_IM) { |
} elsif ($self->{insertion_mode} == IN_CAPTION_IM) { |
| 3977 |
!!!parse-error (type => 'not closed:caption'); |
!!!parse-error (type => 'not closed:caption', token => $token); |
| 3978 |
|
|
| 3979 |
## As if </caption> |
## NOTE: As if </caption>. |
| 3980 |
## have a table element in table scope |
## have a table element in table scope |
| 3981 |
my $i; |
my $i; |
| 3982 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: { |
| 3983 |
my $node = $self->{open_elements}->[$_]; |
for (reverse 0..$#{$self->{open_elements}}) { |
| 3984 |
if ($node->[1] eq 'caption') { |
my $node = $self->{open_elements}->[$_]; |
| 3985 |
!!!cp ('t155'); |
if ($node->[1] eq 'caption') { |
| 3986 |
$i = $_; |
!!!cp ('t155'); |
| 3987 |
last INSCOPE; |
$i = $_; |
| 3988 |
} elsif ({ |
last INSCOPE; |
| 3989 |
table => 1, html => 1, |
} elsif ({ |
| 3990 |
}->{$node->[1]}) { |
table => 1, html => 1, |
| 3991 |
!!!cp ('t156'); |
}->{$node->[1]}) { |
| 3992 |
last INSCOPE; |
!!!cp ('t156'); |
| 3993 |
|
last; |
| 3994 |
|
} |
| 3995 |
} |
} |
| 3996 |
|
|
| 3997 |
|
!!!cp ('t157'); |
| 3998 |
|
!!!parse-error (type => 'start tag not allowed', |
| 3999 |
|
value => $token->{tag_name}, token => $token); |
| 4000 |
|
## Ignore the token |
| 4001 |
|
!!!next-token; |
| 4002 |
|
redo B; |
| 4003 |
} # INSCOPE |
} # INSCOPE |
|
unless (defined $i) { |
|
|
!!!cp ('t157'); |
|
|
## TODO: this type is wrong. |
|
|
!!!parse-error (type => 'unmatched end tag:caption'); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
| 4004 |
|
|
| 4005 |
## generate implied end tags |
## generate implied end tags |
| 4006 |
while ({ |
while ({ |
| 4012 |
|
|
| 4013 |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
| 4014 |
!!!cp ('t159'); |
!!!cp ('t159'); |
| 4015 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 4016 |
} else { |
} else { |
| 4017 |
!!!cp ('t160'); |
!!!cp ('t160'); |
| 4018 |
} |
} |
| 4053 |
} # INSCOPE |
} # INSCOPE |
| 4054 |
unless (defined $i) { |
unless (defined $i) { |
| 4055 |
!!!cp ('t165'); |
!!!cp ('t165'); |
| 4056 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4057 |
## Ignore the token |
## Ignore the token |
| 4058 |
!!!next-token; |
!!!next-token; |
| 4059 |
redo B; |
redo B; |
| 4069 |
|
|
| 4070 |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 4071 |
!!!cp ('t167'); |
!!!cp ('t167'); |
| 4072 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 4073 |
} else { |
} else { |
| 4074 |
!!!cp ('t168'); |
!!!cp ('t168'); |
| 4075 |
} |
} |
| 4084 |
redo B; |
redo B; |
| 4085 |
} elsif ($self->{insertion_mode} == IN_CAPTION_IM) { |
} elsif ($self->{insertion_mode} == IN_CAPTION_IM) { |
| 4086 |
!!!cp ('t169'); |
!!!cp ('t169'); |
| 4087 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4088 |
## Ignore the token |
## Ignore the token |
| 4089 |
!!!next-token; |
!!!next-token; |
| 4090 |
redo B; |
redo B; |
| 4096 |
if ($self->{insertion_mode} == IN_CAPTION_IM) { |
if ($self->{insertion_mode} == IN_CAPTION_IM) { |
| 4097 |
## have a table element in table scope |
## have a table element in table scope |
| 4098 |
my $i; |
my $i; |
| 4099 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: { |
| 4100 |
my $node = $self->{open_elements}->[$_]; |
for (reverse 0..$#{$self->{open_elements}}) { |
| 4101 |
if ($node->[1] eq $token->{tag_name}) { |
my $node = $self->{open_elements}->[$_]; |
| 4102 |
!!!cp ('t171'); |
if ($node->[1] eq $token->{tag_name}) { |
| 4103 |
$i = $_; |
!!!cp ('t171'); |
| 4104 |
last INSCOPE; |
$i = $_; |
| 4105 |
} elsif ({ |
last INSCOPE; |
| 4106 |
table => 1, html => 1, |
} elsif ({ |
| 4107 |
}->{$node->[1]}) { |
table => 1, html => 1, |
| 4108 |
!!!cp ('t172'); |
}->{$node->[1]}) { |
| 4109 |
last INSCOPE; |
!!!cp ('t172'); |
| 4110 |
|
last; |
| 4111 |
|
} |
| 4112 |
} |
} |
| 4113 |
|
|
| 4114 |
|
!!!cp ('t173'); |
| 4115 |
|
!!!parse-error (type => 'unmatched end tag', |
| 4116 |
|
value => $token->{tag_name}, token => $token); |
| 4117 |
|
## Ignore the token |
| 4118 |
|
!!!next-token; |
| 4119 |
|
redo B; |
| 4120 |
} # INSCOPE |
} # INSCOPE |
|
unless (defined $i) { |
|
|
!!!cp ('t173'); |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} |
|
| 4121 |
|
|
| 4122 |
## generate implied end tags |
## generate implied end tags |
| 4123 |
while ({ |
while ({ |
| 4129 |
|
|
| 4130 |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
| 4131 |
!!!cp ('t175'); |
!!!cp ('t175'); |
| 4132 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 4133 |
} else { |
} else { |
| 4134 |
!!!cp ('t176'); |
!!!cp ('t176'); |
| 4135 |
} |
} |
| 4144 |
redo B; |
redo B; |
| 4145 |
} elsif ($self->{insertion_mode} == IN_CELL_IM) { |
} elsif ($self->{insertion_mode} == IN_CELL_IM) { |
| 4146 |
!!!cp ('t177'); |
!!!cp ('t177'); |
| 4147 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4148 |
## Ignore the token |
## Ignore the token |
| 4149 |
!!!next-token; |
!!!next-token; |
| 4150 |
redo B; |
redo B; |
| 4160 |
## have an element in table scope |
## have an element in table scope |
| 4161 |
my $i; |
my $i; |
| 4162 |
my $tn; |
my $tn; |
| 4163 |
INSCOPE: for (reverse 0..$#{$self->{open_elements}}) { |
INSCOPE: { |
| 4164 |
my $node = $self->{open_elements}->[$_]; |
for (reverse 0..$#{$self->{open_elements}}) { |
| 4165 |
if ($node->[1] eq $token->{tag_name}) { |
my $node = $self->{open_elements}->[$_]; |
| 4166 |
!!!cp ('t179'); |
if ($node->[1] eq $token->{tag_name}) { |
| 4167 |
$i = $_; |
!!!cp ('t179'); |
| 4168 |
last INSCOPE; |
$i = $_; |
| 4169 |
} elsif ($node->[1] eq 'td' or $node->[1] eq 'th') { |
|
| 4170 |
!!!cp ('t180'); |
## Close the cell |
| 4171 |
$tn = $node->[1]; |
!!!back-token; # </?> |
| 4172 |
## NOTE: There is exactly one |td| or |th| element |
$token = {type => END_TAG_TOKEN, tag_name => $tn, |
| 4173 |
## in scope in the stack of open elements by definition. |
line => $token->{line}, |
| 4174 |
} elsif ({ |
column => $token->{column}}; |
| 4175 |
table => 1, html => 1, |
redo B; |
| 4176 |
}->{$node->[1]}) { |
} elsif ($node->[1] eq 'td' or $node->[1] eq 'th') { |
| 4177 |
!!!cp ('t181'); |
!!!cp ('t180'); |
| 4178 |
last INSCOPE; |
$tn = $node->[1]; |
| 4179 |
|
## NOTE: There is exactly one |td| or |th| element |
| 4180 |
|
## in scope in the stack of open elements by definition. |
| 4181 |
|
} elsif ({ |
| 4182 |
|
table => 1, html => 1, |
| 4183 |
|
}->{$node->[1]}) { |
| 4184 |
|
## ISSUE: Can this be reached? |
| 4185 |
|
!!!cp ('t181'); |
| 4186 |
|
last; |
| 4187 |
|
} |
| 4188 |
} |
} |
| 4189 |
} # INSCOPE |
|
|
unless (defined $i) { |
|
| 4190 |
!!!cp ('t182'); |
!!!cp ('t182'); |
| 4191 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag', |
| 4192 |
|
value => $token->{tag_name}, token => $token); |
| 4193 |
## Ignore the token |
## Ignore the token |
| 4194 |
!!!next-token; |
!!!next-token; |
| 4195 |
redo B; |
redo B; |
| 4196 |
} else { |
} # INSCOPE |
|
!!!cp ('t183'); |
|
|
} |
|
|
|
|
|
## Close the cell |
|
|
!!!back-token; # </?> |
|
|
$token = {type => END_TAG_TOKEN, tag_name => $tn}; |
|
|
redo B; |
|
| 4197 |
} elsif ($token->{tag_name} eq 'table' and |
} elsif ($token->{tag_name} eq 'table' and |
| 4198 |
$self->{insertion_mode} == IN_CAPTION_IM) { |
$self->{insertion_mode} == IN_CAPTION_IM) { |
| 4199 |
!!!parse-error (type => 'not closed:caption'); |
!!!parse-error (type => 'not closed:caption', token => $token); |
| 4200 |
|
|
| 4201 |
## As if </caption> |
## As if </caption> |
| 4202 |
## have a table element in table scope |
## have a table element in table scope |
| 4216 |
} # INSCOPE |
} # INSCOPE |
| 4217 |
unless (defined $i) { |
unless (defined $i) { |
| 4218 |
!!!cp ('t186'); |
!!!cp ('t186'); |
| 4219 |
!!!parse-error (type => 'unmatched end tag:caption'); |
!!!parse-error (type => 'unmatched end tag:caption', token => $token); |
| 4220 |
## Ignore the token |
## Ignore the token |
| 4221 |
!!!next-token; |
!!!next-token; |
| 4222 |
redo B; |
redo B; |
| 4232 |
|
|
| 4233 |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
if ($self->{open_elements}->[-1]->[1] ne 'caption') { |
| 4234 |
!!!cp ('t188'); |
!!!cp ('t188'); |
| 4235 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 4236 |
} else { |
} else { |
| 4237 |
!!!cp ('t189'); |
!!!cp ('t189'); |
| 4238 |
} |
} |
| 4250 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 4251 |
if ($self->{insertion_mode} & BODY_TABLE_IMS) { |
if ($self->{insertion_mode} & BODY_TABLE_IMS) { |
| 4252 |
!!!cp ('t190'); |
!!!cp ('t190'); |
| 4253 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4254 |
## Ignore the token |
## Ignore the token |
| 4255 |
!!!next-token; |
!!!next-token; |
| 4256 |
redo B; |
redo B; |
| 4264 |
}->{$token->{tag_name}} and |
}->{$token->{tag_name}} and |
| 4265 |
$self->{insertion_mode} == IN_CAPTION_IM) { |
$self->{insertion_mode} == IN_CAPTION_IM) { |
| 4266 |
!!!cp ('t192'); |
!!!cp ('t192'); |
| 4267 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4268 |
## Ignore the token |
## Ignore the token |
| 4269 |
!!!next-token; |
!!!next-token; |
| 4270 |
redo B; |
redo B; |
| 4279 |
th => 1, thead => 1, tr => 1, body => 1, html => 1, |
th => 1, thead => 1, tr => 1, body => 1, html => 1, |
| 4280 |
}->{$entry->[1]}) { |
}->{$entry->[1]}) { |
| 4281 |
!!!cp ('t75'); |
!!!cp ('t75'); |
| 4282 |
!!!parse-error (type => 'in body:#eof'); |
!!!parse-error (type => 'in body:#eof', token => $token); |
| 4283 |
last; |
last; |
| 4284 |
} |
} |
| 4285 |
} |
} |
| 4307 |
} |
} |
| 4308 |
} |
} |
| 4309 |
|
|
| 4310 |
!!!parse-error (type => 'in table:#character'); |
!!!parse-error (type => 'in table:#character', token => $token); |
| 4311 |
|
|
| 4312 |
## As if in body, but insert into foster parent element |
## As if in body, but insert into foster parent element |
| 4313 |
## ISSUE: Spec says that "whenever a node would be inserted |
## ISSUE: Spec says that "whenever a node would be inserted |
| 4381 |
if ($self->{insertion_mode} == IN_TABLE_BODY_IM) { |
if ($self->{insertion_mode} == IN_TABLE_BODY_IM) { |
| 4382 |
unless ($token->{tag_name} eq 'tr') { |
unless ($token->{tag_name} eq 'tr') { |
| 4383 |
!!!cp ('t202'); |
!!!cp ('t202'); |
| 4384 |
!!!parse-error (type => 'missing start tag:tr'); |
!!!parse-error (type => 'missing start tag:tr', token => $token); |
| 4385 |
} |
} |
| 4386 |
|
|
| 4387 |
## Clear back to table body context |
## Clear back to table body context |
| 4451 |
unless (defined $i) { |
unless (defined $i) { |
| 4452 |
!!!cp ('t210'); |
!!!cp ('t210'); |
| 4453 |
## TODO: This type is wrong. |
## TODO: This type is wrong. |
| 4454 |
!!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name}, token => $token); |
| 4455 |
## Ignore the token |
## Ignore the token |
| 4456 |
!!!next-token; |
!!!next-token; |
| 4457 |
redo B; |
redo B; |
| 4499 |
unless (defined $i) { |
unless (defined $i) { |
| 4500 |
!!!cp ('t216'); |
!!!cp ('t216'); |
| 4501 |
## TODO: This erorr type ios wrong. |
## TODO: This erorr type ios wrong. |
| 4502 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4503 |
## Ignore the token |
## Ignore the token |
| 4504 |
!!!next-token; |
!!!next-token; |
| 4505 |
redo B; |
redo B; |
| 4571 |
die "$0: in table: <>: $token->{tag_name}"; |
die "$0: in table: <>: $token->{tag_name}"; |
| 4572 |
} |
} |
| 4573 |
} elsif ($token->{tag_name} eq 'table') { |
} elsif ($token->{tag_name} eq 'table') { |
| 4574 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 4575 |
|
|
| 4576 |
## As if </table> |
## As if </table> |
| 4577 |
## have a table element in table scope |
## have a table element in table scope |
| 4593 |
unless (defined $i) { |
unless (defined $i) { |
| 4594 |
!!!cp ('t223'); |
!!!cp ('t223'); |
| 4595 |
## TODO: The following is wrong, maybe. |
## TODO: The following is wrong, maybe. |
| 4596 |
!!!parse-error (type => 'unmatched end tag:table'); |
!!!parse-error (type => 'unmatched end tag:table', token => $token); |
| 4597 |
## Ignore tokens </table><table> |
## Ignore tokens </table><table> |
| 4598 |
!!!next-token; |
!!!next-token; |
| 4599 |
redo B; |
redo B; |
| 4611 |
if ($self->{open_elements}->[-1]->[1] ne 'table') { |
if ($self->{open_elements}->[-1]->[1] ne 'table') { |
| 4612 |
!!!cp ('t225'); |
!!!cp ('t225'); |
| 4613 |
## ISSUE: Can this case be reached? |
## ISSUE: Can this case be reached? |
| 4614 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 4615 |
} else { |
} else { |
| 4616 |
!!!cp ('t226'); |
!!!cp ('t226'); |
| 4617 |
} |
} |
| 4649 |
my $type = lc $token->{attributes}->{type}->{value}; |
my $type = lc $token->{attributes}->{type}->{value}; |
| 4650 |
if ($type eq 'hidden') { |
if ($type eq 'hidden') { |
| 4651 |
!!!cp ('t227.3'); |
!!!cp ('t227.3'); |
| 4652 |
!!!parse-error (type => 'in table:'.$token->{tag_name}); |
!!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token); |
| 4653 |
|
|
| 4654 |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
!!!insert-element ($token->{tag_name}, $token->{attributes}); |
| 4655 |
|
|
| 4676 |
# |
# |
| 4677 |
} |
} |
| 4678 |
|
|
| 4679 |
!!!parse-error (type => 'in table:'.$token->{tag_name}); |
!!!parse-error (type => 'in table:'.$token->{tag_name}, token => $token); |
| 4680 |
|
|
| 4681 |
$insert = $insert_to_foster; |
$insert = $insert_to_foster; |
| 4682 |
# |
# |
| 4700 |
} # INSCOPE |
} # INSCOPE |
| 4701 |
unless (defined $i) { |
unless (defined $i) { |
| 4702 |
!!!cp ('t230'); |
!!!cp ('t230'); |
| 4703 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4704 |
## Ignore the token |
## Ignore the token |
| 4705 |
!!!next-token; |
!!!next-token; |
| 4706 |
redo B; |
redo B; |
| 4742 |
unless (defined $i) { |
unless (defined $i) { |
| 4743 |
!!!cp ('t235'); |
!!!cp ('t235'); |
| 4744 |
## TODO: The following is wrong. |
## TODO: The following is wrong. |
| 4745 |
!!!parse-error (type => 'unmatched end tag:'.$token->{type}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{type}, token => $token); |
| 4746 |
## Ignore the token |
## Ignore the token |
| 4747 |
!!!next-token; |
!!!next-token; |
| 4748 |
redo B; |
redo B; |
| 4782 |
} # INSCOPE |
} # INSCOPE |
| 4783 |
unless (defined $i) { |
unless (defined $i) { |
| 4784 |
!!!cp ('t239'); |
!!!cp ('t239'); |
| 4785 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4786 |
## Ignore the token |
## Ignore the token |
| 4787 |
!!!next-token; |
!!!next-token; |
| 4788 |
redo B; |
redo B; |
| 4830 |
} # INSCOPE |
} # INSCOPE |
| 4831 |
unless (defined $i) { |
unless (defined $i) { |
| 4832 |
!!!cp ('t243'); |
!!!cp ('t243'); |
| 4833 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4834 |
## Ignore the token |
## Ignore the token |
| 4835 |
!!!next-token; |
!!!next-token; |
| 4836 |
redo B; |
redo B; |
| 4865 |
} # INSCOPE |
} # INSCOPE |
| 4866 |
unless (defined $i) { |
unless (defined $i) { |
| 4867 |
!!!cp ('t249'); |
!!!cp ('t249'); |
| 4868 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4869 |
## Ignore the token |
## Ignore the token |
| 4870 |
!!!next-token; |
!!!next-token; |
| 4871 |
redo B; |
redo B; |
| 4889 |
} # INSCOPE |
} # INSCOPE |
| 4890 |
unless (defined $i) { |
unless (defined $i) { |
| 4891 |
!!!cp ('t252'); |
!!!cp ('t252'); |
| 4892 |
!!!parse-error (type => 'unmatched end tag:tr'); |
!!!parse-error (type => 'unmatched end tag:tr', token => $token); |
| 4893 |
## Ignore the token |
## Ignore the token |
| 4894 |
!!!next-token; |
!!!next-token; |
| 4895 |
redo B; |
redo B; |
| 4926 |
} # INSCOPE |
} # INSCOPE |
| 4927 |
unless (defined $i) { |
unless (defined $i) { |
| 4928 |
!!!cp ('t256'); |
!!!cp ('t256'); |
| 4929 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4930 |
## Ignore the token |
## Ignore the token |
| 4931 |
!!!next-token; |
!!!next-token; |
| 4932 |
redo B; |
redo B; |
| 4952 |
tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM |
tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM |
| 4953 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 4954 |
!!!cp ('t258'); |
!!!cp ('t258'); |
| 4955 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 4956 |
## Ignore the token |
## Ignore the token |
| 4957 |
!!!next-token; |
!!!next-token; |
| 4958 |
redo B; |
redo B; |
| 4959 |
} else { |
} else { |
| 4960 |
!!!cp ('t259'); |
!!!cp ('t259'); |
| 4961 |
!!!parse-error (type => 'in table:/'.$token->{tag_name}); |
!!!parse-error (type => 'in table:/'.$token->{tag_name}, token => $token); |
| 4962 |
|
|
| 4963 |
$insert = $insert_to_foster; |
$insert = $insert_to_foster; |
| 4964 |
# |
# |
| 4966 |
} elsif ($token->{type} == END_OF_FILE_TOKEN) { |
} elsif ($token->{type} == END_OF_FILE_TOKEN) { |
| 4967 |
unless ($self->{open_elements}->[-1]->[1] eq 'html' and |
unless ($self->{open_elements}->[-1]->[1] eq 'html' and |
| 4968 |
@{$self->{open_elements}} == 1) { # redundant, maybe |
@{$self->{open_elements}} == 1) { # redundant, maybe |
| 4969 |
!!!parse-error (type => 'in body:#eof'); |
!!!parse-error (type => 'in body:#eof', token => $token); |
| 4970 |
!!!cp ('t259.1'); |
!!!cp ('t259.1'); |
| 4971 |
# |
# |
| 4972 |
} else { |
} else { |
| 5007 |
if ($token->{tag_name} eq 'colgroup') { |
if ($token->{tag_name} eq 'colgroup') { |
| 5008 |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
| 5009 |
!!!cp ('t264'); |
!!!cp ('t264'); |
| 5010 |
!!!parse-error (type => 'unmatched end tag:colgroup'); |
!!!parse-error (type => 'unmatched end tag:colgroup', token => $token); |
| 5011 |
## Ignore the token |
## Ignore the token |
| 5012 |
!!!next-token; |
!!!next-token; |
| 5013 |
redo B; |
redo B; |
| 5020 |
} |
} |
| 5021 |
} elsif ($token->{tag_name} eq 'col') { |
} elsif ($token->{tag_name} eq 'col') { |
| 5022 |
!!!cp ('t266'); |
!!!cp ('t266'); |
| 5023 |
!!!parse-error (type => 'unmatched end tag:col'); |
!!!parse-error (type => 'unmatched end tag:col', token => $token); |
| 5024 |
## Ignore the token |
## Ignore the token |
| 5025 |
!!!next-token; |
!!!next-token; |
| 5026 |
redo B; |
redo B; |
| 5050 |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
if ($self->{open_elements}->[-1]->[1] eq 'html') { |
| 5051 |
!!!cp ('t269'); |
!!!cp ('t269'); |
| 5052 |
## TODO: Wrong error type? |
## TODO: Wrong error type? |
| 5053 |
!!!parse-error (type => 'unmatched end tag:colgroup'); |
!!!parse-error (type => 'unmatched end tag:colgroup', token => $token); |
| 5054 |
## Ignore the token |
## Ignore the token |
| 5055 |
!!!next-token; |
!!!next-token; |
| 5056 |
redo B; |
redo B; |
| 5109 |
tr => 1, td => 1, th => 1, |
tr => 1, td => 1, th => 1, |
| 5110 |
}->{$token->{tag_name}})) { |
}->{$token->{tag_name}})) { |
| 5111 |
## TODO: The type below is not good - <select> is replaced by </select> |
## TODO: The type below is not good - <select> is replaced by </select> |
| 5112 |
!!!parse-error (type => 'not closed:select'); |
!!!parse-error (type => 'not closed:select', token => $token); |
| 5113 |
## NOTE: As if the token were </select> (<select> case) or |
## NOTE: As if the token were </select> (<select> case) or |
| 5114 |
## as if there were </select> (otherwise). |
## as if there were </select> (otherwise). |
| 5115 |
## have an element in table scope |
## have an element in table scope |
| 5129 |
} # INSCOPE |
} # INSCOPE |
| 5130 |
unless (defined $i) { |
unless (defined $i) { |
| 5131 |
!!!cp ('t280'); |
!!!cp ('t280'); |
| 5132 |
!!!parse-error (type => 'unmatched end tag:select'); |
!!!parse-error (type => 'unmatched end tag:select', token => $token); |
| 5133 |
## Ignore the token |
## Ignore the token |
| 5134 |
!!!next-token; |
!!!next-token; |
| 5135 |
redo B; |
redo B; |
| 5151 |
} |
} |
| 5152 |
} else { |
} else { |
| 5153 |
!!!cp ('t282'); |
!!!cp ('t282'); |
| 5154 |
!!!parse-error (type => 'in select:'.$token->{tag_name}); |
!!!parse-error (type => 'in select:'.$token->{tag_name}, token => $token); |
| 5155 |
## Ignore the token |
## Ignore the token |
| 5156 |
!!!next-token; |
!!!next-token; |
| 5157 |
redo B; |
redo B; |
| 5168 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 5169 |
} else { |
} else { |
| 5170 |
!!!cp ('t285'); |
!!!cp ('t285'); |
| 5171 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 5172 |
## Ignore the token |
## Ignore the token |
| 5173 |
} |
} |
| 5174 |
!!!next-token; |
!!!next-token; |
| 5179 |
pop @{$self->{open_elements}}; |
pop @{$self->{open_elements}}; |
| 5180 |
} else { |
} else { |
| 5181 |
!!!cp ('t287'); |
!!!cp ('t287'); |
| 5182 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 5183 |
## Ignore the token |
## Ignore the token |
| 5184 |
} |
} |
| 5185 |
!!!next-token; |
!!!next-token; |
| 5202 |
} # INSCOPE |
} # INSCOPE |
| 5203 |
unless (defined $i) { |
unless (defined $i) { |
| 5204 |
!!!cp ('t290'); |
!!!cp ('t290'); |
| 5205 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 5206 |
## Ignore the token |
## Ignore the token |
| 5207 |
!!!next-token; |
!!!next-token; |
| 5208 |
redo B; |
redo B; |
| 5221 |
tfoot => 1, thead => 1, tr => 1, td => 1, th => 1, |
tfoot => 1, thead => 1, tr => 1, td => 1, th => 1, |
| 5222 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 5223 |
## TODO: The following is wrong? |
## TODO: The following is wrong? |
| 5224 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 5225 |
|
|
| 5226 |
## have an element in table scope |
## have an element in table scope |
| 5227 |
my $i; |
my $i; |
| 5265 |
unless (defined $i) { |
unless (defined $i) { |
| 5266 |
!!!cp ('t297'); |
!!!cp ('t297'); |
| 5267 |
## TODO: The following error type is correct? |
## TODO: The following error type is correct? |
| 5268 |
!!!parse-error (type => 'unmatched end tag:select'); |
!!!parse-error (type => 'unmatched end tag:select', token => $token); |
| 5269 |
## Ignore the </select> token |
## Ignore the </select> token |
| 5270 |
!!!next-token; ## TODO: ok? |
!!!next-token; ## TODO: ok? |
| 5271 |
redo B; |
redo B; |
| 5280 |
redo B; |
redo B; |
| 5281 |
} else { |
} else { |
| 5282 |
!!!cp ('t299'); |
!!!cp ('t299'); |
| 5283 |
!!!parse-error (type => 'in select:/'.$token->{tag_name}); |
!!!parse-error (type => 'in select:/'.$token->{tag_name}, token => $token); |
| 5284 |
## Ignore the token |
## Ignore the token |
| 5285 |
!!!next-token; |
!!!next-token; |
| 5286 |
redo B; |
redo B; |
| 5289 |
unless ($self->{open_elements}->[-1]->[1] eq 'html' and |
unless ($self->{open_elements}->[-1]->[1] eq 'html' and |
| 5290 |
@{$self->{open_elements}} == 1) { # redundant, maybe |
@{$self->{open_elements}} == 1) { # redundant, maybe |
| 5291 |
!!!cp ('t299.1'); |
!!!cp ('t299.1'); |
| 5292 |
!!!parse-error (type => 'in body:#eof'); |
!!!parse-error (type => 'in body:#eof', token => $token); |
| 5293 |
} else { |
} else { |
| 5294 |
!!!cp ('t299.2'); |
!!!cp ('t299.2'); |
| 5295 |
} |
} |
| 5317 |
|
|
| 5318 |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
| 5319 |
!!!cp ('t301'); |
!!!cp ('t301'); |
| 5320 |
!!!parse-error (type => 'after html:#character'); |
!!!parse-error (type => 'after html:#character', token => $token); |
| 5321 |
|
|
| 5322 |
## Reprocess in the "after body" insertion mode. |
## Reprocess in the "after body" insertion mode. |
| 5323 |
} else { |
} else { |
| 5325 |
} |
} |
| 5326 |
|
|
| 5327 |
## "after body" insertion mode |
## "after body" insertion mode |
| 5328 |
!!!parse-error (type => 'after body:#character'); |
!!!parse-error (type => 'after body:#character', token => $token); |
| 5329 |
|
|
| 5330 |
$self->{insertion_mode} = IN_BODY_IM; |
$self->{insertion_mode} = IN_BODY_IM; |
| 5331 |
## reprocess |
## reprocess |
| 5333 |
} elsif ($token->{type} == START_TAG_TOKEN) { |
} elsif ($token->{type} == START_TAG_TOKEN) { |
| 5334 |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
| 5335 |
!!!cp ('t303'); |
!!!cp ('t303'); |
| 5336 |
!!!parse-error (type => 'after html:'.$token->{tag_name}); |
!!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token); |
| 5337 |
|
|
| 5338 |
## Reprocess in the "after body" insertion mode. |
## Reprocess in the "after body" insertion mode. |
| 5339 |
} else { |
} else { |
| 5341 |
} |
} |
| 5342 |
|
|
| 5343 |
## "after body" insertion mode |
## "after body" insertion mode |
| 5344 |
!!!parse-error (type => 'after body:'.$token->{tag_name}); |
!!!parse-error (type => 'after body:'.$token->{tag_name}, token => $token); |
| 5345 |
|
|
| 5346 |
$self->{insertion_mode} = IN_BODY_IM; |
$self->{insertion_mode} = IN_BODY_IM; |
| 5347 |
## reprocess |
## reprocess |
| 5349 |
} elsif ($token->{type} == END_TAG_TOKEN) { |
} elsif ($token->{type} == END_TAG_TOKEN) { |
| 5350 |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) { |
| 5351 |
!!!cp ('t305'); |
!!!cp ('t305'); |
| 5352 |
!!!parse-error (type => 'after html:/'.$token->{tag_name}); |
!!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token); |
| 5353 |
|
|
| 5354 |
$self->{insertion_mode} = AFTER_BODY_IM; |
$self->{insertion_mode} = AFTER_BODY_IM; |
| 5355 |
## Reprocess in the "after body" insertion mode. |
## Reprocess in the "after body" insertion mode. |
| 5361 |
if ($token->{tag_name} eq 'html') { |
if ($token->{tag_name} eq 'html') { |
| 5362 |
if (defined $self->{inner_html_node}) { |
if (defined $self->{inner_html_node}) { |
| 5363 |
!!!cp ('t307'); |
!!!cp ('t307'); |
| 5364 |
!!!parse-error (type => 'unmatched end tag:html'); |
!!!parse-error (type => 'unmatched end tag:html', token => $token); |
| 5365 |
## Ignore the token |
## Ignore the token |
| 5366 |
!!!next-token; |
!!!next-token; |
| 5367 |
redo B; |
redo B; |
| 5373 |
} |
} |
| 5374 |
} else { |
} else { |
| 5375 |
!!!cp ('t309'); |
!!!cp ('t309'); |
| 5376 |
!!!parse-error (type => 'after body:/'.$token->{tag_name}); |
!!!parse-error (type => 'after body:/'.$token->{tag_name}, token => $token); |
| 5377 |
|
|
| 5378 |
$self->{insertion_mode} = IN_BODY_IM; |
$self->{insertion_mode} = IN_BODY_IM; |
| 5379 |
## reprocess |
## reprocess |
| 5401 |
if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) { |
if ($token->{data} =~ s/^[^\x09\x0A\x0B\x0C\x20]+//) { |
| 5402 |
if ($self->{insertion_mode} == IN_FRAMESET_IM) { |
if ($self->{insertion_mode} == IN_FRAMESET_IM) { |
| 5403 |
!!!cp ('t311'); |
!!!cp ('t311'); |
| 5404 |
!!!parse-error (type => 'in frameset:#character'); |
!!!parse-error (type => 'in frameset:#character', token => $token); |
| 5405 |
} elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) { |
} elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) { |
| 5406 |
!!!cp ('t312'); |
!!!cp ('t312'); |
| 5407 |
!!!parse-error (type => 'after frameset:#character'); |
!!!parse-error (type => 'after frameset:#character', token => $token); |
| 5408 |
} else { # "after html frameset" |
} else { # "after html frameset" |
| 5409 |
!!!cp ('t313'); |
!!!cp ('t313'); |
| 5410 |
!!!parse-error (type => 'after html:#character'); |
!!!parse-error (type => 'after html:#character', token => $token); |
| 5411 |
|
|
| 5412 |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
| 5413 |
## Reprocess in the "after frameset" insertion mode. |
## Reprocess in the "after frameset" insertion mode. |
| 5414 |
!!!parse-error (type => 'after frameset:#character'); |
!!!parse-error (type => 'after frameset:#character', token => $token); |
| 5415 |
} |
} |
| 5416 |
|
|
| 5417 |
## Ignore the token. |
## Ignore the token. |
| 5429 |
} elsif ($token->{type} == START_TAG_TOKEN) { |
} elsif ($token->{type} == START_TAG_TOKEN) { |
| 5430 |
if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) { |
if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) { |
| 5431 |
!!!cp ('t316'); |
!!!cp ('t316'); |
| 5432 |
!!!parse-error (type => 'after html:'.$token->{tag_name}); |
!!!parse-error (type => 'after html:'.$token->{tag_name}, token => $token); |
| 5433 |
|
|
| 5434 |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
| 5435 |
## Process in the "after frameset" insertion mode. |
## Process in the "after frameset" insertion mode. |
| 5458 |
} else { |
} else { |
| 5459 |
if ($self->{insertion_mode} == IN_FRAMESET_IM) { |
if ($self->{insertion_mode} == IN_FRAMESET_IM) { |
| 5460 |
!!!cp ('t321'); |
!!!cp ('t321'); |
| 5461 |
!!!parse-error (type => 'in frameset:'.$token->{tag_name}); |
!!!parse-error (type => 'in frameset:'.$token->{tag_name}, token => $token); |
| 5462 |
} else { |
} else { |
| 5463 |
!!!cp ('t322'); |
!!!cp ('t322'); |
| 5464 |
!!!parse-error (type => 'after frameset:'.$token->{tag_name}); |
!!!parse-error (type => 'after frameset:'.$token->{tag_name}, token => $token); |
| 5465 |
} |
} |
| 5466 |
## Ignore the token |
## Ignore the token |
| 5467 |
!!!next-token; |
!!!next-token; |
| 5470 |
} elsif ($token->{type} == END_TAG_TOKEN) { |
} elsif ($token->{type} == END_TAG_TOKEN) { |
| 5471 |
if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) { |
if ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) { |
| 5472 |
!!!cp ('t323'); |
!!!cp ('t323'); |
| 5473 |
!!!parse-error (type => 'after html:/'.$token->{tag_name}); |
!!!parse-error (type => 'after html:/'.$token->{tag_name}, token => $token); |
| 5474 |
|
|
| 5475 |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
$self->{insertion_mode} = AFTER_FRAMESET_IM; |
| 5476 |
## Process in the "after frameset" insertion mode. |
## Process in the "after frameset" insertion mode. |
| 5483 |
if ($self->{open_elements}->[-1]->[1] eq 'html' and |
if ($self->{open_elements}->[-1]->[1] eq 'html' and |
| 5484 |
@{$self->{open_elements}} == 1) { |
@{$self->{open_elements}} == 1) { |
| 5485 |
!!!cp ('t325'); |
!!!cp ('t325'); |
| 5486 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 5487 |
## Ignore the token |
## Ignore the token |
| 5488 |
!!!next-token; |
!!!next-token; |
| 5489 |
} else { |
} else { |
| 5509 |
} else { |
} else { |
| 5510 |
if ($self->{insertion_mode} == IN_FRAMESET_IM) { |
if ($self->{insertion_mode} == IN_FRAMESET_IM) { |
| 5511 |
!!!cp ('t330'); |
!!!cp ('t330'); |
| 5512 |
!!!parse-error (type => 'in frameset:/'.$token->{tag_name}); |
!!!parse-error (type => 'in frameset:/'.$token->{tag_name}, token => $token); |
| 5513 |
} else { |
} else { |
| 5514 |
!!!cp ('t331'); |
!!!cp ('t331'); |
| 5515 |
!!!parse-error (type => 'after frameset:/'.$token->{tag_name}); |
!!!parse-error (type => 'after frameset:/'.$token->{tag_name}, token => $token); |
| 5516 |
} |
} |
| 5517 |
## Ignore the token |
## Ignore the token |
| 5518 |
!!!next-token; |
!!!next-token; |
| 5522 |
unless ($self->{open_elements}->[-1]->[1] eq 'html' and |
unless ($self->{open_elements}->[-1]->[1] eq 'html' and |
| 5523 |
@{$self->{open_elements}} == 1) { # redundant, maybe |
@{$self->{open_elements}} == 1) { # redundant, maybe |
| 5524 |
!!!cp ('t331.1'); |
!!!cp ('t331.1'); |
| 5525 |
!!!parse-error (type => 'in body:#eof'); |
!!!parse-error (type => 'in body:#eof', token => $token); |
| 5526 |
} else { |
} else { |
| 5527 |
!!!cp ('t331.2'); |
!!!cp ('t331.2'); |
| 5528 |
} |
} |
| 5568 |
if ($token->{attributes}->{charset}) { ## TODO: And if supported |
if ($token->{attributes}->{charset}) { ## TODO: And if supported |
| 5569 |
!!!cp ('t335'); |
!!!cp ('t335'); |
| 5570 |
$self->{change_encoding} |
$self->{change_encoding} |
| 5571 |
->($self, $token->{attributes}->{charset}->{value}); |
->($self, $token->{attributes}->{charset}->{value}, $token); |
| 5572 |
|
|
| 5573 |
$meta_el->[0]->get_attribute_node_ns (undef, 'charset') |
$meta_el->[0]->get_attribute_node_ns (undef, 'charset') |
| 5574 |
->set_user_data (manakai_has_reference => |
->set_user_data (manakai_has_reference => |
| 5583 |
([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) { |
([^"'\x09-\x0D\x20][^\x09-\x0D\x20]*))/x) { |
| 5584 |
!!!cp ('t336'); |
!!!cp ('t336'); |
| 5585 |
$self->{change_encoding} |
$self->{change_encoding} |
| 5586 |
->($self, defined $1 ? $1 : defined $2 ? $2 : $3); |
->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token); |
| 5587 |
$meta_el->[0]->get_attribute_node_ns (undef, 'content') |
$meta_el->[0]->get_attribute_node_ns (undef, 'content') |
| 5588 |
->set_user_data (manakai_has_reference => |
->set_user_data (manakai_has_reference => |
| 5589 |
$token->{attributes}->{content} |
$token->{attributes}->{content} |
| 5615 |
$parse_rcdata->(RCDATA_CONTENT_MODEL); |
$parse_rcdata->(RCDATA_CONTENT_MODEL); |
| 5616 |
redo B; |
redo B; |
| 5617 |
} elsif ($token->{tag_name} eq 'body') { |
} elsif ($token->{tag_name} eq 'body') { |
| 5618 |
!!!parse-error (type => 'in body:body'); |
!!!parse-error (type => 'in body:body', token => $token); |
| 5619 |
|
|
| 5620 |
if (@{$self->{open_elements}} == 1 or |
if (@{$self->{open_elements}} == 1 or |
| 5621 |
$self->{open_elements}->[1]->[1] ne 'body') { |
$self->{open_elements}->[1]->[1] ne 'body') { |
| 5640 |
h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1, |
h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1, |
| 5641 |
menu => 1, ol => 1, p => 1, ul => 1, |
menu => 1, ol => 1, p => 1, ul => 1, |
| 5642 |
pre => 1, listing => 1, |
pre => 1, listing => 1, |
| 5643 |
|
form => 1, |
| 5644 |
|
table => 1, |
| 5645 |
|
hr => 1, |
| 5646 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 5647 |
|
if ($token->{tag_name} eq 'form' and defined $self->{form_element}) { |
| 5648 |
|
!!!cp ('t350'); |
| 5649 |
|
!!!parse-error (type => 'in form:form', token => $token); |
| 5650 |
|
## Ignore the token |
| 5651 |
|
!!!next-token; |
| 5652 |
|
redo B; |
| 5653 |
|
} |
| 5654 |
|
|
| 5655 |
## has a p element in scope |
## has a p element in scope |
| 5656 |
INSCOPE: for (reverse @{$self->{open_elements}}) { |
INSCOPE: for (reverse @{$self->{open_elements}}) { |
| 5657 |
if ($_->[1] eq 'p') { |
if ($_->[1] eq 'p') { |
| 5658 |
!!!cp ('t344'); |
!!!cp ('t344'); |
| 5659 |
!!!back-token; |
!!!back-token; |
| 5660 |
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
$token = {type => END_TAG_TOKEN, tag_name => 'p', |
| 5661 |
|
line => $token->{line}, column => $token->{column}}; |
| 5662 |
redo B; |
redo B; |
| 5663 |
} elsif ({ |
} elsif ({ |
| 5664 |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
| 5683 |
} else { |
} else { |
| 5684 |
!!!cp ('t348'); |
!!!cp ('t348'); |
| 5685 |
} |
} |
| 5686 |
} else { |
} elsif ($token->{tag_name} eq 'form') { |
| 5687 |
!!!cp ('t347'); |
!!!cp ('t347.1'); |
| 5688 |
|
$self->{form_element} = $self->{open_elements}->[-1]->[0]; |
| 5689 |
|
|
| 5690 |
!!!next-token; |
!!!next-token; |
| 5691 |
} |
} elsif ($token->{tag_name} eq 'table') { |
| 5692 |
redo B; |
!!!cp ('t382'); |
| 5693 |
} elsif ($token->{tag_name} eq 'form') { |
push @{$open_tables}, [$self->{open_elements}->[-1]->[0]]; |
| 5694 |
if (defined $self->{form_element}) { |
|
| 5695 |
!!!cp ('t350'); |
$self->{insertion_mode} = IN_TABLE_IM; |
| 5696 |
!!!parse-error (type => 'in form:form'); |
|
| 5697 |
## Ignore the token |
!!!next-token; |
| 5698 |
|
} elsif ($token->{tag_name} eq 'hr') { |
| 5699 |
|
!!!cp ('t386'); |
| 5700 |
|
pop @{$self->{open_elements}}; |
| 5701 |
|
|
| 5702 |
!!!next-token; |
!!!next-token; |
|
redo B; |
|
| 5703 |
} else { |
} else { |
| 5704 |
## has a p element in scope |
!!!cp ('t347'); |
|
INSCOPE: for (reverse @{$self->{open_elements}}) { |
|
|
if ($_->[1] eq 'p') { |
|
|
!!!cp ('t351'); |
|
|
!!!back-token; |
|
|
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
|
|
button => 1, marquee => 1, object => 1, html => 1, |
|
|
}->{$_->[1]}) { |
|
|
!!!cp ('t352'); |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
$self->{form_element} = $self->{open_elements}->[-1]->[0]; |
|
| 5705 |
!!!next-token; |
!!!next-token; |
|
redo B; |
|
| 5706 |
} |
} |
| 5707 |
} elsif ($token->{tag_name} eq 'li') { |
redo B; |
| 5708 |
|
} elsif ({li => 1, dt => 1, dd => 1}->{$token->{tag_name}}) { |
| 5709 |
## has a p element in scope |
## has a p element in scope |
| 5710 |
INSCOPE: for (reverse @{$self->{open_elements}}) { |
INSCOPE: for (reverse @{$self->{open_elements}}) { |
| 5711 |
if ($_->[1] eq 'p') { |
if ($_->[1] eq 'p') { |
| 5712 |
!!!cp ('t353'); |
!!!cp ('t353'); |
| 5713 |
!!!back-token; |
!!!back-token; |
| 5714 |
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
$token = {type => END_TAG_TOKEN, tag_name => 'p', |
| 5715 |
|
line => $token->{line}, column => $token->{column}}; |
| 5716 |
redo B; |
redo B; |
| 5717 |
} elsif ({ |
} elsif ({ |
| 5718 |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
| 5726 |
## Step 1 |
## Step 1 |
| 5727 |
my $i = -1; |
my $i = -1; |
| 5728 |
my $node = $self->{open_elements}->[$i]; |
my $node = $self->{open_elements}->[$i]; |
| 5729 |
|
my $li_or_dtdd = {li => {li => 1}, |
| 5730 |
|
dt => {dt => 1, dd => 1}, |
| 5731 |
|
dd => {dt => 1, dd => 1}}->{$token->{tag_name}}; |
| 5732 |
LI: { |
LI: { |
| 5733 |
## Step 2 |
## Step 2 |
| 5734 |
if ($node->[1] eq 'li') { |
if ($li_or_dtdd->{$node->[1]}) { |
| 5735 |
if ($i != -1) { |
if ($i != -1) { |
| 5736 |
!!!cp ('t355'); |
!!!cp ('t355'); |
| 5737 |
!!!parse-error (type => 'end tag missing:'. |
!!!parse-error (type => 'end tag missing:'. |
| 5738 |
$self->{open_elements}->[-1]->[1]); |
$self->{open_elements}->[-1]->[1], token => $token); |
| 5739 |
} else { |
} else { |
| 5740 |
!!!cp ('t356'); |
!!!cp ('t356'); |
| 5741 |
} |
} |
| 5765 |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
| 5766 |
!!!next-token; |
!!!next-token; |
| 5767 |
redo B; |
redo B; |
|
} elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') { |
|
|
## has a p element in scope |
|
|
INSCOPE: for (reverse @{$self->{open_elements}}) { |
|
|
if ($_->[1] eq 'p') { |
|
|
!!!cp ('t360'); |
|
|
!!!back-token; |
|
|
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
|
|
button => 1, marquee => 1, object => 1, html => 1, |
|
|
}->{$_->[1]}) { |
|
|
!!!cp ('t361'); |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
|
|
|
## Step 1 |
|
|
my $i = -1; |
|
|
my $node = $self->{open_elements}->[$i]; |
|
|
LI: { |
|
|
## Step 2 |
|
|
if ($node->[1] eq 'dt' or $node->[1] eq 'dd') { |
|
|
if ($i != -1) { |
|
|
!!!cp ('t362'); |
|
|
!!!parse-error (type => 'end tag missing:'. |
|
|
$self->{open_elements}->[-1]->[1]); |
|
|
} else { |
|
|
!!!cp ('t363'); |
|
|
} |
|
|
splice @{$self->{open_elements}}, $i; |
|
|
last LI; |
|
|
} else { |
|
|
!!!cp ('t364'); |
|
|
} |
|
|
|
|
|
## Step 3 |
|
|
if (not $formatting_category->{$node->[1]} and |
|
|
#not $phrasing_category->{$node->[1]} and |
|
|
($special_category->{$node->[1]} or |
|
|
$scoping_category->{$node->[1]}) and |
|
|
$node->[1] ne 'address' and $node->[1] ne 'div') { |
|
|
!!!cp ('t365'); |
|
|
last LI; |
|
|
} |
|
|
|
|
|
!!!cp ('t366'); |
|
|
## Step 4 |
|
|
$i--; |
|
|
$node = $self->{open_elements}->[$i]; |
|
|
redo LI; |
|
|
} # LI |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
!!!next-token; |
|
|
redo B; |
|
| 5768 |
} elsif ($token->{tag_name} eq 'plaintext') { |
} elsif ($token->{tag_name} eq 'plaintext') { |
| 5769 |
## has a p element in scope |
## has a p element in scope |
| 5770 |
INSCOPE: for (reverse @{$self->{open_elements}}) { |
INSCOPE: for (reverse @{$self->{open_elements}}) { |
| 5771 |
if ($_->[1] eq 'p') { |
if ($_->[1] eq 'p') { |
| 5772 |
!!!cp ('t367'); |
!!!cp ('t367'); |
| 5773 |
!!!back-token; |
!!!back-token; |
| 5774 |
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
$token = {type => END_TAG_TOKEN, tag_name => 'p', |
| 5775 |
|
line => $token->{line}, column => $token->{column}}; |
| 5776 |
redo B; |
redo B; |
| 5777 |
} elsif ({ |
} elsif ({ |
| 5778 |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
| 5794 |
my $node = $active_formatting_elements->[$i]; |
my $node = $active_formatting_elements->[$i]; |
| 5795 |
if ($node->[1] eq 'a') { |
if ($node->[1] eq 'a') { |
| 5796 |
!!!cp ('t371'); |
!!!cp ('t371'); |
| 5797 |
!!!parse-error (type => 'in a:a'); |
!!!parse-error (type => 'in a:a', token => $token); |
| 5798 |
|
|
| 5799 |
!!!back-token; |
!!!back-token; |
| 5800 |
$token = {type => END_TAG_TOKEN, tag_name => 'a'}; |
$token = {type => END_TAG_TOKEN, tag_name => 'a', |
| 5801 |
$formatting_end_tag->($token->{tag_name}); |
line => $token->{line}, column => $token->{column}}; |
| 5802 |
|
$formatting_end_tag->($token); |
| 5803 |
|
|
| 5804 |
AFE2: for (reverse 0..$#$active_formatting_elements) { |
AFE2: for (reverse 0..$#$active_formatting_elements) { |
| 5805 |
if ($active_formatting_elements->[$_]->[0] eq $node->[0]) { |
if ($active_formatting_elements->[$_]->[0] eq $node->[0]) { |
| 5829 |
|
|
| 5830 |
!!!next-token; |
!!!next-token; |
| 5831 |
redo B; |
redo B; |
|
} elsif ({ |
|
|
b => 1, big => 1, em => 1, font => 1, i => 1, |
|
|
s => 1, small => 1, strile => 1, |
|
|
strong => 1, tt => 1, u => 1, |
|
|
}->{$token->{tag_name}}) { |
|
|
!!!cp ('t375'); |
|
|
$reconstruct_active_formatting_elements->($insert_to_current); |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
push @$active_formatting_elements, $self->{open_elements}->[-1]; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
| 5832 |
} elsif ($token->{tag_name} eq 'nobr') { |
} elsif ($token->{tag_name} eq 'nobr') { |
| 5833 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 5834 |
|
|
| 5837 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 5838 |
if ($node->[1] eq 'nobr') { |
if ($node->[1] eq 'nobr') { |
| 5839 |
!!!cp ('t376'); |
!!!cp ('t376'); |
| 5840 |
!!!parse-error (type => 'in nobr:nobr'); |
!!!parse-error (type => 'in nobr:nobr', token => $token); |
| 5841 |
!!!back-token; |
!!!back-token; |
| 5842 |
$token = {type => END_TAG_TOKEN, tag_name => 'nobr'}; |
$token = {type => END_TAG_TOKEN, tag_name => 'nobr', |
| 5843 |
|
line => $token->{line}, column => $token->{column}}; |
| 5844 |
redo B; |
redo B; |
| 5845 |
} elsif ({ |
} elsif ({ |
| 5846 |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
| 5862 |
my $node = $self->{open_elements}->[$_]; |
my $node = $self->{open_elements}->[$_]; |
| 5863 |
if ($node->[1] eq 'button') { |
if ($node->[1] eq 'button') { |
| 5864 |
!!!cp ('t378'); |
!!!cp ('t378'); |
| 5865 |
!!!parse-error (type => 'in button:button'); |
!!!parse-error (type => 'in button:button', token => $token); |
| 5866 |
!!!back-token; |
!!!back-token; |
| 5867 |
$token = {type => END_TAG_TOKEN, tag_name => 'button'}; |
$token = {type => END_TAG_TOKEN, tag_name => 'button', |
| 5868 |
|
line => $token->{line}, column => $token->{column}}; |
| 5869 |
redo B; |
redo B; |
| 5870 |
} elsif ({ |
} elsif ({ |
| 5871 |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
| 5887 |
!!!next-token; |
!!!next-token; |
| 5888 |
redo B; |
redo B; |
| 5889 |
} elsif ({ |
} elsif ({ |
| 5890 |
applet => 1, marquee => 1, object => 1, |
xmp => 1, |
| 5891 |
}->{$token->{tag_name}}) { |
iframe => 1, |
| 5892 |
!!!cp ('t380'); |
noembed => 1, |
| 5893 |
$reconstruct_active_formatting_elements->($insert_to_current); |
noframes => 1, |
| 5894 |
|
noscript => 0, ## TODO: 1 if scripting is enabled |
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
push @$active_formatting_elements, ['#marker', '']; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'xmp') { |
|
|
!!!cp ('t381'); |
|
|
$reconstruct_active_formatting_elements->($insert_to_current); |
|
|
$parse_rcdata->(CDATA_CONTENT_MODEL); |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'table') { |
|
|
## has a p element in scope |
|
|
INSCOPE: for (reverse @{$self->{open_elements}}) { |
|
|
if ($_->[1] eq 'p') { |
|
|
!!!cp ('t382'); |
|
|
!!!back-token; |
|
|
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
|
|
button => 1, marquee => 1, object => 1, html => 1, |
|
|
}->{$_->[1]}) { |
|
|
!!!cp ('t383'); |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
push @{$open_tables}, [$self->{open_elements}->[-1]->[0]]; |
|
|
|
|
|
$self->{insertion_mode} = IN_TABLE_IM; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
area => 1, basefont => 1, bgsound => 1, br => 1, |
|
|
embed => 1, img => 1, param => 1, spacer => 1, wbr => 1, |
|
|
image => 1, |
|
| 5895 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 5896 |
if ($token->{tag_name} eq 'image') { |
if ($token->{tag_name} eq 'xmp') { |
| 5897 |
!!!cp ('t384'); |
!!!cp ('t381'); |
| 5898 |
!!!parse-error (type => 'image'); |
$reconstruct_active_formatting_elements->($insert_to_current); |
|
$token->{tag_name} = 'img'; |
|
| 5899 |
} else { |
} else { |
| 5900 |
!!!cp ('t385'); |
!!!cp ('t399'); |
| 5901 |
} |
} |
| 5902 |
|
## NOTE: There is an "as if in body" code clone. |
| 5903 |
## NOTE: There is an "as if <br>" code clone. |
$parse_rcdata->(CDATA_CONTENT_MODEL); |
|
$reconstruct_active_formatting_elements->($insert_to_current); |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
pop @{$self->{open_elements}}; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'hr') { |
|
|
## has a p element in scope |
|
|
INSCOPE: for (reverse @{$self->{open_elements}}) { |
|
|
if ($_->[1] eq 'p') { |
|
|
!!!cp ('t386'); |
|
|
!!!back-token; |
|
|
$token = {type => END_TAG_TOKEN, tag_name => 'p'}; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
|
|
button => 1, marquee => 1, object => 1, html => 1, |
|
|
}->{$_->[1]}) { |
|
|
!!!cp ('t387'); |
|
|
last INSCOPE; |
|
|
} |
|
|
} # INSCOPE |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
pop @{$self->{open_elements}}; |
|
|
|
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'input') { |
|
|
!!!cp ('t388'); |
|
|
$reconstruct_active_formatting_elements->($insert_to_current); |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
## TODO: associate with $self->{form_element} if defined |
|
|
pop @{$self->{open_elements}}; |
|
|
|
|
|
!!!next-token; |
|
| 5904 |
redo B; |
redo B; |
| 5905 |
} elsif ($token->{tag_name} eq 'isindex') { |
} elsif ($token->{tag_name} eq 'isindex') { |
| 5906 |
!!!parse-error (type => 'isindex'); |
!!!parse-error (type => 'isindex', token => $token); |
| 5907 |
|
|
| 5908 |
if (defined $self->{form_element}) { |
if (defined $self->{form_element}) { |
| 5909 |
!!!cp ('t389'); |
!!!cp ('t389'); |
| 5920 |
delete $at->{prompt}; |
delete $at->{prompt}; |
| 5921 |
my @tokens = ( |
my @tokens = ( |
| 5922 |
{type => START_TAG_TOKEN, tag_name => 'form', |
{type => START_TAG_TOKEN, tag_name => 'form', |
| 5923 |
attributes => $form_attrs}, |
attributes => $form_attrs, |
| 5924 |
{type => START_TAG_TOKEN, tag_name => 'hr'}, |
line => $token->{line}, column => $token->{column}}, |
| 5925 |
{type => START_TAG_TOKEN, tag_name => 'p'}, |
{type => START_TAG_TOKEN, tag_name => 'hr', |
| 5926 |
{type => START_TAG_TOKEN, tag_name => 'label'}, |
line => $token->{line}, column => $token->{column}}, |
| 5927 |
|
{type => START_TAG_TOKEN, tag_name => 'p', |
| 5928 |
|
line => $token->{line}, column => $token->{column}}, |
| 5929 |
|
{type => START_TAG_TOKEN, tag_name => 'label', |
| 5930 |
|
line => $token->{line}, column => $token->{column}}, |
| 5931 |
); |
); |
| 5932 |
if ($prompt_attr) { |
if ($prompt_attr) { |
| 5933 |
!!!cp ('t390'); |
!!!cp ('t390'); |
| 5934 |
push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}}; |
push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value}, |
| 5935 |
|
line => $token->{line}, column => $token->{column}}; |
| 5936 |
} else { |
} else { |
| 5937 |
!!!cp ('t391'); |
!!!cp ('t391'); |
| 5938 |
push @tokens, {type => CHARACTER_TOKEN, |
push @tokens, {type => CHARACTER_TOKEN, |
| 5939 |
data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD |
data => 'This is a searchable index. Insert your search keywords here: ', |
| 5940 |
|
line => $token->{line}, column => $token->{column}}; # SHOULD |
| 5941 |
## TODO: make this configurable |
## TODO: make this configurable |
| 5942 |
} |
} |
| 5943 |
push @tokens, |
push @tokens, |
| 5944 |
{type => START_TAG_TOKEN, tag_name => 'input', attributes => $at}, |
{type => START_TAG_TOKEN, tag_name => 'input', attributes => $at, |
| 5945 |
|
line => $token->{line}, column => $token->{column}}, |
| 5946 |
#{type => CHARACTER_TOKEN, data => ''}, # SHOULD |
#{type => CHARACTER_TOKEN, data => ''}, # SHOULD |
| 5947 |
{type => END_TAG_TOKEN, tag_name => 'label'}, |
{type => END_TAG_TOKEN, tag_name => 'label', |
| 5948 |
{type => END_TAG_TOKEN, tag_name => 'p'}, |
line => $token->{line}, column => $token->{column}}, |
| 5949 |
{type => START_TAG_TOKEN, tag_name => 'hr'}, |
{type => END_TAG_TOKEN, tag_name => 'p', |
| 5950 |
{type => END_TAG_TOKEN, tag_name => 'form'}; |
line => $token->{line}, column => $token->{column}}, |
| 5951 |
|
{type => START_TAG_TOKEN, tag_name => 'hr', |
| 5952 |
|
line => $token->{line}, column => $token->{column}}, |
| 5953 |
|
{type => END_TAG_TOKEN, tag_name => 'form', |
| 5954 |
|
line => $token->{line}, column => $token->{column}}; |
| 5955 |
$token = shift @tokens; |
$token = shift @tokens; |
| 5956 |
!!!back-token (@tokens); |
!!!back-token (@tokens); |
| 5957 |
redo B; |
redo B; |
| 5998 |
## Ignore the token |
## Ignore the token |
| 5999 |
} else { |
} else { |
| 6000 |
!!!cp ('t398'); |
!!!cp ('t398'); |
| 6001 |
!!!parse-error (type => 'in RCDATA:#'.$token->{type}); |
!!!parse-error (type => 'in RCDATA:#'.$token->{type}, token => $token); |
|
} |
|
|
!!!next-token; |
|
|
redo B; |
|
|
} elsif ({ |
|
|
iframe => 1, |
|
|
noembed => 1, |
|
|
noframes => 1, |
|
|
noscript => 0, ## TODO: 1 if scripting is enabled |
|
|
}->{$token->{tag_name}}) { |
|
|
!!!cp ('t399'); |
|
|
## NOTE: There is an "as if in body" code clone. |
|
|
$parse_rcdata->(CDATA_CONTENT_MODEL); |
|
|
redo B; |
|
|
} elsif ($token->{tag_name} eq 'select') { |
|
|
!!!cp ('t400'); |
|
|
$reconstruct_active_formatting_elements->($insert_to_current); |
|
|
|
|
|
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
|
|
|
|
|
## TODO: associate with $self->{form_element} if defined |
|
|
|
|
|
if ($self->{insertion_mode} & TABLE_IMS or |
|
|
$self->{insertion_mode} & BODY_TABLE_IMS or |
|
|
$self->{insertion_mode} == IN_COLUMN_GROUP_IM) { |
|
|
!!!cp ('t400.1'); |
|
|
$self->{insertion_mode} = IN_SELECT_IN_TABLE_IM; |
|
|
} else { |
|
|
!!!cp ('t400.2'); |
|
|
$self->{insertion_mode} = IN_SELECT_IM; |
|
| 6002 |
} |
} |
| 6003 |
!!!next-token; |
!!!next-token; |
| 6004 |
redo B; |
redo B; |
| 6009 |
thead => 1, tr => 1, |
thead => 1, tr => 1, |
| 6010 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 6011 |
!!!cp ('t401'); |
!!!cp ('t401'); |
| 6012 |
!!!parse-error (type => 'in body:'.$token->{tag_name}); |
!!!parse-error (type => 'in body:'.$token->{tag_name}, token => $token); |
| 6013 |
## Ignore the token |
## Ignore the token |
| 6014 |
!!!next-token; |
!!!next-token; |
| 6015 |
redo B; |
redo B; |
| 6016 |
|
|
| 6017 |
## ISSUE: An issue on HTML5 new elements in the spec. |
## ISSUE: An issue on HTML5 new elements in the spec. |
| 6018 |
} else { |
} else { |
| 6019 |
!!!cp ('t402'); |
if ($token->{tag_name} eq 'image') { |
| 6020 |
|
!!!cp ('t384'); |
| 6021 |
|
!!!parse-error (type => 'image', token => $token); |
| 6022 |
|
$token->{tag_name} = 'img'; |
| 6023 |
|
} else { |
| 6024 |
|
!!!cp ('t385'); |
| 6025 |
|
} |
| 6026 |
|
|
| 6027 |
|
## NOTE: There is an "as if <br>" code clone. |
| 6028 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 6029 |
|
|
| 6030 |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
!!!insert-element-t ($token->{tag_name}, $token->{attributes}); |
| 6031 |
|
|
| 6032 |
|
if ({ |
| 6033 |
|
applet => 1, marquee => 1, object => 1, |
| 6034 |
|
}->{$token->{tag_name}}) { |
| 6035 |
|
!!!cp ('t380'); |
| 6036 |
|
push @$active_formatting_elements, ['#marker', '']; |
| 6037 |
|
} elsif ({ |
| 6038 |
|
b => 1, big => 1, em => 1, font => 1, i => 1, |
| 6039 |
|
s => 1, small => 1, strile => 1, |
| 6040 |
|
strong => 1, tt => 1, u => 1, |
| 6041 |
|
}->{$token->{tag_name}}) { |
| 6042 |
|
!!!cp ('t375'); |
| 6043 |
|
push @$active_formatting_elements, $self->{open_elements}->[-1]; |
| 6044 |
|
} elsif ($token->{tag_name} eq 'input') { |
| 6045 |
|
!!!cp ('t388'); |
| 6046 |
|
## TODO: associate with $self->{form_element} if defined |
| 6047 |
|
pop @{$self->{open_elements}}; |
| 6048 |
|
} elsif ({ |
| 6049 |
|
area => 1, basefont => 1, bgsound => 1, br => 1, |
| 6050 |
|
embed => 1, img => 1, param => 1, spacer => 1, wbr => 1, |
| 6051 |
|
#image => 1, |
| 6052 |
|
}->{$token->{tag_name}}) { |
| 6053 |
|
!!!cp ('t388.1'); |
| 6054 |
|
pop @{$self->{open_elements}}; |
| 6055 |
|
} elsif ($token->{tag_name} eq 'select') { |
| 6056 |
|
## TODO: associate with $self->{form_element} if defined |
| 6057 |
|
|
| 6058 |
|
if ($self->{insertion_mode} & TABLE_IMS or |
| 6059 |
|
$self->{insertion_mode} & BODY_TABLE_IMS or |
| 6060 |
|
$self->{insertion_mode} == IN_COLUMN_GROUP_IM) { |
| 6061 |
|
!!!cp ('t400.1'); |
| 6062 |
|
$self->{insertion_mode} = IN_SELECT_IN_TABLE_IM; |
| 6063 |
|
} else { |
| 6064 |
|
!!!cp ('t400.2'); |
| 6065 |
|
$self->{insertion_mode} = IN_SELECT_IM; |
| 6066 |
|
} |
| 6067 |
|
} else { |
| 6068 |
|
!!!cp ('t402'); |
| 6069 |
|
} |
| 6070 |
|
|
| 6071 |
!!!next-token; |
!!!next-token; |
| 6072 |
redo B; |
redo B; |
| 6073 |
} |
} |
| 6074 |
} elsif ($token->{type} == END_TAG_TOKEN) { |
} elsif ($token->{type} == END_TAG_TOKEN) { |
| 6075 |
if ($token->{tag_name} eq 'body') { |
if ($token->{tag_name} eq 'body') { |
| 6076 |
if (@{$self->{open_elements}} > 1 and |
## has a |body| element in scope |
| 6077 |
$self->{open_elements}->[1]->[1] eq 'body') { |
my $i; |
| 6078 |
for (@{$self->{open_elements}}) { |
INSCOPE: { |
| 6079 |
unless ({ |
for (reverse @{$self->{open_elements}}) { |
| 6080 |
dd => 1, dt => 1, li => 1, p => 1, td => 1, |
if ($_->[1] eq 'body') { |
| 6081 |
th => 1, tr => 1, body => 1, html => 1, |
!!!cp ('t405'); |
| 6082 |
tbody => 1, tfoot => 1, thead => 1, |
$i = $_; |
| 6083 |
}->{$_->[1]}) { |
last INSCOPE; |
| 6084 |
!!!cp ('t403'); |
} elsif ({ |
| 6085 |
!!!parse-error (type => 'not closed:'.$_->[1]); |
applet => 1, table => 1, caption => 1, td => 1, th => 1, |
| 6086 |
} else { |
button => 1, marquee => 1, object => 1, html => 1, |
| 6087 |
!!!cp ('t404'); |
}->{$_->[1]}) { |
| 6088 |
|
!!!cp ('t405.1'); |
| 6089 |
|
last; |
| 6090 |
} |
} |
| 6091 |
} |
} |
| 6092 |
|
|
| 6093 |
$self->{insertion_mode} = AFTER_BODY_IM; |
!!!parse-error (type => 'start tag not allowed', |
| 6094 |
!!!next-token; |
value => $token->{tag_name}, token => $token); |
| 6095 |
redo B; |
## NOTE: Ignore the token. |
|
} else { |
|
|
!!!cp ('t405'); |
|
|
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
|
|
## Ignore the token |
|
| 6096 |
!!!next-token; |
!!!next-token; |
| 6097 |
redo B; |
redo B; |
| 6098 |
|
} # INSCOPE |
| 6099 |
|
|
| 6100 |
|
for (@{$self->{open_elements}}) { |
| 6101 |
|
unless ({ |
| 6102 |
|
dd => 1, dt => 1, li => 1, p => 1, td => 1, |
| 6103 |
|
th => 1, tr => 1, body => 1, html => 1, |
| 6104 |
|
tbody => 1, tfoot => 1, thead => 1, |
| 6105 |
|
}->{$_->[1]}) { |
| 6106 |
|
!!!cp ('t403'); |
| 6107 |
|
!!!parse-error (type => 'not closed:'.$_->[1], token => $token); |
| 6108 |
|
last; |
| 6109 |
|
} else { |
| 6110 |
|
!!!cp ('t404'); |
| 6111 |
|
} |
| 6112 |
} |
} |
| 6113 |
|
|
| 6114 |
|
$self->{insertion_mode} = AFTER_BODY_IM; |
| 6115 |
|
!!!next-token; |
| 6116 |
|
redo B; |
| 6117 |
} elsif ($token->{tag_name} eq 'html') { |
} elsif ($token->{tag_name} eq 'html') { |
| 6118 |
if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') { |
if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') { |
| 6119 |
## ISSUE: There is an issue in the spec. |
## ISSUE: There is an issue in the spec. |
| 6120 |
if ($self->{open_elements}->[-1]->[1] ne 'body') { |
if ($self->{open_elements}->[-1]->[1] ne 'body') { |
| 6121 |
!!!cp ('t406'); |
!!!cp ('t406'); |
| 6122 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1], token => $token); |
| 6123 |
} else { |
} else { |
| 6124 |
!!!cp ('t407'); |
!!!cp ('t407'); |
| 6125 |
} |
} |
| 6128 |
redo B; |
redo B; |
| 6129 |
} else { |
} else { |
| 6130 |
!!!cp ('t408'); |
!!!cp ('t408'); |
| 6131 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6132 |
## Ignore the token |
## Ignore the token |
| 6133 |
!!!next-token; |
!!!next-token; |
| 6134 |
redo B; |
redo B; |
| 6159 |
|
|
| 6160 |
unless (defined $i) { # has an element in scope |
unless (defined $i) { # has an element in scope |
| 6161 |
!!!cp ('t413'); |
!!!cp ('t413'); |
| 6162 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6163 |
} else { |
} else { |
| 6164 |
## Step 1. generate implied end tags |
## Step 1. generate implied end tags |
| 6165 |
while ({ |
while ({ |
| 6175 |
## Step 2. |
## Step 2. |
| 6176 |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 6177 |
!!!cp ('t412'); |
!!!cp ('t412'); |
| 6178 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 6179 |
} else { |
} else { |
| 6180 |
!!!cp ('t414'); |
!!!cp ('t414'); |
| 6181 |
} |
} |
| 6213 |
|
|
| 6214 |
unless (defined $i) { # has an element in scope |
unless (defined $i) { # has an element in scope |
| 6215 |
!!!cp ('t421'); |
!!!cp ('t421'); |
| 6216 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6217 |
} else { |
} else { |
| 6218 |
## Step 1. generate implied end tags |
## Step 1. generate implied end tags |
| 6219 |
while ({ |
while ({ |
| 6226 |
## Step 2. |
## Step 2. |
| 6227 |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 6228 |
!!!cp ('t417.1'); |
!!!cp ('t417.1'); |
| 6229 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 6230 |
} else { |
} else { |
| 6231 |
!!!cp ('t420'); |
!!!cp ('t420'); |
| 6232 |
} |
} |
| 6261 |
|
|
| 6262 |
unless (defined $i) { # has an element in scope |
unless (defined $i) { # has an element in scope |
| 6263 |
!!!cp ('t425.1'); |
!!!cp ('t425.1'); |
| 6264 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6265 |
} else { |
} else { |
| 6266 |
## Step 1. generate implied end tags |
## Step 1. generate implied end tags |
| 6267 |
while ({ |
while ({ |
| 6274 |
## Step 2. |
## Step 2. |
| 6275 |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 6276 |
!!!cp ('t425'); |
!!!cp ('t425'); |
| 6277 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6278 |
} else { |
} else { |
| 6279 |
!!!cp ('t426'); |
!!!cp ('t426'); |
| 6280 |
} |
} |
| 6306 |
if (defined $i) { |
if (defined $i) { |
| 6307 |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) { |
| 6308 |
!!!cp ('t412.1'); |
!!!cp ('t412.1'); |
| 6309 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 6310 |
} else { |
} else { |
| 6311 |
!!!cp ('t414.1'); |
!!!cp ('t414.1'); |
| 6312 |
} |
} |
| 6314 |
splice @{$self->{open_elements}}, $i; |
splice @{$self->{open_elements}}, $i; |
| 6315 |
} else { |
} else { |
| 6316 |
!!!cp ('t413.1'); |
!!!cp ('t413.1'); |
| 6317 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6318 |
|
|
| 6319 |
!!!cp ('t415.1'); |
!!!cp ('t415.1'); |
| 6320 |
## As if <p>, then reprocess the current token |
## As if <p>, then reprocess the current token |
| 6333 |
strong => 1, tt => 1, u => 1, |
strong => 1, tt => 1, u => 1, |
| 6334 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 6335 |
!!!cp ('t427'); |
!!!cp ('t427'); |
| 6336 |
$formatting_end_tag->($token->{tag_name}); |
$formatting_end_tag->($token); |
| 6337 |
redo B; |
redo B; |
| 6338 |
} elsif ($token->{tag_name} eq 'br') { |
} elsif ($token->{tag_name} eq 'br') { |
| 6339 |
!!!cp ('t428'); |
!!!cp ('t428'); |
| 6340 |
!!!parse-error (type => 'unmatched end tag:br'); |
!!!parse-error (type => 'unmatched end tag:br', token => $token); |
| 6341 |
|
|
| 6342 |
## As if <br> |
## As if <br> |
| 6343 |
$reconstruct_active_formatting_elements->($insert_to_current); |
$reconstruct_active_formatting_elements->($insert_to_current); |
| 6362 |
noscript => 0, ## TODO: if scripting is enabled |
noscript => 0, ## TODO: if scripting is enabled |
| 6363 |
}->{$token->{tag_name}}) { |
}->{$token->{tag_name}}) { |
| 6364 |
!!!cp ('t429'); |
!!!cp ('t429'); |
| 6365 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6366 |
## Ignore the token |
## Ignore the token |
| 6367 |
!!!next-token; |
!!!next-token; |
| 6368 |
redo B; |
redo B; |
| 6391 |
if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) { |
if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) { |
| 6392 |
!!!cp ('t431'); |
!!!cp ('t431'); |
| 6393 |
## NOTE: <x><y></x> |
## NOTE: <x><y></x> |
| 6394 |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]); |
!!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1], token => $token); |
| 6395 |
} else { |
} else { |
| 6396 |
!!!cp ('t432'); |
!!!cp ('t432'); |
| 6397 |
} |
} |
| 6408 |
($special_category->{$node->[1]} or |
($special_category->{$node->[1]} or |
| 6409 |
$scoping_category->{$node->[1]})) { |
$scoping_category->{$node->[1]})) { |
| 6410 |
!!!cp ('t433'); |
!!!cp ('t433'); |
| 6411 |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}); |
!!!parse-error (type => 'unmatched end tag:'.$token->{tag_name}, token => $token); |
| 6412 |
## Ignore the token |
## Ignore the token |
| 6413 |
!!!next-token; |
!!!next-token; |
| 6414 |
last S2; |
last S2; |