/[suikacvs]/markup/html/whatpm/Whatpm/HTML.pm.src
Suika

Contents of /markup/html/whatpm/Whatpm/HTML.pm.src

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.31 - (hide annotations) (download) (as text)
Sat Jun 30 14:13:19 2007 UTC (17 years, 4 months ago) by wakaba
Branch: MAIN
Changes since 1.30: +70 -11 lines
File MIME type: application/x-wais-source
++ whatpm/t/ChangeLog	30 Jun 2007 14:13:12 -0000
	* tree-test-2.dat: Tests for <title> in fragments are added.

2007-06-30  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ChangeLog	30 Jun 2007 14:07:56 -0000
	* HTML.pm.src: HTML5 revisions 961-966 (</p>, </br>,
	nested <nobr>, implied </tbody>, </tfoot>, and </thead>,
	and <title> outside of head).

2007-06-30  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.2 package Whatpm::HTML;
2 wakaba 1.1 use strict;
3 wakaba 1.31 our $VERSION=do{my @r=(q$Revision: 1.30 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
4 wakaba 1.1
5 wakaba 1.18 ## ISSUE:
6     ## var doc = implementation.createDocument (null, null, null);
7     ## doc.write ('');
8     ## alert (doc.compatMode);
9 wakaba 1.1
10 wakaba 1.31 ## ISSUE: HTML5 revision 967 says that the encoding layer MUST NOT
11     ## strip BOM and the HTML layer MUST ignore it. Whether we can do it
12     ## is not yet clear.
13     ## "{U+FEFF}..." in UTF-16BE/UTF-16LE is three or four characters?
14     ## "{U+FEFF}..." in GB18030?
15    
16 wakaba 1.1 my $permitted_slash_tag_name = {
17     base => 1,
18     link => 1,
19     meta => 1,
20     hr => 1,
21     br => 1,
22     img=> 1,
23     embed => 1,
24     param => 1,
25     area => 1,
26     col => 1,
27     input => 1,
28     };
29    
30 wakaba 1.4 my $c1_entity_char = {
31 wakaba 1.10 0x80 => 0x20AC,
32     0x81 => 0xFFFD,
33     0x82 => 0x201A,
34     0x83 => 0x0192,
35     0x84 => 0x201E,
36     0x85 => 0x2026,
37     0x86 => 0x2020,
38     0x87 => 0x2021,
39     0x88 => 0x02C6,
40     0x89 => 0x2030,
41     0x8A => 0x0160,
42     0x8B => 0x2039,
43     0x8C => 0x0152,
44     0x8D => 0xFFFD,
45     0x8E => 0x017D,
46     0x8F => 0xFFFD,
47     0x90 => 0xFFFD,
48     0x91 => 0x2018,
49     0x92 => 0x2019,
50     0x93 => 0x201C,
51     0x94 => 0x201D,
52     0x95 => 0x2022,
53     0x96 => 0x2013,
54     0x97 => 0x2014,
55     0x98 => 0x02DC,
56     0x99 => 0x2122,
57     0x9A => 0x0161,
58     0x9B => 0x203A,
59     0x9C => 0x0153,
60     0x9D => 0xFFFD,
61     0x9E => 0x017E,
62     0x9F => 0x0178,
63 wakaba 1.4 }; # $c1_entity_char
64 wakaba 1.1
65     my $special_category = {
66     address => 1, area => 1, base => 1, basefont => 1, bgsound => 1,
67     blockquote => 1, body => 1, br => 1, center => 1, col => 1, colgroup => 1,
68     dd => 1, dir => 1, div => 1, dl => 1, dt => 1, embed => 1, fieldset => 1,
69     form => 1, frame => 1, frameset => 1, h1 => 1, h2 => 1, h3 => 1,
70     h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, iframe => 1, image => 1,
71     img => 1, input => 1, isindex => 1, li => 1, link => 1, listing => 1,
72     menu => 1, meta => 1, noembed => 1, noframes => 1, noscript => 1,
73     ol => 1, optgroup => 1, option => 1, p => 1, param => 1, plaintext => 1,
74     pre => 1, script => 1, select => 1, spacer => 1, style => 1, tbody => 1,
75     textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,
76     };
77     my $scoping_category = {
78     button => 1, caption => 1, html => 1, marquee => 1, object => 1,
79     table => 1, td => 1, th => 1,
80     };
81     my $formatting_category = {
82     a => 1, b => 1, big => 1, em => 1, font => 1, i => 1, nobr => 1,
83     s => 1, small => 1, strile => 1, strong => 1, tt => 1, u => 1,
84     };
85     # $phrasing_category: all other elements
86    
87     sub parse_string ($$$;$) {
88     my $self = shift->new;
89     my $s = \$_[0];
90     $self->{document} = $_[1];
91    
92 wakaba 1.3 ## NOTE: |set_inner_html| copies most of this method's code
93    
94 wakaba 1.1 my $i = 0;
95 wakaba 1.3 my $line = 1;
96     my $column = 0;
97 wakaba 1.1 $self->{set_next_input_character} = sub {
98     my $self = shift;
99 wakaba 1.13
100     pop @{$self->{prev_input_character}};
101     unshift @{$self->{prev_input_character}}, $self->{next_input_character};
102    
103 wakaba 1.1 $self->{next_input_character} = -1 and return if $i >= length $$s;
104     $self->{next_input_character} = ord substr $$s, $i++, 1;
105 wakaba 1.3 $column++;
106 wakaba 1.1
107 wakaba 1.4 if ($self->{next_input_character} == 0x000A) { # LF
108     $line++;
109     $column = 0;
110     } elsif ($self->{next_input_character} == 0x000D) { # CR
111 wakaba 1.15 $i++ if substr ($$s, $i, 1) eq "\x0A";
112 wakaba 1.1 $self->{next_input_character} = 0x000A; # LF # MUST
113 wakaba 1.3 $line++;
114 wakaba 1.4 $column = 0;
115 wakaba 1.1 } elsif ($self->{next_input_character} > 0x10FFFF) {
116     $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
117     } elsif ($self->{next_input_character} == 0x0000) { # NULL
118 wakaba 1.8 !!!parse-error (type => 'NULL');
119 wakaba 1.1 $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
120     }
121     };
122 wakaba 1.13 $self->{prev_input_character} = [-1, -1, -1];
123     $self->{next_input_character} = -1;
124 wakaba 1.1
125 wakaba 1.3 my $onerror = $_[2] || sub {
126     my (%opt) = @_;
127     warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";
128     };
129     $self->{parse_error} = sub {
130     $onerror->(@_, line => $line, column => $column);
131 wakaba 1.1 };
132    
133     $self->_initialize_tokenizer;
134     $self->_initialize_tree_constructor;
135     $self->_construct_tree;
136     $self->_terminate_tree_constructor;
137    
138     return $self->{document};
139     } # parse_string
140    
141     sub new ($) {
142     my $class = shift;
143     my $self = bless {}, $class;
144     $self->{set_next_input_character} = sub {
145     $self->{next_input_character} = -1;
146     };
147     $self->{parse_error} = sub {
148     #
149     };
150     return $self;
151     } # new
152    
153     ## Implementations MUST act as if state machine in the spec
154    
155     sub _initialize_tokenizer ($) {
156     my $self = shift;
157     $self->{state} = 'data'; # MUST
158     $self->{content_model_flag} = 'PCDATA'; # be
159     undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE
160     undef $self->{current_attribute};
161     undef $self->{last_emitted_start_tag_name};
162     undef $self->{last_attribute_value_state};
163     $self->{char} = [];
164     # $self->{next_input_character}
165     !!!next-input-character;
166     $self->{token} = [];
167 wakaba 1.18 # $self->{escape}
168 wakaba 1.1 } # _initialize_tokenizer
169    
170     ## A token has:
171     ## ->{type} eq 'DOCTYPE', 'start tag', 'end tag', 'comment',
172     ## 'character', or 'end-of-file'
173 wakaba 1.18 ## ->{name} (DOCTYPE, start tag (tag name), end tag (tag name))
174     ## ->{public_identifier} (DOCTYPE)
175     ## ->{system_identifier} (DOCTYPE)
176     ## ->{correct} == 1 or 0 (DOCTYPE)
177 wakaba 1.1 ## ->{attributes} isa HASH (start tag, end tag)
178     ## ->{data} (comment, character)
179    
180     ## Emitted token MUST immediately be handled by the tree construction state.
181    
182     ## Before each step, UA MAY check to see if either one of the scripts in
183     ## "list of scripts that will execute as soon as possible" or the first
184     ## script in the "list of scripts that will execute asynchronously",
185     ## has completed loading. If one has, then it MUST be executed
186     ## and removed from the list.
187    
188     sub _get_next_token ($) {
189     my $self = shift;
190     if (@{$self->{token}}) {
191     return shift @{$self->{token}};
192     }
193    
194     A: {
195     if ($self->{state} eq 'data') {
196     if ($self->{next_input_character} == 0x0026) { # &
197     if ($self->{content_model_flag} eq 'PCDATA' or
198     $self->{content_model_flag} eq 'RCDATA') {
199     $self->{state} = 'entity data';
200     !!!next-input-character;
201     redo A;
202     } else {
203     #
204     }
205 wakaba 1.13 } elsif ($self->{next_input_character} == 0x002D) { # -
206     if ($self->{content_model_flag} eq 'RCDATA' or
207     $self->{content_model_flag} eq 'CDATA') {
208     unless ($self->{escape}) {
209     if ($self->{prev_input_character}->[0] == 0x002D and # -
210     $self->{prev_input_character}->[1] == 0x0021 and # !
211     $self->{prev_input_character}->[2] == 0x003C) { # <
212     $self->{escape} = 1;
213     }
214     }
215     }
216    
217     #
218 wakaba 1.1 } elsif ($self->{next_input_character} == 0x003C) { # <
219 wakaba 1.13 if ($self->{content_model_flag} eq 'PCDATA' or
220     (($self->{content_model_flag} eq 'CDATA' or
221     $self->{content_model_flag} eq 'RCDATA') and
222     not $self->{escape})) {
223 wakaba 1.1 $self->{state} = 'tag open';
224     !!!next-input-character;
225     redo A;
226     } else {
227     #
228     }
229 wakaba 1.13 } elsif ($self->{next_input_character} == 0x003E) { # >
230     if ($self->{escape} and
231     ($self->{content_model_flag} eq 'RCDATA' or
232     $self->{content_model_flag} eq 'CDATA')) {
233     if ($self->{prev_input_character}->[0] == 0x002D and # -
234     $self->{prev_input_character}->[1] == 0x002D) { # -
235     delete $self->{escape};
236     }
237     }
238    
239     #
240 wakaba 1.1 } elsif ($self->{next_input_character} == -1) {
241     !!!emit ({type => 'end-of-file'});
242     last A; ## TODO: ok?
243     }
244     # Anything else
245     my $token = {type => 'character',
246     data => chr $self->{next_input_character}};
247     ## Stay in the data state
248     !!!next-input-character;
249    
250     !!!emit ($token);
251    
252     redo A;
253     } elsif ($self->{state} eq 'entity data') {
254     ## (cannot happen in CDATA state)
255    
256 wakaba 1.26 my $token = $self->_tokenize_attempt_to_consume_an_entity (0);
257 wakaba 1.1
258     $self->{state} = 'data';
259     # next-input-character is already done
260    
261     unless (defined $token) {
262     !!!emit ({type => 'character', data => '&'});
263     } else {
264     !!!emit ($token);
265     }
266    
267     redo A;
268     } elsif ($self->{state} eq 'tag open') {
269     if ($self->{content_model_flag} eq 'RCDATA' or
270     $self->{content_model_flag} eq 'CDATA') {
271     if ($self->{next_input_character} == 0x002F) { # /
272     !!!next-input-character;
273     $self->{state} = 'close tag open';
274     redo A;
275     } else {
276     ## reconsume
277     $self->{state} = 'data';
278    
279     !!!emit ({type => 'character', data => '<'});
280    
281     redo A;
282     }
283     } elsif ($self->{content_model_flag} eq 'PCDATA') {
284     if ($self->{next_input_character} == 0x0021) { # !
285     $self->{state} = 'markup declaration open';
286     !!!next-input-character;
287     redo A;
288     } elsif ($self->{next_input_character} == 0x002F) { # /
289     $self->{state} = 'close tag open';
290     !!!next-input-character;
291     redo A;
292     } elsif (0x0041 <= $self->{next_input_character} and
293     $self->{next_input_character} <= 0x005A) { # A..Z
294     $self->{current_token}
295     = {type => 'start tag',
296     tag_name => chr ($self->{next_input_character} + 0x0020)};
297     $self->{state} = 'tag name';
298     !!!next-input-character;
299     redo A;
300     } elsif (0x0061 <= $self->{next_input_character} and
301     $self->{next_input_character} <= 0x007A) { # a..z
302     $self->{current_token} = {type => 'start tag',
303     tag_name => chr ($self->{next_input_character})};
304     $self->{state} = 'tag name';
305     !!!next-input-character;
306     redo A;
307     } elsif ($self->{next_input_character} == 0x003E) { # >
308 wakaba 1.3 !!!parse-error (type => 'empty start tag');
309 wakaba 1.1 $self->{state} = 'data';
310     !!!next-input-character;
311    
312     !!!emit ({type => 'character', data => '<>'});
313    
314     redo A;
315     } elsif ($self->{next_input_character} == 0x003F) { # ?
316 wakaba 1.3 !!!parse-error (type => 'pio');
317 wakaba 1.1 $self->{state} = 'bogus comment';
318     ## $self->{next_input_character} is intentionally left as is
319     redo A;
320     } else {
321 wakaba 1.3 !!!parse-error (type => 'bare stago');
322 wakaba 1.1 $self->{state} = 'data';
323     ## reconsume
324    
325     !!!emit ({type => 'character', data => '<'});
326    
327     redo A;
328     }
329     } else {
330     die "$0: $self->{content_model_flag}: Unknown content model flag";
331     }
332     } elsif ($self->{state} eq 'close tag open') {
333     if ($self->{content_model_flag} eq 'RCDATA' or
334     $self->{content_model_flag} eq 'CDATA') {
335 wakaba 1.23 if (defined $self->{last_emitted_start_tag_name}) {
336 wakaba 1.30 ## NOTE: <http://krijnhoetmer.nl/irc-logs/whatwg/20070626#l-564>
337 wakaba 1.23 my @next_char;
338     TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {
339     push @next_char, $self->{next_input_character};
340     my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);
341     my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;
342     if ($self->{next_input_character} == $c or $self->{next_input_character} == $C) {
343     !!!next-input-character;
344     next TAGNAME;
345     } else {
346     $self->{next_input_character} = shift @next_char; # reconsume
347     !!!back-next-input-character (@next_char);
348     $self->{state} = 'data';
349    
350     !!!emit ({type => 'character', data => '</'});
351    
352     redo A;
353     }
354     }
355 wakaba 1.1 push @next_char, $self->{next_input_character};
356 wakaba 1.23
357     unless ($self->{next_input_character} == 0x0009 or # HT
358     $self->{next_input_character} == 0x000A or # LF
359     $self->{next_input_character} == 0x000B or # VT
360     $self->{next_input_character} == 0x000C or # FF
361     $self->{next_input_character} == 0x0020 or # SP
362     $self->{next_input_character} == 0x003E or # >
363     $self->{next_input_character} == 0x002F or # /
364     $self->{next_input_character} == -1) {
365 wakaba 1.1 $self->{next_input_character} = shift @next_char; # reconsume
366     !!!back-next-input-character (@next_char);
367     $self->{state} = 'data';
368     !!!emit ({type => 'character', data => '</'});
369     redo A;
370 wakaba 1.23 } else {
371     $self->{next_input_character} = shift @next_char;
372     !!!back-next-input-character (@next_char);
373     # and consume...
374 wakaba 1.1 }
375 wakaba 1.23 } else {
376     ## No start tag token has ever been emitted
377     # next-input-character is already done
378 wakaba 1.1 $self->{state} = 'data';
379     !!!emit ({type => 'character', data => '</'});
380     redo A;
381     }
382     }
383    
384     if (0x0041 <= $self->{next_input_character} and
385     $self->{next_input_character} <= 0x005A) { # A..Z
386     $self->{current_token} = {type => 'end tag',
387     tag_name => chr ($self->{next_input_character} + 0x0020)};
388     $self->{state} = 'tag name';
389     !!!next-input-character;
390     redo A;
391     } elsif (0x0061 <= $self->{next_input_character} and
392     $self->{next_input_character} <= 0x007A) { # a..z
393     $self->{current_token} = {type => 'end tag',
394     tag_name => chr ($self->{next_input_character})};
395     $self->{state} = 'tag name';
396     !!!next-input-character;
397     redo A;
398     } elsif ($self->{next_input_character} == 0x003E) { # >
399 wakaba 1.3 !!!parse-error (type => 'empty end tag');
400 wakaba 1.1 $self->{state} = 'data';
401     !!!next-input-character;
402     redo A;
403     } elsif ($self->{next_input_character} == -1) {
404 wakaba 1.3 !!!parse-error (type => 'bare etago');
405 wakaba 1.1 $self->{state} = 'data';
406     # reconsume
407    
408     !!!emit ({type => 'character', data => '</'});
409    
410     redo A;
411     } else {
412 wakaba 1.3 !!!parse-error (type => 'bogus end tag');
413 wakaba 1.1 $self->{state} = 'bogus comment';
414     ## $self->{next_input_character} is intentionally left as is
415     redo A;
416     }
417     } elsif ($self->{state} eq 'tag name') {
418     if ($self->{next_input_character} == 0x0009 or # HT
419     $self->{next_input_character} == 0x000A or # LF
420     $self->{next_input_character} == 0x000B or # VT
421     $self->{next_input_character} == 0x000C or # FF
422     $self->{next_input_character} == 0x0020) { # SP
423     $self->{state} = 'before attribute name';
424     !!!next-input-character;
425     redo A;
426     } elsif ($self->{next_input_character} == 0x003E) { # >
427     if ($self->{current_token}->{type} eq 'start tag') {
428 wakaba 1.28 $self->{current_token}->{first_start_tag}
429     = not defined $self->{last_emitted_start_tag_name};
430 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
431     } elsif ($self->{current_token}->{type} eq 'end tag') {
432     $self->{content_model_flag} = 'PCDATA'; # MUST
433     if ($self->{current_token}->{attributes}) {
434 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
435 wakaba 1.1 }
436     } else {
437     die "$0: $self->{current_token}->{type}: Unknown token type";
438     }
439     $self->{state} = 'data';
440     !!!next-input-character;
441    
442     !!!emit ($self->{current_token}); # start tag or end tag
443    
444     redo A;
445     } elsif (0x0041 <= $self->{next_input_character} and
446     $self->{next_input_character} <= 0x005A) { # A..Z
447     $self->{current_token}->{tag_name} .= chr ($self->{next_input_character} + 0x0020);
448     # start tag or end tag
449     ## Stay in this state
450     !!!next-input-character;
451     redo A;
452 wakaba 1.17 } elsif ($self->{next_input_character} == -1) {
453 wakaba 1.3 !!!parse-error (type => 'unclosed tag');
454 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
455 wakaba 1.28 $self->{current_token}->{first_start_tag}
456     = not defined $self->{last_emitted_start_tag_name};
457 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
458     } elsif ($self->{current_token}->{type} eq 'end tag') {
459     $self->{content_model_flag} = 'PCDATA'; # MUST
460     if ($self->{current_token}->{attributes}) {
461 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
462 wakaba 1.1 }
463     } else {
464     die "$0: $self->{current_token}->{type}: Unknown token type";
465     }
466     $self->{state} = 'data';
467     # reconsume
468    
469     !!!emit ($self->{current_token}); # start tag or end tag
470    
471     redo A;
472     } elsif ($self->{next_input_character} == 0x002F) { # /
473     !!!next-input-character;
474     if ($self->{next_input_character} == 0x003E and # >
475     $self->{current_token}->{type} eq 'start tag' and
476     $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
477     # permitted slash
478     #
479     } else {
480 wakaba 1.3 !!!parse-error (type => 'nestc');
481 wakaba 1.1 }
482     $self->{state} = 'before attribute name';
483     # next-input-character is already done
484     redo A;
485     } else {
486     $self->{current_token}->{tag_name} .= chr $self->{next_input_character};
487     # start tag or end tag
488     ## Stay in the state
489     !!!next-input-character;
490     redo A;
491     }
492     } elsif ($self->{state} eq 'before attribute name') {
493     if ($self->{next_input_character} == 0x0009 or # HT
494     $self->{next_input_character} == 0x000A or # LF
495     $self->{next_input_character} == 0x000B or # VT
496     $self->{next_input_character} == 0x000C or # FF
497     $self->{next_input_character} == 0x0020) { # SP
498     ## Stay in the state
499     !!!next-input-character;
500     redo A;
501     } elsif ($self->{next_input_character} == 0x003E) { # >
502     if ($self->{current_token}->{type} eq 'start tag') {
503 wakaba 1.28 $self->{current_token}->{first_start_tag}
504     = not defined $self->{last_emitted_start_tag_name};
505 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
506     } elsif ($self->{current_token}->{type} eq 'end tag') {
507     $self->{content_model_flag} = 'PCDATA'; # MUST
508     if ($self->{current_token}->{attributes}) {
509 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
510 wakaba 1.1 }
511     } else {
512     die "$0: $self->{current_token}->{type}: Unknown token type";
513     }
514     $self->{state} = 'data';
515     !!!next-input-character;
516    
517     !!!emit ($self->{current_token}); # start tag or end tag
518    
519     redo A;
520     } elsif (0x0041 <= $self->{next_input_character} and
521     $self->{next_input_character} <= 0x005A) { # A..Z
522     $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),
523     value => ''};
524     $self->{state} = 'attribute name';
525     !!!next-input-character;
526     redo A;
527     } elsif ($self->{next_input_character} == 0x002F) { # /
528     !!!next-input-character;
529     if ($self->{next_input_character} == 0x003E and # >
530     $self->{current_token}->{type} eq 'start tag' and
531     $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
532     # permitted slash
533     #
534     } else {
535 wakaba 1.3 !!!parse-error (type => 'nestc');
536 wakaba 1.1 }
537     ## Stay in the state
538     # next-input-character is already done
539     redo A;
540 wakaba 1.17 } elsif ($self->{next_input_character} == -1) {
541 wakaba 1.3 !!!parse-error (type => 'unclosed tag');
542 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
543 wakaba 1.28 $self->{current_token}->{first_start_tag}
544     = not defined $self->{last_emitted_start_tag_name};
545 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
546     } elsif ($self->{current_token}->{type} eq 'end tag') {
547     $self->{content_model_flag} = 'PCDATA'; # MUST
548     if ($self->{current_token}->{attributes}) {
549 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
550 wakaba 1.1 }
551     } else {
552     die "$0: $self->{current_token}->{type}: Unknown token type";
553     }
554     $self->{state} = 'data';
555     # reconsume
556    
557     !!!emit ($self->{current_token}); # start tag or end tag
558    
559     redo A;
560     } else {
561     $self->{current_attribute} = {name => chr ($self->{next_input_character}),
562     value => ''};
563     $self->{state} = 'attribute name';
564     !!!next-input-character;
565     redo A;
566     }
567     } elsif ($self->{state} eq 'attribute name') {
568     my $before_leave = sub {
569     if (exists $self->{current_token}->{attributes} # start tag or end tag
570     ->{$self->{current_attribute}->{name}}) { # MUST
571 wakaba 1.3 !!!parse-error (type => 'dupulicate attribute');
572 wakaba 1.1 ## Discard $self->{current_attribute} # MUST
573     } else {
574     $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}
575     = $self->{current_attribute};
576     }
577     }; # $before_leave
578    
579     if ($self->{next_input_character} == 0x0009 or # HT
580     $self->{next_input_character} == 0x000A or # LF
581     $self->{next_input_character} == 0x000B or # VT
582     $self->{next_input_character} == 0x000C or # FF
583     $self->{next_input_character} == 0x0020) { # SP
584     $before_leave->();
585     $self->{state} = 'after attribute name';
586     !!!next-input-character;
587     redo A;
588     } elsif ($self->{next_input_character} == 0x003D) { # =
589     $before_leave->();
590     $self->{state} = 'before attribute value';
591     !!!next-input-character;
592     redo A;
593     } elsif ($self->{next_input_character} == 0x003E) { # >
594     $before_leave->();
595     if ($self->{current_token}->{type} eq 'start tag') {
596 wakaba 1.28 $self->{current_token}->{first_start_tag}
597     = not defined $self->{last_emitted_start_tag_name};
598 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
599     } elsif ($self->{current_token}->{type} eq 'end tag') {
600     $self->{content_model_flag} = 'PCDATA'; # MUST
601     if ($self->{current_token}->{attributes}) {
602 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
603 wakaba 1.1 }
604     } else {
605     die "$0: $self->{current_token}->{type}: Unknown token type";
606     }
607     $self->{state} = 'data';
608     !!!next-input-character;
609    
610     !!!emit ($self->{current_token}); # start tag or end tag
611    
612     redo A;
613     } elsif (0x0041 <= $self->{next_input_character} and
614     $self->{next_input_character} <= 0x005A) { # A..Z
615     $self->{current_attribute}->{name} .= chr ($self->{next_input_character} + 0x0020);
616     ## Stay in the state
617     !!!next-input-character;
618     redo A;
619     } elsif ($self->{next_input_character} == 0x002F) { # /
620     $before_leave->();
621     !!!next-input-character;
622     if ($self->{next_input_character} == 0x003E and # >
623     $self->{current_token}->{type} eq 'start tag' and
624     $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
625     # permitted slash
626     #
627     } else {
628 wakaba 1.3 !!!parse-error (type => 'nestc');
629 wakaba 1.1 }
630     $self->{state} = 'before attribute name';
631     # next-input-character is already done
632     redo A;
633 wakaba 1.17 } elsif ($self->{next_input_character} == -1) {
634 wakaba 1.3 !!!parse-error (type => 'unclosed tag');
635 wakaba 1.1 $before_leave->();
636     if ($self->{current_token}->{type} eq 'start tag') {
637 wakaba 1.28 $self->{current_token}->{first_start_tag}
638     = not defined $self->{last_emitted_start_tag_name};
639 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
640     } elsif ($self->{current_token}->{type} eq 'end tag') {
641     $self->{content_model_flag} = 'PCDATA'; # MUST
642     if ($self->{current_token}->{attributes}) {
643 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
644 wakaba 1.1 }
645     } else {
646     die "$0: $self->{current_token}->{type}: Unknown token type";
647     }
648     $self->{state} = 'data';
649     # reconsume
650    
651     !!!emit ($self->{current_token}); # start tag or end tag
652    
653     redo A;
654     } else {
655     $self->{current_attribute}->{name} .= chr ($self->{next_input_character});
656     ## Stay in the state
657     !!!next-input-character;
658     redo A;
659     }
660     } elsif ($self->{state} eq 'after attribute name') {
661     if ($self->{next_input_character} == 0x0009 or # HT
662     $self->{next_input_character} == 0x000A or # LF
663     $self->{next_input_character} == 0x000B or # VT
664     $self->{next_input_character} == 0x000C or # FF
665     $self->{next_input_character} == 0x0020) { # SP
666     ## Stay in the state
667     !!!next-input-character;
668     redo A;
669     } elsif ($self->{next_input_character} == 0x003D) { # =
670     $self->{state} = 'before attribute value';
671     !!!next-input-character;
672     redo A;
673     } elsif ($self->{next_input_character} == 0x003E) { # >
674     if ($self->{current_token}->{type} eq 'start tag') {
675 wakaba 1.28 $self->{current_token}->{first_start_tag}
676     = not defined $self->{last_emitted_start_tag_name};
677 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
678     } elsif ($self->{current_token}->{type} eq 'end tag') {
679     $self->{content_model_flag} = 'PCDATA'; # MUST
680     if ($self->{current_token}->{attributes}) {
681 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
682 wakaba 1.1 }
683     } else {
684     die "$0: $self->{current_token}->{type}: Unknown token type";
685     }
686     $self->{state} = 'data';
687     !!!next-input-character;
688    
689     !!!emit ($self->{current_token}); # start tag or end tag
690    
691     redo A;
692     } elsif (0x0041 <= $self->{next_input_character} and
693     $self->{next_input_character} <= 0x005A) { # A..Z
694     $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),
695     value => ''};
696     $self->{state} = 'attribute name';
697     !!!next-input-character;
698     redo A;
699     } elsif ($self->{next_input_character} == 0x002F) { # /
700     !!!next-input-character;
701     if ($self->{next_input_character} == 0x003E and # >
702     $self->{current_token}->{type} eq 'start tag' and
703     $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {
704     # permitted slash
705     #
706     } else {
707 wakaba 1.3 !!!parse-error (type => 'nestc');
708 wakaba 1.1 }
709     $self->{state} = 'before attribute name';
710     # next-input-character is already done
711     redo A;
712 wakaba 1.17 } elsif ($self->{next_input_character} == -1) {
713 wakaba 1.3 !!!parse-error (type => 'unclosed tag');
714 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
715 wakaba 1.28 $self->{current_token}->{first_start_tag}
716     = not defined $self->{last_emitted_start_tag_name};
717 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
718     } elsif ($self->{current_token}->{type} eq 'end tag') {
719     $self->{content_model_flag} = 'PCDATA'; # MUST
720     if ($self->{current_token}->{attributes}) {
721 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
722 wakaba 1.1 }
723     } else {
724     die "$0: $self->{current_token}->{type}: Unknown token type";
725     }
726     $self->{state} = 'data';
727     # reconsume
728    
729     !!!emit ($self->{current_token}); # start tag or end tag
730    
731     redo A;
732     } else {
733     $self->{current_attribute} = {name => chr ($self->{next_input_character}),
734     value => ''};
735     $self->{state} = 'attribute name';
736     !!!next-input-character;
737     redo A;
738     }
739     } elsif ($self->{state} eq 'before attribute value') {
740     if ($self->{next_input_character} == 0x0009 or # HT
741     $self->{next_input_character} == 0x000A or # LF
742     $self->{next_input_character} == 0x000B or # VT
743     $self->{next_input_character} == 0x000C or # FF
744     $self->{next_input_character} == 0x0020) { # SP
745     ## Stay in the state
746     !!!next-input-character;
747     redo A;
748     } elsif ($self->{next_input_character} == 0x0022) { # "
749     $self->{state} = 'attribute value (double-quoted)';
750     !!!next-input-character;
751     redo A;
752     } elsif ($self->{next_input_character} == 0x0026) { # &
753     $self->{state} = 'attribute value (unquoted)';
754     ## reconsume
755     redo A;
756     } elsif ($self->{next_input_character} == 0x0027) { # '
757     $self->{state} = 'attribute value (single-quoted)';
758     !!!next-input-character;
759     redo A;
760     } elsif ($self->{next_input_character} == 0x003E) { # >
761     if ($self->{current_token}->{type} eq 'start tag') {
762 wakaba 1.28 $self->{current_token}->{first_start_tag}
763     = not defined $self->{last_emitted_start_tag_name};
764 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
765     } elsif ($self->{current_token}->{type} eq 'end tag') {
766     $self->{content_model_flag} = 'PCDATA'; # MUST
767     if ($self->{current_token}->{attributes}) {
768 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
769 wakaba 1.1 }
770     } else {
771     die "$0: $self->{current_token}->{type}: Unknown token type";
772     }
773     $self->{state} = 'data';
774     !!!next-input-character;
775    
776     !!!emit ($self->{current_token}); # start tag or end tag
777    
778     redo A;
779 wakaba 1.17 } elsif ($self->{next_input_character} == -1) {
780 wakaba 1.3 !!!parse-error (type => 'unclosed tag');
781 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
782 wakaba 1.28 $self->{current_token}->{first_start_tag}
783     = not defined $self->{last_emitted_start_tag_name};
784 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
785     } elsif ($self->{current_token}->{type} eq 'end tag') {
786     $self->{content_model_flag} = 'PCDATA'; # MUST
787     if ($self->{current_token}->{attributes}) {
788 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
789 wakaba 1.1 }
790     } else {
791     die "$0: $self->{current_token}->{type}: Unknown token type";
792     }
793     $self->{state} = 'data';
794     ## reconsume
795    
796     !!!emit ($self->{current_token}); # start tag or end tag
797    
798     redo A;
799     } else {
800     $self->{current_attribute}->{value} .= chr ($self->{next_input_character});
801     $self->{state} = 'attribute value (unquoted)';
802     !!!next-input-character;
803     redo A;
804     }
805     } elsif ($self->{state} eq 'attribute value (double-quoted)') {
806     if ($self->{next_input_character} == 0x0022) { # "
807     $self->{state} = 'before attribute name';
808     !!!next-input-character;
809     redo A;
810     } elsif ($self->{next_input_character} == 0x0026) { # &
811     $self->{last_attribute_value_state} = 'attribute value (double-quoted)';
812     $self->{state} = 'entity in attribute value';
813     !!!next-input-character;
814     redo A;
815     } elsif ($self->{next_input_character} == -1) {
816 wakaba 1.3 !!!parse-error (type => 'unclosed attribute value');
817 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
818 wakaba 1.28 $self->{current_token}->{first_start_tag}
819     = not defined $self->{last_emitted_start_tag_name};
820 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
821     } elsif ($self->{current_token}->{type} eq 'end tag') {
822     $self->{content_model_flag} = 'PCDATA'; # MUST
823     if ($self->{current_token}->{attributes}) {
824 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
825 wakaba 1.1 }
826     } else {
827     die "$0: $self->{current_token}->{type}: Unknown token type";
828     }
829     $self->{state} = 'data';
830     ## reconsume
831    
832     !!!emit ($self->{current_token}); # start tag or end tag
833    
834     redo A;
835     } else {
836     $self->{current_attribute}->{value} .= chr ($self->{next_input_character});
837     ## Stay in the state
838     !!!next-input-character;
839     redo A;
840     }
841     } elsif ($self->{state} eq 'attribute value (single-quoted)') {
842     if ($self->{next_input_character} == 0x0027) { # '
843     $self->{state} = 'before attribute name';
844     !!!next-input-character;
845     redo A;
846     } elsif ($self->{next_input_character} == 0x0026) { # &
847     $self->{last_attribute_value_state} = 'attribute value (single-quoted)';
848     $self->{state} = 'entity in attribute value';
849     !!!next-input-character;
850     redo A;
851     } elsif ($self->{next_input_character} == -1) {
852 wakaba 1.3 !!!parse-error (type => 'unclosed attribute value');
853 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
854 wakaba 1.28 $self->{current_token}->{first_start_tag}
855     = not defined $self->{last_emitted_start_tag_name};
856 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
857     } elsif ($self->{current_token}->{type} eq 'end tag') {
858     $self->{content_model_flag} = 'PCDATA'; # MUST
859     if ($self->{current_token}->{attributes}) {
860 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
861 wakaba 1.1 }
862     } else {
863     die "$0: $self->{current_token}->{type}: Unknown token type";
864     }
865     $self->{state} = 'data';
866     ## reconsume
867    
868     !!!emit ($self->{current_token}); # start tag or end tag
869    
870     redo A;
871     } else {
872     $self->{current_attribute}->{value} .= chr ($self->{next_input_character});
873     ## Stay in the state
874     !!!next-input-character;
875     redo A;
876     }
877     } elsif ($self->{state} eq 'attribute value (unquoted)') {
878     if ($self->{next_input_character} == 0x0009 or # HT
879     $self->{next_input_character} == 0x000A or # LF
880     $self->{next_input_character} == 0x000B or # HT
881     $self->{next_input_character} == 0x000C or # FF
882     $self->{next_input_character} == 0x0020) { # SP
883     $self->{state} = 'before attribute name';
884     !!!next-input-character;
885     redo A;
886     } elsif ($self->{next_input_character} == 0x0026) { # &
887     $self->{last_attribute_value_state} = 'attribute value (unquoted)';
888     $self->{state} = 'entity in attribute value';
889     !!!next-input-character;
890     redo A;
891     } elsif ($self->{next_input_character} == 0x003E) { # >
892     if ($self->{current_token}->{type} eq 'start tag') {
893 wakaba 1.28 $self->{current_token}->{first_start_tag}
894     = not defined $self->{last_emitted_start_tag_name};
895 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
896     } elsif ($self->{current_token}->{type} eq 'end tag') {
897     $self->{content_model_flag} = 'PCDATA'; # MUST
898     if ($self->{current_token}->{attributes}) {
899 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
900 wakaba 1.1 }
901     } else {
902     die "$0: $self->{current_token}->{type}: Unknown token type";
903     }
904     $self->{state} = 'data';
905     !!!next-input-character;
906    
907     !!!emit ($self->{current_token}); # start tag or end tag
908    
909     redo A;
910 wakaba 1.17 } elsif ($self->{next_input_character} == -1) {
911 wakaba 1.3 !!!parse-error (type => 'unclosed tag');
912 wakaba 1.1 if ($self->{current_token}->{type} eq 'start tag') {
913 wakaba 1.28 $self->{current_token}->{first_start_tag}
914     = not defined $self->{last_emitted_start_tag_name};
915 wakaba 1.1 $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};
916     } elsif ($self->{current_token}->{type} eq 'end tag') {
917     $self->{content_model_flag} = 'PCDATA'; # MUST
918     if ($self->{current_token}->{attributes}) {
919 wakaba 1.3 !!!parse-error (type => 'end tag attribute');
920 wakaba 1.1 }
921     } else {
922     die "$0: $self->{current_token}->{type}: Unknown token type";
923     }
924     $self->{state} = 'data';
925     ## reconsume
926    
927     !!!emit ($self->{current_token}); # start tag or end tag
928    
929     redo A;
930     } else {
931     $self->{current_attribute}->{value} .= chr ($self->{next_input_character});
932     ## Stay in the state
933     !!!next-input-character;
934     redo A;
935     }
936     } elsif ($self->{state} eq 'entity in attribute value') {
937 wakaba 1.26 my $token = $self->_tokenize_attempt_to_consume_an_entity (1);
938 wakaba 1.1
939     unless (defined $token) {
940     $self->{current_attribute}->{value} .= '&';
941     } else {
942     $self->{current_attribute}->{value} .= $token->{data};
943     ## ISSUE: spec says "append the returned character token to the current attribute's value"
944     }
945    
946     $self->{state} = $self->{last_attribute_value_state};
947     # next-input-character is already done
948     redo A;
949     } elsif ($self->{state} eq 'bogus comment') {
950     ## (only happen if PCDATA state)
951    
952     my $token = {type => 'comment', data => ''};
953    
954     BC: {
955     if ($self->{next_input_character} == 0x003E) { # >
956     $self->{state} = 'data';
957     !!!next-input-character;
958    
959     !!!emit ($token);
960    
961     redo A;
962     } elsif ($self->{next_input_character} == -1) {
963     $self->{state} = 'data';
964     ## reconsume
965    
966     !!!emit ($token);
967    
968     redo A;
969     } else {
970     $token->{data} .= chr ($self->{next_input_character});
971     !!!next-input-character;
972     redo BC;
973     }
974     } # BC
975     } elsif ($self->{state} eq 'markup declaration open') {
976     ## (only happen if PCDATA state)
977    
978     my @next_char;
979     push @next_char, $self->{next_input_character};
980    
981     if ($self->{next_input_character} == 0x002D) { # -
982     !!!next-input-character;
983     push @next_char, $self->{next_input_character};
984     if ($self->{next_input_character} == 0x002D) { # -
985     $self->{current_token} = {type => 'comment', data => ''};
986 wakaba 1.23 $self->{state} = 'comment start';
987 wakaba 1.1 !!!next-input-character;
988     redo A;
989     }
990     } elsif ($self->{next_input_character} == 0x0044 or # D
991     $self->{next_input_character} == 0x0064) { # d
992     !!!next-input-character;
993     push @next_char, $self->{next_input_character};
994     if ($self->{next_input_character} == 0x004F or # O
995     $self->{next_input_character} == 0x006F) { # o
996     !!!next-input-character;
997     push @next_char, $self->{next_input_character};
998     if ($self->{next_input_character} == 0x0043 or # C
999     $self->{next_input_character} == 0x0063) { # c
1000     !!!next-input-character;
1001     push @next_char, $self->{next_input_character};
1002     if ($self->{next_input_character} == 0x0054 or # T
1003     $self->{next_input_character} == 0x0074) { # t
1004     !!!next-input-character;
1005     push @next_char, $self->{next_input_character};
1006     if ($self->{next_input_character} == 0x0059 or # Y
1007     $self->{next_input_character} == 0x0079) { # y
1008     !!!next-input-character;
1009     push @next_char, $self->{next_input_character};
1010     if ($self->{next_input_character} == 0x0050 or # P
1011     $self->{next_input_character} == 0x0070) { # p
1012     !!!next-input-character;
1013     push @next_char, $self->{next_input_character};
1014     if ($self->{next_input_character} == 0x0045 or # E
1015     $self->{next_input_character} == 0x0065) { # e
1016     ## ISSUE: What a stupid code this is!
1017     $self->{state} = 'DOCTYPE';
1018     !!!next-input-character;
1019     redo A;
1020     }
1021     }
1022     }
1023     }
1024     }
1025     }
1026     }
1027    
1028 wakaba 1.30 !!!parse-error (type => 'bogus comment');
1029 wakaba 1.1 $self->{next_input_character} = shift @next_char;
1030     !!!back-next-input-character (@next_char);
1031     $self->{state} = 'bogus comment';
1032     redo A;
1033    
1034     ## ISSUE: typos in spec: chacacters, is is a parse error
1035     ## ISSUE: spec is somewhat unclear on "is the first character that will be in the comment"; what is "that will be in the comment" is what the algorithm defines, isn't it?
1036 wakaba 1.23 } elsif ($self->{state} eq 'comment start') {
1037     if ($self->{next_input_character} == 0x002D) { # -
1038     $self->{state} = 'comment start dash';
1039     !!!next-input-character;
1040     redo A;
1041     } elsif ($self->{next_input_character} == 0x003E) { # >
1042     !!!parse-error (type => 'bogus comment');
1043     $self->{state} = 'data';
1044     !!!next-input-character;
1045    
1046     !!!emit ($self->{current_token}); # comment
1047    
1048     redo A;
1049     } elsif ($self->{next_input_character} == -1) {
1050     !!!parse-error (type => 'unclosed comment');
1051     $self->{state} = 'data';
1052     ## reconsume
1053    
1054     !!!emit ($self->{current_token}); # comment
1055    
1056     redo A;
1057     } else {
1058     $self->{current_token}->{data} # comment
1059     .= chr ($self->{next_input_character});
1060     $self->{state} = 'comment';
1061     !!!next-input-character;
1062     redo A;
1063     }
1064     } elsif ($self->{state} eq 'comment start dash') {
1065     if ($self->{next_input_character} == 0x002D) { # -
1066     $self->{state} = 'comment end';
1067     !!!next-input-character;
1068     redo A;
1069     } elsif ($self->{next_input_character} == 0x003E) { # >
1070     !!!parse-error (type => 'bogus comment');
1071     $self->{state} = 'data';
1072     !!!next-input-character;
1073    
1074     !!!emit ($self->{current_token}); # comment
1075    
1076     redo A;
1077     } elsif ($self->{next_input_character} == -1) {
1078     !!!parse-error (type => 'unclosed comment');
1079     $self->{state} = 'data';
1080     ## reconsume
1081    
1082     !!!emit ($self->{current_token}); # comment
1083    
1084     redo A;
1085     } else {
1086     $self->{current_token}->{data} # comment
1087     .= chr ($self->{next_input_character});
1088     $self->{state} = 'comment';
1089     !!!next-input-character;
1090     redo A;
1091     }
1092 wakaba 1.1 } elsif ($self->{state} eq 'comment') {
1093     if ($self->{next_input_character} == 0x002D) { # -
1094 wakaba 1.23 $self->{state} = 'comment end dash';
1095 wakaba 1.1 !!!next-input-character;
1096     redo A;
1097     } elsif ($self->{next_input_character} == -1) {
1098 wakaba 1.3 !!!parse-error (type => 'unclosed comment');
1099 wakaba 1.1 $self->{state} = 'data';
1100     ## reconsume
1101    
1102     !!!emit ($self->{current_token}); # comment
1103    
1104     redo A;
1105     } else {
1106     $self->{current_token}->{data} .= chr ($self->{next_input_character}); # comment
1107     ## Stay in the state
1108     !!!next-input-character;
1109     redo A;
1110     }
1111 wakaba 1.23 } elsif ($self->{state} eq 'comment end dash') {
1112 wakaba 1.1 if ($self->{next_input_character} == 0x002D) { # -
1113     $self->{state} = 'comment end';
1114     !!!next-input-character;
1115     redo A;
1116     } elsif ($self->{next_input_character} == -1) {
1117 wakaba 1.3 !!!parse-error (type => 'unclosed comment');
1118 wakaba 1.1 $self->{state} = 'data';
1119     ## reconsume
1120    
1121     !!!emit ($self->{current_token}); # comment
1122    
1123     redo A;
1124     } else {
1125     $self->{current_token}->{data} .= '-' . chr ($self->{next_input_character}); # comment
1126     $self->{state} = 'comment';
1127     !!!next-input-character;
1128     redo A;
1129     }
1130     } elsif ($self->{state} eq 'comment end') {
1131     if ($self->{next_input_character} == 0x003E) { # >
1132     $self->{state} = 'data';
1133     !!!next-input-character;
1134    
1135     !!!emit ($self->{current_token}); # comment
1136    
1137     redo A;
1138     } elsif ($self->{next_input_character} == 0x002D) { # -
1139 wakaba 1.3 !!!parse-error (type => 'dash in comment');
1140 wakaba 1.1 $self->{current_token}->{data} .= '-'; # comment
1141     ## Stay in the state
1142     !!!next-input-character;
1143     redo A;
1144     } elsif ($self->{next_input_character} == -1) {
1145 wakaba 1.3 !!!parse-error (type => 'unclosed comment');
1146 wakaba 1.1 $self->{state} = 'data';
1147     ## reconsume
1148    
1149     !!!emit ($self->{current_token}); # comment
1150    
1151     redo A;
1152     } else {
1153 wakaba 1.3 !!!parse-error (type => 'dash in comment');
1154 wakaba 1.1 $self->{current_token}->{data} .= '--' . chr ($self->{next_input_character}); # comment
1155     $self->{state} = 'comment';
1156     !!!next-input-character;
1157     redo A;
1158     }
1159     } elsif ($self->{state} eq 'DOCTYPE') {
1160     if ($self->{next_input_character} == 0x0009 or # HT
1161     $self->{next_input_character} == 0x000A or # LF
1162     $self->{next_input_character} == 0x000B or # VT
1163     $self->{next_input_character} == 0x000C or # FF
1164     $self->{next_input_character} == 0x0020) { # SP
1165     $self->{state} = 'before DOCTYPE name';
1166     !!!next-input-character;
1167     redo A;
1168     } else {
1169 wakaba 1.3 !!!parse-error (type => 'no space before DOCTYPE name');
1170 wakaba 1.1 $self->{state} = 'before DOCTYPE name';
1171     ## reconsume
1172     redo A;
1173     }
1174     } elsif ($self->{state} eq 'before DOCTYPE name') {
1175     if ($self->{next_input_character} == 0x0009 or # HT
1176     $self->{next_input_character} == 0x000A or # LF
1177     $self->{next_input_character} == 0x000B or # VT
1178     $self->{next_input_character} == 0x000C or # FF
1179     $self->{next_input_character} == 0x0020) { # SP
1180     ## Stay in the state
1181     !!!next-input-character;
1182     redo A;
1183     } elsif ($self->{next_input_character} == 0x003E) { # >
1184 wakaba 1.3 !!!parse-error (type => 'no DOCTYPE name');
1185 wakaba 1.1 $self->{state} = 'data';
1186     !!!next-input-character;
1187    
1188 wakaba 1.18 !!!emit ({type => 'DOCTYPE'}); # incorrect
1189 wakaba 1.1
1190     redo A;
1191     } elsif ($self->{next_input_character} == -1) {
1192 wakaba 1.3 !!!parse-error (type => 'no DOCTYPE name');
1193 wakaba 1.1 $self->{state} = 'data';
1194     ## reconsume
1195    
1196 wakaba 1.18 !!!emit ({type => 'DOCTYPE'}); # incorrect
1197 wakaba 1.1
1198     redo A;
1199     } else {
1200 wakaba 1.18 $self->{current_token}
1201     = {type => 'DOCTYPE',
1202     name => chr ($self->{next_input_character}),
1203     correct => 1};
1204 wakaba 1.4 ## ISSUE: "Set the token's name name to the" in the spec
1205 wakaba 1.1 $self->{state} = 'DOCTYPE name';
1206     !!!next-input-character;
1207     redo A;
1208     }
1209     } elsif ($self->{state} eq 'DOCTYPE name') {
1210 wakaba 1.18 ## ISSUE: Redundant "First," in the spec.
1211 wakaba 1.1 if ($self->{next_input_character} == 0x0009 or # HT
1212     $self->{next_input_character} == 0x000A or # LF
1213     $self->{next_input_character} == 0x000B or # VT
1214     $self->{next_input_character} == 0x000C or # FF
1215     $self->{next_input_character} == 0x0020) { # SP
1216     $self->{state} = 'after DOCTYPE name';
1217     !!!next-input-character;
1218     redo A;
1219     } elsif ($self->{next_input_character} == 0x003E) { # >
1220     $self->{state} = 'data';
1221     !!!next-input-character;
1222    
1223     !!!emit ($self->{current_token}); # DOCTYPE
1224    
1225     redo A;
1226     } elsif ($self->{next_input_character} == -1) {
1227 wakaba 1.3 !!!parse-error (type => 'unclosed DOCTYPE');
1228 wakaba 1.1 $self->{state} = 'data';
1229     ## reconsume
1230    
1231 wakaba 1.18 delete $self->{current_token}->{correct};
1232     !!!emit ($self->{current_token}); # DOCTYPE
1233 wakaba 1.1
1234     redo A;
1235     } else {
1236     $self->{current_token}->{name}
1237     .= chr ($self->{next_input_character}); # DOCTYPE
1238     ## Stay in the state
1239     !!!next-input-character;
1240     redo A;
1241     }
1242     } elsif ($self->{state} eq 'after DOCTYPE name') {
1243     if ($self->{next_input_character} == 0x0009 or # HT
1244     $self->{next_input_character} == 0x000A or # LF
1245     $self->{next_input_character} == 0x000B or # VT
1246     $self->{next_input_character} == 0x000C or # FF
1247     $self->{next_input_character} == 0x0020) { # SP
1248     ## Stay in the state
1249     !!!next-input-character;
1250     redo A;
1251     } elsif ($self->{next_input_character} == 0x003E) { # >
1252     $self->{state} = 'data';
1253     !!!next-input-character;
1254    
1255     !!!emit ($self->{current_token}); # DOCTYPE
1256    
1257     redo A;
1258     } elsif ($self->{next_input_character} == -1) {
1259 wakaba 1.3 !!!parse-error (type => 'unclosed DOCTYPE');
1260 wakaba 1.1 $self->{state} = 'data';
1261     ## reconsume
1262    
1263 wakaba 1.18 delete $self->{current_token}->{correct};
1264     !!!emit ($self->{current_token}); # DOCTYPE
1265    
1266     redo A;
1267     } elsif ($self->{next_input_character} == 0x0050 or # P
1268     $self->{next_input_character} == 0x0070) { # p
1269     !!!next-input-character;
1270     if ($self->{next_input_character} == 0x0055 or # U
1271     $self->{next_input_character} == 0x0075) { # u
1272     !!!next-input-character;
1273     if ($self->{next_input_character} == 0x0042 or # B
1274     $self->{next_input_character} == 0x0062) { # b
1275     !!!next-input-character;
1276     if ($self->{next_input_character} == 0x004C or # L
1277     $self->{next_input_character} == 0x006C) { # l
1278     !!!next-input-character;
1279     if ($self->{next_input_character} == 0x0049 or # I
1280     $self->{next_input_character} == 0x0069) { # i
1281     !!!next-input-character;
1282     if ($self->{next_input_character} == 0x0043 or # C
1283     $self->{next_input_character} == 0x0063) { # c
1284     $self->{state} = 'before DOCTYPE public identifier';
1285     !!!next-input-character;
1286     redo A;
1287     }
1288     }
1289     }
1290     }
1291     }
1292    
1293     #
1294     } elsif ($self->{next_input_character} == 0x0053 or # S
1295     $self->{next_input_character} == 0x0073) { # s
1296     !!!next-input-character;
1297     if ($self->{next_input_character} == 0x0059 or # Y
1298     $self->{next_input_character} == 0x0079) { # y
1299     !!!next-input-character;
1300     if ($self->{next_input_character} == 0x0053 or # S
1301     $self->{next_input_character} == 0x0073) { # s
1302     !!!next-input-character;
1303     if ($self->{next_input_character} == 0x0054 or # T
1304     $self->{next_input_character} == 0x0074) { # t
1305     !!!next-input-character;
1306     if ($self->{next_input_character} == 0x0045 or # E
1307     $self->{next_input_character} == 0x0065) { # e
1308     !!!next-input-character;
1309     if ($self->{next_input_character} == 0x004D or # M
1310     $self->{next_input_character} == 0x006D) { # m
1311     $self->{state} = 'before DOCTYPE system identifier';
1312     !!!next-input-character;
1313     redo A;
1314     }
1315     }
1316     }
1317     }
1318     }
1319    
1320     #
1321     } else {
1322     !!!next-input-character;
1323     #
1324     }
1325    
1326     !!!parse-error (type => 'string after DOCTYPE name');
1327     $self->{state} = 'bogus DOCTYPE';
1328     # next-input-character is already done
1329     redo A;
1330     } elsif ($self->{state} eq 'before DOCTYPE public identifier') {
1331     if ({
1332     0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1333     #0x000D => 1, # HT, LF, VT, FF, SP, CR
1334     }->{$self->{next_input_character}}) {
1335     ## Stay in the state
1336     !!!next-input-character;
1337     redo A;
1338     } elsif ($self->{next_input_character} eq 0x0022) { # "
1339     $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1340     $self->{state} = 'DOCTYPE public identifier (double-quoted)';
1341     !!!next-input-character;
1342     redo A;
1343     } elsif ($self->{next_input_character} eq 0x0027) { # '
1344     $self->{current_token}->{public_identifier} = ''; # DOCTYPE
1345     $self->{state} = 'DOCTYPE public identifier (single-quoted)';
1346     !!!next-input-character;
1347     redo A;
1348     } elsif ($self->{next_input_character} eq 0x003E) { # >
1349     !!!parse-error (type => 'no PUBLIC literal');
1350    
1351     $self->{state} = 'data';
1352     !!!next-input-character;
1353    
1354     delete $self->{current_token}->{correct};
1355     !!!emit ($self->{current_token}); # DOCTYPE
1356    
1357     redo A;
1358     } elsif ($self->{next_input_character} == -1) {
1359     !!!parse-error (type => 'unclosed DOCTYPE');
1360    
1361     $self->{state} = 'data';
1362     ## reconsume
1363    
1364     delete $self->{current_token}->{correct};
1365     !!!emit ($self->{current_token}); # DOCTYPE
1366    
1367     redo A;
1368     } else {
1369     !!!parse-error (type => 'string after PUBLIC');
1370     $self->{state} = 'bogus DOCTYPE';
1371     !!!next-input-character;
1372     redo A;
1373     }
1374     } elsif ($self->{state} eq 'DOCTYPE public identifier (double-quoted)') {
1375     if ($self->{next_input_character} == 0x0022) { # "
1376     $self->{state} = 'after DOCTYPE public identifier';
1377     !!!next-input-character;
1378     redo A;
1379     } elsif ($self->{next_input_character} == -1) {
1380     !!!parse-error (type => 'unclosed PUBLIC literal');
1381    
1382     $self->{state} = 'data';
1383     ## reconsume
1384    
1385     delete $self->{current_token}->{correct};
1386     !!!emit ($self->{current_token}); # DOCTYPE
1387    
1388     redo A;
1389     } else {
1390     $self->{current_token}->{public_identifier} # DOCTYPE
1391     .= chr $self->{next_input_character};
1392     ## Stay in the state
1393     !!!next-input-character;
1394     redo A;
1395     }
1396     } elsif ($self->{state} eq 'DOCTYPE public identifier (single-quoted)') {
1397     if ($self->{next_input_character} == 0x0027) { # '
1398     $self->{state} = 'after DOCTYPE public identifier';
1399     !!!next-input-character;
1400     redo A;
1401     } elsif ($self->{next_input_character} == -1) {
1402     !!!parse-error (type => 'unclosed PUBLIC literal');
1403    
1404     $self->{state} = 'data';
1405     ## reconsume
1406    
1407     delete $self->{current_token}->{correct};
1408     !!!emit ($self->{current_token}); # DOCTYPE
1409    
1410     redo A;
1411     } else {
1412     $self->{current_token}->{public_identifier} # DOCTYPE
1413     .= chr $self->{next_input_character};
1414     ## Stay in the state
1415     !!!next-input-character;
1416     redo A;
1417     }
1418     } elsif ($self->{state} eq 'after DOCTYPE public identifier') {
1419     if ({
1420     0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1421     #0x000D => 1, # HT, LF, VT, FF, SP, CR
1422     }->{$self->{next_input_character}}) {
1423     ## Stay in the state
1424     !!!next-input-character;
1425     redo A;
1426     } elsif ($self->{next_input_character} == 0x0022) { # "
1427     $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1428     $self->{state} = 'DOCTYPE system identifier (double-quoted)';
1429     !!!next-input-character;
1430     redo A;
1431     } elsif ($self->{next_input_character} == 0x0027) { # '
1432     $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1433     $self->{state} = 'DOCTYPE system identifier (single-quoted)';
1434     !!!next-input-character;
1435     redo A;
1436     } elsif ($self->{next_input_character} == 0x003E) { # >
1437     $self->{state} = 'data';
1438     !!!next-input-character;
1439    
1440     !!!emit ($self->{current_token}); # DOCTYPE
1441    
1442     redo A;
1443     } elsif ($self->{next_input_character} == -1) {
1444     !!!parse-error (type => 'unclosed DOCTYPE');
1445    
1446     $self->{state} = 'data';
1447 wakaba 1.26 ## reconsume
1448 wakaba 1.18
1449     delete $self->{current_token}->{correct};
1450     !!!emit ($self->{current_token}); # DOCTYPE
1451    
1452     redo A;
1453     } else {
1454     !!!parse-error (type => 'string after PUBLIC literal');
1455     $self->{state} = 'bogus DOCTYPE';
1456     !!!next-input-character;
1457     redo A;
1458     }
1459     } elsif ($self->{state} eq 'before DOCTYPE system identifier') {
1460     if ({
1461     0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1462     #0x000D => 1, # HT, LF, VT, FF, SP, CR
1463     }->{$self->{next_input_character}}) {
1464     ## Stay in the state
1465     !!!next-input-character;
1466     redo A;
1467     } elsif ($self->{next_input_character} == 0x0022) { # "
1468     $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1469     $self->{state} = 'DOCTYPE system identifier (double-quoted)';
1470     !!!next-input-character;
1471     redo A;
1472     } elsif ($self->{next_input_character} == 0x0027) { # '
1473     $self->{current_token}->{system_identifier} = ''; # DOCTYPE
1474     $self->{state} = 'DOCTYPE system identifier (single-quoted)';
1475     !!!next-input-character;
1476     redo A;
1477     } elsif ($self->{next_input_character} == 0x003E) { # >
1478     !!!parse-error (type => 'no SYSTEM literal');
1479     $self->{state} = 'data';
1480     !!!next-input-character;
1481    
1482     delete $self->{current_token}->{correct};
1483     !!!emit ($self->{current_token}); # DOCTYPE
1484    
1485     redo A;
1486     } elsif ($self->{next_input_character} == -1) {
1487     !!!parse-error (type => 'unclosed DOCTYPE');
1488    
1489     $self->{state} = 'data';
1490 wakaba 1.26 ## reconsume
1491 wakaba 1.18
1492     delete $self->{current_token}->{correct};
1493     !!!emit ($self->{current_token}); # DOCTYPE
1494    
1495     redo A;
1496     } else {
1497 wakaba 1.30 !!!parse-error (type => 'string after SYSTEM');
1498 wakaba 1.18 $self->{state} = 'bogus DOCTYPE';
1499     !!!next-input-character;
1500     redo A;
1501     }
1502     } elsif ($self->{state} eq 'DOCTYPE system identifier (double-quoted)') {
1503     if ($self->{next_input_character} == 0x0022) { # "
1504     $self->{state} = 'after DOCTYPE system identifier';
1505     !!!next-input-character;
1506     redo A;
1507     } elsif ($self->{next_input_character} == -1) {
1508     !!!parse-error (type => 'unclosed SYSTEM literal');
1509    
1510     $self->{state} = 'data';
1511     ## reconsume
1512    
1513     delete $self->{current_token}->{correct};
1514     !!!emit ($self->{current_token}); # DOCTYPE
1515    
1516     redo A;
1517     } else {
1518     $self->{current_token}->{system_identifier} # DOCTYPE
1519     .= chr $self->{next_input_character};
1520     ## Stay in the state
1521     !!!next-input-character;
1522     redo A;
1523     }
1524     } elsif ($self->{state} eq 'DOCTYPE system identifier (single-quoted)') {
1525     if ($self->{next_input_character} == 0x0027) { # '
1526     $self->{state} = 'after DOCTYPE system identifier';
1527     !!!next-input-character;
1528     redo A;
1529     } elsif ($self->{next_input_character} == -1) {
1530     !!!parse-error (type => 'unclosed SYSTEM literal');
1531    
1532     $self->{state} = 'data';
1533     ## reconsume
1534    
1535     delete $self->{current_token}->{correct};
1536 wakaba 1.1 !!!emit ($self->{current_token}); # DOCTYPE
1537    
1538     redo A;
1539     } else {
1540 wakaba 1.18 $self->{current_token}->{system_identifier} # DOCTYPE
1541     .= chr $self->{next_input_character};
1542     ## Stay in the state
1543     !!!next-input-character;
1544     redo A;
1545     }
1546     } elsif ($self->{state} eq 'after DOCTYPE system identifier') {
1547     if ({
1548     0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, 0x0020 => 1,
1549     #0x000D => 1, # HT, LF, VT, FF, SP, CR
1550     }->{$self->{next_input_character}}) {
1551     ## Stay in the state
1552     !!!next-input-character;
1553     redo A;
1554     } elsif ($self->{next_input_character} == 0x003E) { # >
1555     $self->{state} = 'data';
1556     !!!next-input-character;
1557    
1558     !!!emit ($self->{current_token}); # DOCTYPE
1559    
1560     redo A;
1561     } elsif ($self->{next_input_character} == -1) {
1562     !!!parse-error (type => 'unclosed DOCTYPE');
1563    
1564     $self->{state} = 'data';
1565 wakaba 1.26 ## reconsume
1566 wakaba 1.18
1567     delete $self->{current_token}->{correct};
1568     !!!emit ($self->{current_token}); # DOCTYPE
1569    
1570     redo A;
1571     } else {
1572     !!!parse-error (type => 'string after SYSTEM literal');
1573 wakaba 1.1 $self->{state} = 'bogus DOCTYPE';
1574     !!!next-input-character;
1575     redo A;
1576     }
1577     } elsif ($self->{state} eq 'bogus DOCTYPE') {
1578     if ($self->{next_input_character} == 0x003E) { # >
1579     $self->{state} = 'data';
1580     !!!next-input-character;
1581    
1582 wakaba 1.18 delete $self->{current_token}->{correct};
1583 wakaba 1.1 !!!emit ($self->{current_token}); # DOCTYPE
1584    
1585     redo A;
1586     } elsif ($self->{next_input_character} == -1) {
1587 wakaba 1.3 !!!parse-error (type => 'unclosed DOCTYPE');
1588 wakaba 1.1 $self->{state} = 'data';
1589     ## reconsume
1590    
1591 wakaba 1.18 delete $self->{current_token}->{correct};
1592 wakaba 1.1 !!!emit ($self->{current_token}); # DOCTYPE
1593    
1594     redo A;
1595     } else {
1596     ## Stay in the state
1597     !!!next-input-character;
1598     redo A;
1599     }
1600     } else {
1601     die "$0: $self->{state}: Unknown state";
1602     }
1603     } # A
1604    
1605     die "$0: _get_next_token: unexpected case";
1606     } # _get_next_token
1607    
1608 wakaba 1.26 sub _tokenize_attempt_to_consume_an_entity ($$) {
1609     my ($self, $in_attr) = @_;
1610 wakaba 1.20
1611     if ({
1612     0x0009 => 1, 0x000A => 1, 0x000B => 1, 0x000C => 1, # HT, LF, VT, FF,
1613     0x0020 => 1, 0x003C => 1, 0x0026 => 1, -1 => 1, # SP, <, & # 0x000D # CR
1614     }->{$self->{next_input_character}}) {
1615     ## Don't consume
1616     ## No error
1617     return undef;
1618     } elsif ($self->{next_input_character} == 0x0023) { # #
1619 wakaba 1.1 !!!next-input-character;
1620     if ($self->{next_input_character} == 0x0078 or # x
1621     $self->{next_input_character} == 0x0058) { # X
1622 wakaba 1.26 my $code;
1623 wakaba 1.1 X: {
1624     my $x_char = $self->{next_input_character};
1625     !!!next-input-character;
1626     if (0x0030 <= $self->{next_input_character} and
1627     $self->{next_input_character} <= 0x0039) { # 0..9
1628 wakaba 1.26 $code ||= 0;
1629     $code *= 0x10;
1630     $code += $self->{next_input_character} - 0x0030;
1631 wakaba 1.1 redo X;
1632     } elsif (0x0061 <= $self->{next_input_character} and
1633     $self->{next_input_character} <= 0x0066) { # a..f
1634 wakaba 1.26 $code ||= 0;
1635     $code *= 0x10;
1636     $code += $self->{next_input_character} - 0x0060 + 9;
1637 wakaba 1.1 redo X;
1638     } elsif (0x0041 <= $self->{next_input_character} and
1639     $self->{next_input_character} <= 0x0046) { # A..F
1640 wakaba 1.26 $code ||= 0;
1641     $code *= 0x10;
1642     $code += $self->{next_input_character} - 0x0040 + 9;
1643 wakaba 1.1 redo X;
1644 wakaba 1.26 } elsif (not defined $code) { # no hexadecimal digit
1645 wakaba 1.3 !!!parse-error (type => 'bare hcro');
1646 wakaba 1.1 $self->{next_input_character} = 0x0023; # #
1647     !!!back-next-input-character ($x_char);
1648     return undef;
1649     } elsif ($self->{next_input_character} == 0x003B) { # ;
1650     !!!next-input-character;
1651     } else {
1652 wakaba 1.3 !!!parse-error (type => 'no refc');
1653 wakaba 1.1 }
1654    
1655 wakaba 1.26 if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
1656     !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
1657     $code = 0xFFFD;
1658     } elsif ($code > 0x10FFFF) {
1659     !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
1660     $code = 0xFFFD;
1661     } elsif ($code == 0x000D) {
1662     !!!parse-error (type => 'CR character reference');
1663     $code = 0x000A;
1664     } elsif (0x80 <= $code and $code <= 0x9F) {
1665 wakaba 1.30 !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
1666 wakaba 1.26 $code = $c1_entity_char->{$code};
1667 wakaba 1.1 }
1668    
1669 wakaba 1.26 return {type => 'character', data => chr $code};
1670 wakaba 1.1 } # X
1671     } elsif (0x0030 <= $self->{next_input_character} and
1672     $self->{next_input_character} <= 0x0039) { # 0..9
1673     my $code = $self->{next_input_character} - 0x0030;
1674     !!!next-input-character;
1675    
1676     while (0x0030 <= $self->{next_input_character} and
1677     $self->{next_input_character} <= 0x0039) { # 0..9
1678     $code *= 10;
1679     $code += $self->{next_input_character} - 0x0030;
1680    
1681     !!!next-input-character;
1682     }
1683    
1684     if ($self->{next_input_character} == 0x003B) { # ;
1685     !!!next-input-character;
1686     } else {
1687 wakaba 1.3 !!!parse-error (type => 'no refc');
1688 wakaba 1.1 }
1689    
1690 wakaba 1.26 if ($code == 0 or (0xD800 <= $code and $code <= 0xDFFF)) {
1691     !!!parse-error (type => sprintf 'invalid character reference:U+%04X', $code);
1692     $code = 0xFFFD;
1693     } elsif ($code > 0x10FFFF) {
1694     !!!parse-error (type => sprintf 'invalid character reference:U-%08X', $code);
1695     $code = 0xFFFD;
1696     } elsif ($code == 0x000D) {
1697     !!!parse-error (type => 'CR character reference');
1698     $code = 0x000A;
1699 wakaba 1.4 } elsif (0x80 <= $code and $code <= 0x9F) {
1700 wakaba 1.30 !!!parse-error (type => sprintf 'C1 character reference:U+%04X', $code);
1701 wakaba 1.4 $code = $c1_entity_char->{$code};
1702 wakaba 1.1 }
1703    
1704     return {type => 'character', data => chr $code};
1705     } else {
1706 wakaba 1.3 !!!parse-error (type => 'bare nero');
1707 wakaba 1.1 !!!back-next-input-character ($self->{next_input_character});
1708     $self->{next_input_character} = 0x0023; # #
1709     return undef;
1710     }
1711     } elsif ((0x0041 <= $self->{next_input_character} and
1712     $self->{next_input_character} <= 0x005A) or
1713     (0x0061 <= $self->{next_input_character} and
1714     $self->{next_input_character} <= 0x007A)) {
1715     my $entity_name = chr $self->{next_input_character};
1716     !!!next-input-character;
1717    
1718     my $value = $entity_name;
1719     my $match;
1720 wakaba 1.16 require Whatpm::_NamedEntityList;
1721     our $EntityChar;
1722 wakaba 1.1
1723     while (length $entity_name < 10 and
1724     ## NOTE: Some number greater than the maximum length of entity name
1725 wakaba 1.16 ((0x0041 <= $self->{next_input_character} and # a
1726     $self->{next_input_character} <= 0x005A) or # x
1727     (0x0061 <= $self->{next_input_character} and # a
1728     $self->{next_input_character} <= 0x007A) or # z
1729     (0x0030 <= $self->{next_input_character} and # 0
1730     $self->{next_input_character} <= 0x0039) or # 9
1731     $self->{next_input_character} == 0x003B)) { # ;
1732 wakaba 1.1 $entity_name .= chr $self->{next_input_character};
1733 wakaba 1.16 if (defined $EntityChar->{$entity_name}) {
1734     if ($self->{next_input_character} == 0x003B) { # ;
1735 wakaba 1.26 $value = $EntityChar->{$entity_name};
1736 wakaba 1.16 $match = 1;
1737     !!!next-input-character;
1738     last;
1739 wakaba 1.26 } elsif (not $in_attr) {
1740     $value = $EntityChar->{$entity_name};
1741     $match = -1;
1742 wakaba 1.16 } else {
1743 wakaba 1.26 $value .= chr $self->{next_input_character};
1744 wakaba 1.16 }
1745 wakaba 1.1 } else {
1746     $value .= chr $self->{next_input_character};
1747     }
1748     !!!next-input-character;
1749     }
1750    
1751 wakaba 1.16 if ($match > 0) {
1752     return {type => 'character', data => $value};
1753     } elsif ($match < 0) {
1754 wakaba 1.30 !!!parse-error (type => 'no refc');
1755 wakaba 1.1 return {type => 'character', data => $value};
1756     } else {
1757 wakaba 1.3 !!!parse-error (type => 'bare ero');
1758 wakaba 1.1 ## NOTE: No characters are consumed in the spec.
1759 wakaba 1.26 return {type => 'character', data => '&'.$value};
1760 wakaba 1.1 }
1761     } else {
1762     ## no characters are consumed
1763 wakaba 1.3 !!!parse-error (type => 'bare ero');
1764 wakaba 1.1 return undef;
1765     }
1766     } # _tokenize_attempt_to_consume_an_entity
1767    
1768     sub _initialize_tree_constructor ($) {
1769     my $self = shift;
1770     ## NOTE: $self->{document} MUST be specified before this method is called
1771     $self->{document}->strict_error_checking (0);
1772     ## TODO: Turn mutation events off # MUST
1773     ## TODO: Turn loose Document option (manakai extension) on
1774 wakaba 1.18 $self->{document}->manakai_is_html (1); # MUST
1775 wakaba 1.1 } # _initialize_tree_constructor
1776    
1777     sub _terminate_tree_constructor ($) {
1778     my $self = shift;
1779     $self->{document}->strict_error_checking (1);
1780     ## TODO: Turn mutation events on
1781     } # _terminate_tree_constructor
1782    
1783     ## ISSUE: Should append_child (for example) in script executed in tree construction stage fire mutation events?
1784    
1785 wakaba 1.3 { # tree construction stage
1786     my $token;
1787    
1788 wakaba 1.1 sub _construct_tree ($) {
1789     my ($self) = @_;
1790    
1791     ## When an interactive UA render the $self->{document} available
1792     ## to the user, or when it begin accepting user input, are
1793     ## not defined.
1794    
1795     ## Append a character: collect it and all subsequent consecutive
1796     ## characters and insert one Text node whose data is concatenation
1797     ## of all those characters. # MUST
1798    
1799     !!!next-token;
1800    
1801 wakaba 1.3 $self->{insertion_mode} = 'before head';
1802     undef $self->{form_element};
1803     undef $self->{head_element};
1804     $self->{open_elements} = [];
1805     undef $self->{inner_html_node};
1806    
1807     $self->_tree_construction_initial; # MUST
1808     $self->_tree_construction_root_element;
1809     $self->_tree_construction_main;
1810     } # _construct_tree
1811    
1812     sub _tree_construction_initial ($) {
1813     my $self = shift;
1814 wakaba 1.18 INITIAL: {
1815     if ($token->{type} eq 'DOCTYPE') {
1816     ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
1817     ## error, switch to a conformance checking mode for another
1818     ## language.
1819     my $doctype_name = $token->{name};
1820     $doctype_name = '' unless defined $doctype_name;
1821     $doctype_name =~ tr/a-z/A-Z/;
1822     if (not defined $token->{name} or # <!DOCTYPE>
1823     defined $token->{public_identifier} or
1824     defined $token->{system_identifier}) {
1825     !!!parse-error (type => 'not HTML5');
1826     } elsif ($doctype_name ne 'HTML') {
1827     ## ISSUE: ASCII case-insensitive? (in fact it does not matter)
1828     !!!parse-error (type => 'not HTML5');
1829     }
1830    
1831     my $doctype = $self->{document}->create_document_type_definition
1832     ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
1833     $doctype->public_id ($token->{public_identifier})
1834     if defined $token->{public_identifier};
1835     $doctype->system_id ($token->{system_identifier})
1836     if defined $token->{system_identifier};
1837     ## NOTE: Other DocumentType attributes are null or empty lists.
1838     ## ISSUE: internalSubset = null??
1839     $self->{document}->append_child ($doctype);
1840    
1841     if (not $token->{correct} or $doctype_name ne 'HTML') {
1842     $self->{document}->manakai_compat_mode ('quirks');
1843     } elsif (defined $token->{public_identifier}) {
1844     my $pubid = $token->{public_identifier};
1845     $pubid =~ tr/a-z/A-z/;
1846     if ({
1847     "+//SILMARIL//DTD HTML PRO V0R11 19970101//EN" => 1,
1848     "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,
1849     "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//EN" => 1,
1850     "-//IETF//DTD HTML 2.0 LEVEL 1//EN" => 1,
1851     "-//IETF//DTD HTML 2.0 LEVEL 2//EN" => 1,
1852     "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//EN" => 1,
1853     "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//EN" => 1,
1854     "-//IETF//DTD HTML 2.0 STRICT//EN" => 1,
1855     "-//IETF//DTD HTML 2.0//EN" => 1,
1856     "-//IETF//DTD HTML 2.1E//EN" => 1,
1857     "-//IETF//DTD HTML 3.0//EN" => 1,
1858     "-//IETF//DTD HTML 3.0//EN//" => 1,
1859     "-//IETF//DTD HTML 3.2 FINAL//EN" => 1,
1860     "-//IETF//DTD HTML 3.2//EN" => 1,
1861     "-//IETF//DTD HTML 3//EN" => 1,
1862     "-//IETF//DTD HTML LEVEL 0//EN" => 1,
1863     "-//IETF//DTD HTML LEVEL 0//EN//2.0" => 1,
1864     "-//IETF//DTD HTML LEVEL 1//EN" => 1,
1865     "-//IETF//DTD HTML LEVEL 1//EN//2.0" => 1,
1866     "-//IETF//DTD HTML LEVEL 2//EN" => 1,
1867     "-//IETF//DTD HTML LEVEL 2//EN//2.0" => 1,
1868     "-//IETF//DTD HTML LEVEL 3//EN" => 1,
1869     "-//IETF//DTD HTML LEVEL 3//EN//3.0" => 1,
1870     "-//IETF//DTD HTML STRICT LEVEL 0//EN" => 1,
1871     "-//IETF//DTD HTML STRICT LEVEL 0//EN//2.0" => 1,
1872     "-//IETF//DTD HTML STRICT LEVEL 1//EN" => 1,
1873     "-//IETF//DTD HTML STRICT LEVEL 1//EN//2.0" => 1,
1874     "-//IETF//DTD HTML STRICT LEVEL 2//EN" => 1,
1875     "-//IETF//DTD HTML STRICT LEVEL 2//EN//2.0" => 1,
1876     "-//IETF//DTD HTML STRICT LEVEL 3//EN" => 1,
1877     "-//IETF//DTD HTML STRICT LEVEL 3//EN//3.0" => 1,
1878     "-//IETF//DTD HTML STRICT//EN" => 1,
1879     "-//IETF//DTD HTML STRICT//EN//2.0" => 1,
1880     "-//IETF//DTD HTML STRICT//EN//3.0" => 1,
1881     "-//IETF//DTD HTML//EN" => 1,
1882     "-//IETF//DTD HTML//EN//2.0" => 1,
1883     "-//IETF//DTD HTML//EN//3.0" => 1,
1884     "-//METRIUS//DTD METRIUS PRESENTATIONAL//EN" => 1,
1885     "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//EN" => 1,
1886     "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//EN" => 1,
1887     "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//EN" => 1,
1888     "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//EN" => 1,
1889     "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//EN" => 1,
1890     "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//EN" => 1,
1891     "-//NETSCAPE COMM. CORP.//DTD HTML//EN" => 1,
1892     "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//EN" => 1,
1893     "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//EN" => 1,
1894     "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//EN" => 1,
1895     "-//SPYGLASS//DTD HTML 2.0 EXTENDED//EN" => 1,
1896     "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//EN" => 1,
1897     "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//EN" => 1,
1898     "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//EN" => 1,
1899     "-//W3C//DTD HTML 3 1995-03-24//EN" => 1,
1900     "-//W3C//DTD HTML 3.2 DRAFT//EN" => 1,
1901     "-//W3C//DTD HTML 3.2 FINAL//EN" => 1,
1902     "-//W3C//DTD HTML 3.2//EN" => 1,
1903     "-//W3C//DTD HTML 3.2S DRAFT//EN" => 1,
1904     "-//W3C//DTD HTML 4.0 FRAMESET//EN" => 1,
1905     "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN" => 1,
1906     "-//W3C//DTD HTML EXPERIMETNAL 19960712//EN" => 1,
1907     "-//W3C//DTD HTML EXPERIMENTAL 970421//EN" => 1,
1908     "-//W3C//DTD W3 HTML//EN" => 1,
1909     "-//W3O//DTD W3 HTML 3.0//EN" => 1,
1910     "-//W3O//DTD W3 HTML 3.0//EN//" => 1,
1911     "-//W3O//DTD W3 HTML STRICT 3.0//EN//" => 1,
1912     "-//WEBTECHS//DTD MOZILLA HTML 2.0//EN" => 1,
1913     "-//WEBTECHS//DTD MOZILLA HTML//EN" => 1,
1914     "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" => 1,
1915     "HTML" => 1,
1916     }->{$pubid}) {
1917     $self->{document}->manakai_compat_mode ('quirks');
1918     } elsif ($pubid eq "-//W3C//DTD HTML 4.01 FRAMESET//EN" or
1919     $pubid eq "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN") {
1920     if (defined $token->{system_identifier}) {
1921     $self->{document}->manakai_compat_mode ('quirks');
1922     } else {
1923     $self->{document}->manakai_compat_mode ('limited quirks');
1924 wakaba 1.3 }
1925 wakaba 1.18 } elsif ($pubid eq "-//W3C//DTD XHTML 1.0 Frameset//EN" or
1926     $pubid eq "-//W3C//DTD XHTML 1.0 Transitional//EN") {
1927     $self->{document}->manakai_compat_mode ('limited quirks');
1928     }
1929     }
1930     if (defined $token->{system_identifier}) {
1931     my $sysid = $token->{system_identifier};
1932     $sysid =~ tr/A-Z/a-z/;
1933     if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
1934     $self->{document}->manakai_compat_mode ('quirks');
1935     }
1936     }
1937    
1938     ## Go to the root element phase.
1939     !!!next-token;
1940     return;
1941     } elsif ({
1942     'start tag' => 1,
1943     'end tag' => 1,
1944     'end-of-file' => 1,
1945     }->{$token->{type}}) {
1946     !!!parse-error (type => 'no DOCTYPE');
1947     $self->{document}->manakai_compat_mode ('quirks');
1948     ## Go to the root element phase
1949     ## reprocess
1950     return;
1951     } elsif ($token->{type} eq 'character') {
1952     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
1953     ## Ignore the token
1954 wakaba 1.26
1955 wakaba 1.18 unless (length $token->{data}) {
1956     ## Stay in the phase
1957     !!!next-token;
1958     redo INITIAL;
1959 wakaba 1.3 }
1960     }
1961 wakaba 1.18
1962     !!!parse-error (type => 'no DOCTYPE');
1963     $self->{document}->manakai_compat_mode ('quirks');
1964     ## Go to the root element phase
1965     ## reprocess
1966     return;
1967     } elsif ($token->{type} eq 'comment') {
1968     my $comment = $self->{document}->create_comment ($token->{data});
1969     $self->{document}->append_child ($comment);
1970    
1971     ## Stay in the phase.
1972     !!!next-token;
1973     redo INITIAL;
1974     } else {
1975     die "$0: $token->{type}: Unknown token";
1976     }
1977     } # INITIAL
1978 wakaba 1.3 } # _tree_construction_initial
1979    
1980     sub _tree_construction_root_element ($) {
1981     my $self = shift;
1982    
1983     B: {
1984     if ($token->{type} eq 'DOCTYPE') {
1985     !!!parse-error (type => 'in html:#DOCTYPE');
1986     ## Ignore the token
1987     ## Stay in the phase
1988     !!!next-token;
1989     redo B;
1990     } elsif ($token->{type} eq 'comment') {
1991     my $comment = $self->{document}->create_comment ($token->{data});
1992     $self->{document}->append_child ($comment);
1993     ## Stay in the phase
1994     !!!next-token;
1995     redo B;
1996     } elsif ($token->{type} eq 'character') {
1997 wakaba 1.26 if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) { # \x0D
1998     ## Ignore the token.
1999    
2000 wakaba 1.3 unless (length $token->{data}) {
2001     ## Stay in the phase
2002     !!!next-token;
2003     redo B;
2004     }
2005     }
2006     #
2007     } elsif ({
2008     'start tag' => 1,
2009     'end tag' => 1,
2010     'end-of-file' => 1,
2011     }->{$token->{type}}) {
2012     ## ISSUE: There is an issue in the spec
2013     #
2014     } else {
2015     die "$0: $token->{type}: Unknown token";
2016     }
2017     my $root_element; !!!create-element ($root_element, 'html');
2018     $self->{document}->append_child ($root_element);
2019     push @{$self->{open_elements}}, [$root_element, 'html'];
2020     #$phase = 'main';
2021     ## reprocess
2022     #redo B;
2023     return;
2024     } # B
2025     } # _tree_construction_root_element
2026    
2027     sub _reset_insertion_mode ($) {
2028     my $self = shift;
2029    
2030     ## Step 1
2031     my $last;
2032    
2033     ## Step 2
2034     my $i = -1;
2035     my $node = $self->{open_elements}->[$i];
2036    
2037     ## Step 3
2038     S3: {
2039 wakaba 1.29 ## ISSUE: Oops! "If node is the first node in the stack of open
2040     ## elements, then set last to true. If the context element of the
2041     ## HTML fragment parsing algorithm is neither a td element nor a
2042     ## th element, then set node to the context element. (fragment case)":
2043     ## The second "if" is in the scope of the first "if"!?
2044     if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
2045     $last = 1;
2046     if (defined $self->{inner_html_node}) {
2047     if ($self->{inner_html_node}->[1] eq 'td' or
2048     $self->{inner_html_node}->[1] eq 'th') {
2049     #
2050     } else {
2051     $node = $self->{inner_html_node};
2052     }
2053 wakaba 1.3 }
2054     }
2055    
2056     ## Step 4..13
2057     my $new_mode = {
2058     select => 'in select',
2059     td => 'in cell',
2060     th => 'in cell',
2061     tr => 'in row',
2062     tbody => 'in table body',
2063     thead => 'in table head',
2064     tfoot => 'in table foot',
2065     caption => 'in caption',
2066     colgroup => 'in column group',
2067     table => 'in table',
2068     head => 'in body', # not in head!
2069     body => 'in body',
2070     frameset => 'in frameset',
2071     }->{$node->[1]};
2072     $self->{insertion_mode} = $new_mode and return if defined $new_mode;
2073    
2074     ## Step 14
2075     if ($node->[1] eq 'html') {
2076     unless (defined $self->{head_element}) {
2077     $self->{insertion_mode} = 'before head';
2078     } else {
2079     $self->{insertion_mode} = 'after head';
2080     }
2081     return;
2082     }
2083    
2084     ## Step 15
2085     $self->{insertion_mode} = 'in body' and return if $last;
2086    
2087     ## Step 16
2088     $i--;
2089     $node = $self->{open_elements}->[$i];
2090    
2091     ## Step 17
2092     redo S3;
2093     } # S3
2094     } # _reset_insertion_mode
2095    
2096     sub _tree_construction_main ($) {
2097     my $self = shift;
2098    
2099     my $phase = 'main';
2100 wakaba 1.1
2101     my $active_formatting_elements = [];
2102    
2103     my $reconstruct_active_formatting_elements = sub { # MUST
2104     my $insert = shift;
2105    
2106     ## Step 1
2107     return unless @$active_formatting_elements;
2108    
2109     ## Step 3
2110     my $i = -1;
2111     my $entry = $active_formatting_elements->[$i];
2112    
2113     ## Step 2
2114     return if $entry->[0] eq '#marker';
2115 wakaba 1.3 for (@{$self->{open_elements}}) {
2116 wakaba 1.1 if ($entry->[0] eq $_->[0]) {
2117     return;
2118     }
2119     }
2120    
2121     S4: {
2122     ## Step 4
2123     last S4 if $active_formatting_elements->[0]->[0] eq $entry->[0];
2124    
2125     ## Step 5
2126     $i--;
2127     $entry = $active_formatting_elements->[$i];
2128    
2129     ## Step 6
2130     if ($entry->[0] eq '#marker') {
2131     #
2132     } else {
2133     my $in_open_elements;
2134 wakaba 1.3 OE: for (@{$self->{open_elements}}) {
2135 wakaba 1.1 if ($entry->[0] eq $_->[0]) {
2136     $in_open_elements = 1;
2137     last OE;
2138     }
2139     }
2140     if ($in_open_elements) {
2141     #
2142     } else {
2143     redo S4;
2144     }
2145     }
2146    
2147     ## Step 7
2148     $i++;
2149     $entry = $active_formatting_elements->[$i];
2150     } # S4
2151    
2152     S7: {
2153     ## Step 8
2154     my $clone = [$entry->[0]->clone_node (0), $entry->[1]];
2155    
2156     ## Step 9
2157     $insert->($clone->[0]);
2158 wakaba 1.3 push @{$self->{open_elements}}, $clone;
2159 wakaba 1.1
2160     ## Step 10
2161 wakaba 1.3 $active_formatting_elements->[$i] = $self->{open_elements}->[-1];
2162 wakaba 1.1
2163     ## Step 11
2164     unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
2165     ## Step 7'
2166     $i++;
2167     $entry = $active_formatting_elements->[$i];
2168    
2169     redo S7;
2170     }
2171     } # S7
2172     }; # $reconstruct_active_formatting_elements
2173    
2174     my $clear_up_to_marker = sub {
2175     for (reverse 0..$#$active_formatting_elements) {
2176     if ($active_formatting_elements->[$_]->[0] eq '#marker') {
2177     splice @$active_formatting_elements, $_;
2178     return;
2179     }
2180     }
2181     }; # $clear_up_to_marker
2182    
2183 wakaba 1.25 my $parse_rcdata = sub ($$) {
2184     my ($content_model_flag, $insert) = @_;
2185    
2186     ## Step 1
2187     my $start_tag_name = $token->{tag_name};
2188     my $el;
2189     !!!create-element ($el, $start_tag_name, $token->{attributes});
2190    
2191     ## Step 2
2192     $insert->($el); # /context node/->append_child ($el)
2193    
2194     ## Step 3
2195     $self->{content_model_flag} = $content_model_flag; # CDATA or RCDATA
2196 wakaba 1.13 delete $self->{escape}; # MUST
2197 wakaba 1.25
2198     ## Step 4
2199 wakaba 1.1 my $text = '';
2200     !!!next-token;
2201 wakaba 1.25 while ($token->{type} eq 'character') { # or until stop tokenizing
2202 wakaba 1.1 $text .= $token->{data};
2203     !!!next-token;
2204 wakaba 1.25 }
2205    
2206     ## Step 5
2207 wakaba 1.1 if (length $text) {
2208 wakaba 1.25 my $text = $self->{document}->create_text_node ($text);
2209     $el->append_child ($text);
2210 wakaba 1.1 }
2211 wakaba 1.25
2212     ## Step 6
2213 wakaba 1.1 $self->{content_model_flag} = 'PCDATA';
2214 wakaba 1.25
2215     ## Step 7
2216     if ($token->{type} eq 'end tag' and $token->{tag_name} eq $start_tag_name) {
2217 wakaba 1.1 ## Ignore the token
2218     } else {
2219 wakaba 1.25 !!!parse-error (type => 'in '.$content_model_flag.':#'.$token->{type});
2220 wakaba 1.1 }
2221     !!!next-token;
2222 wakaba 1.25 }; # $parse_rcdata
2223 wakaba 1.1
2224 wakaba 1.25 my $script_start_tag = sub ($) {
2225     my $insert = $_[0];
2226 wakaba 1.1 my $script_el;
2227     !!!create-element ($script_el, 'script', $token->{attributes});
2228     ## TODO: mark as "parser-inserted"
2229    
2230     $self->{content_model_flag} = 'CDATA';
2231 wakaba 1.13 delete $self->{escape}; # MUST
2232 wakaba 1.1
2233     my $text = '';
2234     !!!next-token;
2235     while ($token->{type} eq 'character') {
2236     $text .= $token->{data};
2237     !!!next-token;
2238     } # stop if non-character token or tokenizer stops tokenising
2239     if (length $text) {
2240     $script_el->manakai_append_text ($text);
2241     }
2242    
2243     $self->{content_model_flag} = 'PCDATA';
2244    
2245     if ($token->{type} eq 'end tag' and
2246     $token->{tag_name} eq 'script') {
2247     ## Ignore the token
2248     } else {
2249 wakaba 1.3 !!!parse-error (type => 'in CDATA:#'.$token->{type});
2250 wakaba 1.1 ## ISSUE: And ignore?
2251     ## TODO: mark as "already executed"
2252     }
2253    
2254 wakaba 1.3 if (defined $self->{inner_html_node}) {
2255     ## TODO: mark as "already executed"
2256     } else {
2257 wakaba 1.1 ## TODO: $old_insertion_point = current insertion point
2258     ## TODO: insertion point = just before the next input character
2259 wakaba 1.25
2260     $insert->($script_el);
2261 wakaba 1.1
2262     ## TODO: insertion point = $old_insertion_point (might be "undefined")
2263    
2264     ## TODO: if there is a script that will execute as soon as the parser resume, then...
2265     }
2266    
2267     !!!next-token;
2268     }; # $script_start_tag
2269    
2270     my $formatting_end_tag = sub {
2271     my $tag_name = shift;
2272    
2273     FET: {
2274     ## Step 1
2275     my $formatting_element;
2276     my $formatting_element_i_in_active;
2277     AFE: for (reverse 0..$#$active_formatting_elements) {
2278     if ($active_formatting_elements->[$_]->[1] eq $tag_name) {
2279     $formatting_element = $active_formatting_elements->[$_];
2280     $formatting_element_i_in_active = $_;
2281     last AFE;
2282     } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {
2283     last AFE;
2284     }
2285     } # AFE
2286     unless (defined $formatting_element) {
2287 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$tag_name);
2288 wakaba 1.1 ## Ignore the token
2289     !!!next-token;
2290     return;
2291     }
2292     ## has an element in scope
2293     my $in_scope = 1;
2294     my $formatting_element_i_in_open;
2295 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2296     my $node = $self->{open_elements}->[$_];
2297 wakaba 1.1 if ($node->[0] eq $formatting_element->[0]) {
2298     if ($in_scope) {
2299     $formatting_element_i_in_open = $_;
2300     last INSCOPE;
2301     } else { # in open elements but not in scope
2302 wakaba 1.4 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
2303 wakaba 1.1 ## Ignore the token
2304     !!!next-token;
2305     return;
2306     }
2307     } elsif ({
2308     table => 1, caption => 1, td => 1, th => 1,
2309     button => 1, marquee => 1, object => 1, html => 1,
2310     }->{$node->[1]}) {
2311     $in_scope = 0;
2312     }
2313     } # INSCOPE
2314     unless (defined $formatting_element_i_in_open) {
2315 wakaba 1.4 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
2316 wakaba 1.1 pop @$active_formatting_elements; # $formatting_element
2317     !!!next-token; ## TODO: ok?
2318     return;
2319     }
2320 wakaba 1.3 if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
2321 wakaba 1.4 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
2322 wakaba 1.1 }
2323    
2324     ## Step 2
2325     my $furthest_block;
2326     my $furthest_block_i_in_open;
2327 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
2328     my $node = $self->{open_elements}->[$_];
2329 wakaba 1.1 if (not $formatting_category->{$node->[1]} and
2330     #not $phrasing_category->{$node->[1]} and
2331     ($special_category->{$node->[1]} or
2332     $scoping_category->{$node->[1]})) {
2333     $furthest_block = $node;
2334     $furthest_block_i_in_open = $_;
2335     } elsif ($node->[0] eq $formatting_element->[0]) {
2336     last OE;
2337     }
2338     } # OE
2339    
2340     ## Step 3
2341     unless (defined $furthest_block) { # MUST
2342 wakaba 1.3 splice @{$self->{open_elements}}, $formatting_element_i_in_open;
2343 wakaba 1.1 splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
2344     !!!next-token;
2345     return;
2346     }
2347    
2348     ## Step 4
2349 wakaba 1.3 my $common_ancestor_node = $self->{open_elements}->[$formatting_element_i_in_open - 1];
2350 wakaba 1.1
2351     ## Step 5
2352     my $furthest_block_parent = $furthest_block->[0]->parent_node;
2353     if (defined $furthest_block_parent) {
2354     $furthest_block_parent->remove_child ($furthest_block->[0]);
2355     }
2356    
2357     ## Step 6
2358     my $bookmark_prev_el
2359     = $active_formatting_elements->[$formatting_element_i_in_active - 1]
2360     ->[0];
2361    
2362     ## Step 7
2363     my $node = $furthest_block;
2364     my $node_i_in_open = $furthest_block_i_in_open;
2365     my $last_node = $furthest_block;
2366     S7: {
2367     ## Step 1
2368     $node_i_in_open--;
2369 wakaba 1.3 $node = $self->{open_elements}->[$node_i_in_open];
2370 wakaba 1.1
2371     ## Step 2
2372     my $node_i_in_active;
2373     S7S2: {
2374     for (reverse 0..$#$active_formatting_elements) {
2375     if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
2376     $node_i_in_active = $_;
2377     last S7S2;
2378     }
2379     }
2380 wakaba 1.3 splice @{$self->{open_elements}}, $node_i_in_open, 1;
2381 wakaba 1.1 redo S7;
2382     } # S7S2
2383    
2384     ## Step 3
2385     last S7 if $node->[0] eq $formatting_element->[0];
2386    
2387     ## Step 4
2388     if ($last_node->[0] eq $furthest_block->[0]) {
2389     $bookmark_prev_el = $node->[0];
2390     }
2391    
2392     ## Step 5
2393     if ($node->[0]->has_child_nodes ()) {
2394     my $clone = [$node->[0]->clone_node (0), $node->[1]];
2395     $active_formatting_elements->[$node_i_in_active] = $clone;
2396 wakaba 1.3 $self->{open_elements}->[$node_i_in_open] = $clone;
2397 wakaba 1.1 $node = $clone;
2398     }
2399    
2400     ## Step 6
2401     $node->[0]->append_child ($last_node->[0]);
2402    
2403     ## Step 7
2404     $last_node = $node;
2405    
2406     ## Step 8
2407     redo S7;
2408     } # S7
2409    
2410     ## Step 8
2411     $common_ancestor_node->[0]->append_child ($last_node->[0]);
2412    
2413     ## Step 9
2414     my $clone = [$formatting_element->[0]->clone_node (0),
2415     $formatting_element->[1]];
2416    
2417     ## Step 10
2418     my @cn = @{$furthest_block->[0]->child_nodes};
2419     $clone->[0]->append_child ($_) for @cn;
2420    
2421     ## Step 11
2422     $furthest_block->[0]->append_child ($clone->[0]);
2423    
2424     ## Step 12
2425     my $i;
2426     AFE: for (reverse 0..$#$active_formatting_elements) {
2427     if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
2428     splice @$active_formatting_elements, $_, 1;
2429     $i-- and last AFE if defined $i;
2430     } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
2431     $i = $_;
2432     }
2433     } # AFE
2434     splice @$active_formatting_elements, $i + 1, 0, $clone;
2435    
2436     ## Step 13
2437     undef $i;
2438 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
2439     if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
2440     splice @{$self->{open_elements}}, $_, 1;
2441 wakaba 1.1 $i-- and last OE if defined $i;
2442 wakaba 1.3 } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
2443 wakaba 1.1 $i = $_;
2444     }
2445     } # OE
2446 wakaba 1.3 splice @{$self->{open_elements}}, $i + 1, 1, $clone;
2447 wakaba 1.1
2448     ## Step 14
2449     redo FET;
2450     } # FET
2451     }; # $formatting_end_tag
2452    
2453     my $insert_to_current = sub {
2454 wakaba 1.25 $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
2455 wakaba 1.1 }; # $insert_to_current
2456    
2457     my $insert_to_foster = sub {
2458     my $child = shift;
2459     if ({
2460     table => 1, tbody => 1, tfoot => 1,
2461     thead => 1, tr => 1,
2462 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
2463 wakaba 1.1 # MUST
2464     my $foster_parent_element;
2465     my $next_sibling;
2466 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
2467     if ($self->{open_elements}->[$_]->[1] eq 'table') {
2468     my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
2469 wakaba 1.1 if (defined $parent and $parent->node_type == 1) {
2470     $foster_parent_element = $parent;
2471 wakaba 1.3 $next_sibling = $self->{open_elements}->[$_]->[0];
2472 wakaba 1.1 } else {
2473     $foster_parent_element
2474 wakaba 1.3 = $self->{open_elements}->[$_ - 1]->[0];
2475 wakaba 1.1 }
2476     last OE;
2477     }
2478     } # OE
2479 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[0]->[0]
2480 wakaba 1.1 unless defined $foster_parent_element;
2481     $foster_parent_element->insert_before
2482     ($child, $next_sibling);
2483     } else {
2484 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($child);
2485 wakaba 1.1 }
2486     }; # $insert_to_foster
2487    
2488     my $in_body = sub {
2489     my $insert = shift;
2490     if ($token->{type} eq 'start tag') {
2491     if ($token->{tag_name} eq 'script') {
2492 wakaba 1.25 ## NOTE: This is an "as if in head" code clone
2493     $script_start_tag->($insert);
2494 wakaba 1.1 return;
2495     } elsif ($token->{tag_name} eq 'style') {
2496 wakaba 1.25 ## NOTE: This is an "as if in head" code clone
2497     $parse_rcdata->('CDATA', $insert);
2498 wakaba 1.1 return;
2499     } elsif ({
2500     base => 1, link => 1, meta => 1,
2501     }->{$token->{tag_name}}) {
2502 wakaba 1.25 ## NOTE: This is an "as if in head" code clone, only "-t" differs
2503     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2504     pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
2505 wakaba 1.1 !!!next-token;
2506 wakaba 1.26 ## TODO: Extracting |charset| from |meta|.
2507 wakaba 1.1 return;
2508     } elsif ($token->{tag_name} eq 'title') {
2509 wakaba 1.3 !!!parse-error (type => 'in body:title');
2510 wakaba 1.25 ## NOTE: This is an "as if in head" code clone
2511 wakaba 1.31 $parse_rcdata->('RCDATA', sub {
2512     if (defined $self->{head_element}) {
2513     $self->{head_element}->append_child ($_[0]);
2514     } else {
2515     $insert->($_[0]);
2516     }
2517     });
2518 wakaba 1.1 return;
2519     } elsif ($token->{tag_name} eq 'body') {
2520 wakaba 1.3 !!!parse-error (type => 'in body:body');
2521 wakaba 1.1
2522 wakaba 1.3 if (@{$self->{open_elements}} == 1 or
2523     $self->{open_elements}->[1]->[1] ne 'body') {
2524 wakaba 1.1 ## Ignore the token
2525     } else {
2526 wakaba 1.3 my $body_el = $self->{open_elements}->[1]->[0];
2527 wakaba 1.1 for my $attr_name (keys %{$token->{attributes}}) {
2528     unless ($body_el->has_attribute_ns (undef, $attr_name)) {
2529     $body_el->set_attribute_ns
2530     (undef, [undef, $attr_name],
2531     $token->{attributes}->{$attr_name}->{value});
2532     }
2533     }
2534     }
2535     !!!next-token;
2536     return;
2537     } elsif ({
2538     address => 1, blockquote => 1, center => 1, dir => 1,
2539     div => 1, dl => 1, fieldset => 1, listing => 1,
2540     menu => 1, ol => 1, p => 1, ul => 1,
2541     pre => 1,
2542     }->{$token->{tag_name}}) {
2543     ## has a p element in scope
2544 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2545 wakaba 1.1 if ($_->[1] eq 'p') {
2546     !!!back-token;
2547     $token = {type => 'end tag', tag_name => 'p'};
2548     return;
2549     } elsif ({
2550     table => 1, caption => 1, td => 1, th => 1,
2551     button => 1, marquee => 1, object => 1, html => 1,
2552     }->{$_->[1]}) {
2553     last INSCOPE;
2554     }
2555     } # INSCOPE
2556    
2557     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2558     if ($token->{tag_name} eq 'pre') {
2559     !!!next-token;
2560     if ($token->{type} eq 'character') {
2561     $token->{data} =~ s/^\x0A//;
2562     unless (length $token->{data}) {
2563     !!!next-token;
2564     }
2565     }
2566     } else {
2567     !!!next-token;
2568     }
2569     return;
2570     } elsif ($token->{tag_name} eq 'form') {
2571 wakaba 1.3 if (defined $self->{form_element}) {
2572     !!!parse-error (type => 'in form:form');
2573 wakaba 1.1 ## Ignore the token
2574 wakaba 1.7 !!!next-token;
2575     return;
2576 wakaba 1.1 } else {
2577     ## has a p element in scope
2578 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2579 wakaba 1.1 if ($_->[1] eq 'p') {
2580     !!!back-token;
2581     $token = {type => 'end tag', tag_name => 'p'};
2582     return;
2583     } elsif ({
2584     table => 1, caption => 1, td => 1, th => 1,
2585     button => 1, marquee => 1, object => 1, html => 1,
2586     }->{$_->[1]}) {
2587     last INSCOPE;
2588     }
2589     } # INSCOPE
2590    
2591     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2592 wakaba 1.3 $self->{form_element} = $self->{open_elements}->[-1]->[0];
2593 wakaba 1.1 !!!next-token;
2594     return;
2595     }
2596     } elsif ($token->{tag_name} eq 'li') {
2597     ## has a p element in scope
2598 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2599 wakaba 1.1 if ($_->[1] eq 'p') {
2600     !!!back-token;
2601     $token = {type => 'end tag', tag_name => 'p'};
2602     return;
2603     } elsif ({
2604     table => 1, caption => 1, td => 1, th => 1,
2605     button => 1, marquee => 1, object => 1, html => 1,
2606     }->{$_->[1]}) {
2607     last INSCOPE;
2608     }
2609     } # INSCOPE
2610    
2611     ## Step 1
2612     my $i = -1;
2613 wakaba 1.3 my $node = $self->{open_elements}->[$i];
2614 wakaba 1.1 LI: {
2615     ## Step 2
2616     if ($node->[1] eq 'li') {
2617 wakaba 1.8 if ($i != -1) {
2618     !!!parse-error (type => 'end tag missing:'.
2619     $self->{open_elements}->[-1]->[1]);
2620     }
2621 wakaba 1.3 splice @{$self->{open_elements}}, $i;
2622 wakaba 1.1 last LI;
2623     }
2624    
2625     ## Step 3
2626     if (not $formatting_category->{$node->[1]} and
2627     #not $phrasing_category->{$node->[1]} and
2628     ($special_category->{$node->[1]} or
2629     $scoping_category->{$node->[1]}) and
2630     $node->[1] ne 'address' and $node->[1] ne 'div') {
2631     last LI;
2632     }
2633    
2634     ## Step 4
2635     $i--;
2636 wakaba 1.3 $node = $self->{open_elements}->[$i];
2637 wakaba 1.1 redo LI;
2638     } # LI
2639    
2640     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2641     !!!next-token;
2642     return;
2643     } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {
2644     ## has a p element in scope
2645 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2646 wakaba 1.1 if ($_->[1] eq 'p') {
2647     !!!back-token;
2648     $token = {type => 'end tag', tag_name => 'p'};
2649     return;
2650     } elsif ({
2651     table => 1, caption => 1, td => 1, th => 1,
2652     button => 1, marquee => 1, object => 1, html => 1,
2653     }->{$_->[1]}) {
2654     last INSCOPE;
2655     }
2656     } # INSCOPE
2657    
2658     ## Step 1
2659     my $i = -1;
2660 wakaba 1.3 my $node = $self->{open_elements}->[$i];
2661 wakaba 1.1 LI: {
2662     ## Step 2
2663     if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {
2664 wakaba 1.8 if ($i != -1) {
2665     !!!parse-error (type => 'end tag missing:'.
2666     $self->{open_elements}->[-1]->[1]);
2667     }
2668 wakaba 1.3 splice @{$self->{open_elements}}, $i;
2669 wakaba 1.1 last LI;
2670     }
2671    
2672     ## Step 3
2673     if (not $formatting_category->{$node->[1]} and
2674     #not $phrasing_category->{$node->[1]} and
2675     ($special_category->{$node->[1]} or
2676     $scoping_category->{$node->[1]}) and
2677     $node->[1] ne 'address' and $node->[1] ne 'div') {
2678     last LI;
2679     }
2680    
2681     ## Step 4
2682     $i--;
2683 wakaba 1.3 $node = $self->{open_elements}->[$i];
2684 wakaba 1.1 redo LI;
2685     } # LI
2686    
2687     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2688     !!!next-token;
2689     return;
2690     } elsif ($token->{tag_name} eq 'plaintext') {
2691     ## has a p element in scope
2692 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2693 wakaba 1.1 if ($_->[1] eq 'p') {
2694     !!!back-token;
2695     $token = {type => 'end tag', tag_name => 'p'};
2696     return;
2697     } elsif ({
2698     table => 1, caption => 1, td => 1, th => 1,
2699     button => 1, marquee => 1, object => 1, html => 1,
2700     }->{$_->[1]}) {
2701     last INSCOPE;
2702     }
2703     } # INSCOPE
2704    
2705     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2706    
2707     $self->{content_model_flag} = 'PLAINTEXT';
2708    
2709     !!!next-token;
2710     return;
2711     } elsif ({
2712     h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
2713     }->{$token->{tag_name}}) {
2714     ## has a p element in scope
2715 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2716     my $node = $self->{open_elements}->[$_];
2717 wakaba 1.1 if ($node->[1] eq 'p') {
2718     !!!back-token;
2719     $token = {type => 'end tag', tag_name => 'p'};
2720     return;
2721     } elsif ({
2722     table => 1, caption => 1, td => 1, th => 1,
2723     button => 1, marquee => 1, object => 1, html => 1,
2724     }->{$node->[1]}) {
2725     last INSCOPE;
2726     }
2727     } # INSCOPE
2728    
2729 wakaba 1.23 ## NOTE: See <http://html5.org/tools/web-apps-tracker?from=925&to=926>
2730 wakaba 1.1 ## has an element in scope
2731 wakaba 1.23 #my $i;
2732     #INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2733     # my $node = $self->{open_elements}->[$_];
2734     # if ({
2735     # h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
2736     # }->{$node->[1]}) {
2737     # $i = $_;
2738     # last INSCOPE;
2739     # } elsif ({
2740     # table => 1, caption => 1, td => 1, th => 1,
2741     # button => 1, marquee => 1, object => 1, html => 1,
2742     # }->{$node->[1]}) {
2743     # last INSCOPE;
2744     # }
2745     #} # INSCOPE
2746     #
2747     #if (defined $i) {
2748     # !!! parse-error (type => 'in hn:hn');
2749     # splice @{$self->{open_elements}}, $i;
2750     #}
2751 wakaba 1.1
2752     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2753    
2754     !!!next-token;
2755     return;
2756     } elsif ($token->{tag_name} eq 'a') {
2757     AFE: for my $i (reverse 0..$#$active_formatting_elements) {
2758     my $node = $active_formatting_elements->[$i];
2759     if ($node->[1] eq 'a') {
2760 wakaba 1.3 !!!parse-error (type => 'in a:a');
2761 wakaba 1.1
2762     !!!back-token;
2763     $token = {type => 'end tag', tag_name => 'a'};
2764     $formatting_end_tag->($token->{tag_name});
2765    
2766     AFE2: for (reverse 0..$#$active_formatting_elements) {
2767     if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
2768     splice @$active_formatting_elements, $_, 1;
2769     last AFE2;
2770     }
2771     } # AFE2
2772 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
2773     if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
2774     splice @{$self->{open_elements}}, $_, 1;
2775 wakaba 1.1 last OE;
2776     }
2777     } # OE
2778     last AFE;
2779     } elsif ($node->[0] eq '#marker') {
2780     last AFE;
2781     }
2782     } # AFE
2783    
2784     $reconstruct_active_formatting_elements->($insert_to_current);
2785    
2786     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2787 wakaba 1.3 push @$active_formatting_elements, $self->{open_elements}->[-1];
2788 wakaba 1.1
2789     !!!next-token;
2790     return;
2791     } elsif ({
2792     b => 1, big => 1, em => 1, font => 1, i => 1,
2793 wakaba 1.19 s => 1, small => 1, strile => 1,
2794 wakaba 1.1 strong => 1, tt => 1, u => 1,
2795     }->{$token->{tag_name}}) {
2796     $reconstruct_active_formatting_elements->($insert_to_current);
2797    
2798     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2799 wakaba 1.3 push @$active_formatting_elements, $self->{open_elements}->[-1];
2800 wakaba 1.1
2801     !!!next-token;
2802     return;
2803 wakaba 1.19 } elsif ($token->{tag_name} eq 'nobr') {
2804     $reconstruct_active_formatting_elements->($insert_to_current);
2805    
2806     ## has a |nobr| element in scope
2807     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2808     my $node = $self->{open_elements}->[$_];
2809     if ($node->[1] eq 'nobr') {
2810 wakaba 1.31 !!!parse-error (type => 'not closed:nobr');
2811 wakaba 1.19 !!!back-token;
2812     $token = {type => 'end tag', tag_name => 'nobr'};
2813     return;
2814     } elsif ({
2815     table => 1, caption => 1, td => 1, th => 1,
2816     button => 1, marquee => 1, object => 1, html => 1,
2817     }->{$node->[1]}) {
2818     last INSCOPE;
2819     }
2820     } # INSCOPE
2821    
2822     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2823     push @$active_formatting_elements, $self->{open_elements}->[-1];
2824    
2825     !!!next-token;
2826     return;
2827 wakaba 1.1 } elsif ($token->{tag_name} eq 'button') {
2828     ## has a button element in scope
2829 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2830     my $node = $self->{open_elements}->[$_];
2831 wakaba 1.1 if ($node->[1] eq 'button') {
2832 wakaba 1.3 !!!parse-error (type => 'in button:button');
2833 wakaba 1.1 !!!back-token;
2834     $token = {type => 'end tag', tag_name => 'button'};
2835     return;
2836     } elsif ({
2837     table => 1, caption => 1, td => 1, th => 1,
2838     button => 1, marquee => 1, object => 1, html => 1,
2839     }->{$node->[1]}) {
2840     last INSCOPE;
2841     }
2842     } # INSCOPE
2843    
2844     $reconstruct_active_formatting_elements->($insert_to_current);
2845    
2846     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2847     push @$active_formatting_elements, ['#marker', ''];
2848    
2849     !!!next-token;
2850     return;
2851     } elsif ($token->{tag_name} eq 'marquee' or
2852     $token->{tag_name} eq 'object') {
2853     $reconstruct_active_formatting_elements->($insert_to_current);
2854    
2855     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2856     push @$active_formatting_elements, ['#marker', ''];
2857    
2858     !!!next-token;
2859     return;
2860     } elsif ($token->{tag_name} eq 'xmp') {
2861     $reconstruct_active_formatting_elements->($insert_to_current);
2862 wakaba 1.25 $parse_rcdata->('CDATA', $insert);
2863 wakaba 1.1 return;
2864     } elsif ($token->{tag_name} eq 'table') {
2865     ## has a p element in scope
2866 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2867 wakaba 1.1 if ($_->[1] eq 'p') {
2868     !!!back-token;
2869     $token = {type => 'end tag', tag_name => 'p'};
2870     return;
2871     } elsif ({
2872     table => 1, caption => 1, td => 1, th => 1,
2873     button => 1, marquee => 1, object => 1, html => 1,
2874     }->{$_->[1]}) {
2875     last INSCOPE;
2876     }
2877     } # INSCOPE
2878    
2879     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2880    
2881 wakaba 1.3 $self->{insertion_mode} = 'in table';
2882 wakaba 1.1
2883     !!!next-token;
2884     return;
2885     } elsif ({
2886     area => 1, basefont => 1, bgsound => 1, br => 1,
2887     embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,
2888     image => 1,
2889     }->{$token->{tag_name}}) {
2890     if ($token->{tag_name} eq 'image') {
2891 wakaba 1.3 !!!parse-error (type => 'image');
2892 wakaba 1.1 $token->{tag_name} = 'img';
2893     }
2894 wakaba 1.31
2895     ## NOTE: There is an "as if <br>" code clone.
2896 wakaba 1.1 $reconstruct_active_formatting_elements->($insert_to_current);
2897    
2898     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2899 wakaba 1.3 pop @{$self->{open_elements}};
2900 wakaba 1.1
2901     !!!next-token;
2902     return;
2903     } elsif ($token->{tag_name} eq 'hr') {
2904     ## has a p element in scope
2905 wakaba 1.3 INSCOPE: for (reverse @{$self->{open_elements}}) {
2906 wakaba 1.1 if ($_->[1] eq 'p') {
2907     !!!back-token;
2908     $token = {type => 'end tag', tag_name => 'p'};
2909     return;
2910     } elsif ({
2911     table => 1, caption => 1, td => 1, th => 1,
2912     button => 1, marquee => 1, object => 1, html => 1,
2913     }->{$_->[1]}) {
2914     last INSCOPE;
2915     }
2916     } # INSCOPE
2917    
2918     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2919 wakaba 1.3 pop @{$self->{open_elements}};
2920 wakaba 1.1
2921     !!!next-token;
2922     return;
2923     } elsif ($token->{tag_name} eq 'input') {
2924     $reconstruct_active_formatting_elements->($insert_to_current);
2925    
2926     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
2927 wakaba 1.3 ## TODO: associate with $self->{form_element} if defined
2928     pop @{$self->{open_elements}};
2929 wakaba 1.1
2930     !!!next-token;
2931     return;
2932     } elsif ($token->{tag_name} eq 'isindex') {
2933 wakaba 1.3 !!!parse-error (type => 'isindex');
2934 wakaba 1.1
2935 wakaba 1.3 if (defined $self->{form_element}) {
2936 wakaba 1.1 ## Ignore the token
2937     !!!next-token;
2938     return;
2939     } else {
2940     my $at = $token->{attributes};
2941 wakaba 1.22 my $form_attrs;
2942     $form_attrs->{action} = $at->{action} if $at->{action};
2943     my $prompt_attr = $at->{prompt};
2944 wakaba 1.1 $at->{name} = {name => 'name', value => 'isindex'};
2945 wakaba 1.22 delete $at->{action};
2946     delete $at->{prompt};
2947 wakaba 1.1 my @tokens = (
2948 wakaba 1.22 {type => 'start tag', tag_name => 'form',
2949     attributes => $form_attrs},
2950 wakaba 1.1 {type => 'start tag', tag_name => 'hr'},
2951     {type => 'start tag', tag_name => 'p'},
2952     {type => 'start tag', tag_name => 'label'},
2953 wakaba 1.22 );
2954     if ($prompt_attr) {
2955     push @tokens, {type => 'character', data => $prompt_attr->{value}};
2956     } else {
2957     push @tokens, {type => 'character',
2958     data => 'This is a searchable index. Insert your search keywords here: '}; # SHOULD
2959     ## TODO: make this configurable
2960     }
2961     push @tokens,
2962 wakaba 1.1 {type => 'start tag', tag_name => 'input', attributes => $at},
2963     #{type => 'character', data => ''}, # SHOULD
2964     {type => 'end tag', tag_name => 'label'},
2965     {type => 'end tag', tag_name => 'p'},
2966     {type => 'start tag', tag_name => 'hr'},
2967 wakaba 1.22 {type => 'end tag', tag_name => 'form'};
2968 wakaba 1.1 $token = shift @tokens;
2969     !!!back-token (@tokens);
2970     return;
2971     }
2972 wakaba 1.25 } elsif ($token->{tag_name} eq 'textarea') {
2973 wakaba 1.1 my $tag_name = $token->{tag_name};
2974     my $el;
2975     !!!create-element ($el, $token->{tag_name}, $token->{attributes});
2976    
2977 wakaba 1.25 ## TODO: $self->{form_element} if defined
2978     $self->{content_model_flag} = 'RCDATA';
2979 wakaba 1.13 delete $self->{escape}; # MUST
2980 wakaba 1.1
2981     $insert->($el);
2982    
2983     my $text = '';
2984 wakaba 1.25 !!!next-token;
2985     if ($token->{type} eq 'character') {
2986     $token->{data} =~ s/^\x0A//;
2987     unless (length $token->{data}) {
2988     !!!next-token;
2989 wakaba 1.9 }
2990     }
2991 wakaba 1.1 while ($token->{type} eq 'character') {
2992     $text .= $token->{data};
2993     !!!next-token;
2994     }
2995     if (length $text) {
2996     $el->manakai_append_text ($text);
2997     }
2998    
2999     $self->{content_model_flag} = 'PCDATA';
3000    
3001     if ($token->{type} eq 'end tag' and
3002     $token->{tag_name} eq $tag_name) {
3003     ## Ignore the token
3004     } else {
3005 wakaba 1.25 !!!parse-error (type => 'in RCDATA:#'.$token->{type});
3006 wakaba 1.1 }
3007     !!!next-token;
3008     return;
3009 wakaba 1.25 } elsif ({
3010     iframe => 1,
3011     noembed => 1,
3012     noframes => 1,
3013     noscript => 0, ## TODO: 1 if scripting is enabled
3014     }->{$token->{tag_name}}) {
3015     $parse_rcdata->('CDATA', $insert);
3016     return;
3017 wakaba 1.1 } elsif ($token->{tag_name} eq 'select') {
3018     $reconstruct_active_formatting_elements->($insert_to_current);
3019    
3020     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
3021    
3022 wakaba 1.3 $self->{insertion_mode} = 'in select';
3023 wakaba 1.1 !!!next-token;
3024     return;
3025     } elsif ({
3026     caption => 1, col => 1, colgroup => 1, frame => 1,
3027     frameset => 1, head => 1, option => 1, optgroup => 1,
3028     tbody => 1, td => 1, tfoot => 1, th => 1,
3029     thead => 1, tr => 1,
3030     }->{$token->{tag_name}}) {
3031 wakaba 1.3 !!!parse-error (type => 'in body:'.$token->{tag_name});
3032 wakaba 1.1 ## Ignore the token
3033     !!!next-token;
3034     return;
3035    
3036     ## ISSUE: An issue on HTML5 new elements in the spec.
3037     } else {
3038     $reconstruct_active_formatting_elements->($insert_to_current);
3039    
3040     !!!insert-element-t ($token->{tag_name}, $token->{attributes});
3041    
3042     !!!next-token;
3043     return;
3044     }
3045     } elsif ($token->{type} eq 'end tag') {
3046     if ($token->{tag_name} eq 'body') {
3047 wakaba 1.20 if (@{$self->{open_elements}} > 1 and
3048     $self->{open_elements}->[1]->[1] eq 'body') {
3049     for (@{$self->{open_elements}}) {
3050     unless ({
3051     dd => 1, dt => 1, li => 1, p => 1, td => 1,
3052     th => 1, tr => 1, body => 1, html => 1,
3053 wakaba 1.31 tbody => 1, tfoot => 1, thead => 1,
3054 wakaba 1.20 }->{$_->[1]}) {
3055     !!!parse-error (type => 'not closed:'.$_->[1]);
3056     }
3057 wakaba 1.1 }
3058 wakaba 1.20
3059 wakaba 1.3 $self->{insertion_mode} = 'after body';
3060 wakaba 1.1 !!!next-token;
3061     return;
3062     } else {
3063 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3064 wakaba 1.1 ## Ignore the token
3065     !!!next-token;
3066     return;
3067     }
3068     } elsif ($token->{tag_name} eq 'html') {
3069 wakaba 1.3 if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {
3070 wakaba 1.1 ## ISSUE: There is an issue in the spec.
3071 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'body') {
3072     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);
3073 wakaba 1.1 }
3074 wakaba 1.3 $self->{insertion_mode} = 'after body';
3075 wakaba 1.1 ## reprocess
3076     return;
3077     } else {
3078 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3079 wakaba 1.1 ## Ignore the token
3080     !!!next-token;
3081     return;
3082     }
3083     } elsif ({
3084     address => 1, blockquote => 1, center => 1, dir => 1,
3085     div => 1, dl => 1, fieldset => 1, listing => 1,
3086     menu => 1, ol => 1, pre => 1, ul => 1,
3087     p => 1,
3088     dd => 1, dt => 1, li => 1,
3089     button => 1, marquee => 1, object => 1,
3090     }->{$token->{tag_name}}) {
3091     ## has an element in scope
3092     my $i;
3093 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3094     my $node = $self->{open_elements}->[$_];
3095 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
3096     ## generate implied end tags
3097     if ({
3098     dd => ($token->{tag_name} ne 'dd'),
3099     dt => ($token->{tag_name} ne 'dt'),
3100     li => ($token->{tag_name} ne 'li'),
3101     p => ($token->{tag_name} ne 'p'),
3102     td => 1, th => 1, tr => 1,
3103 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3104 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3105 wakaba 1.1 !!!back-token;
3106     $token = {type => 'end tag',
3107 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3108 wakaba 1.1 return;
3109     }
3110     $i = $_;
3111     last INSCOPE unless $token->{tag_name} eq 'p';
3112     } elsif ({
3113     table => 1, caption => 1, td => 1, th => 1,
3114     button => 1, marquee => 1, object => 1, html => 1,
3115     }->{$node->[1]}) {
3116     last INSCOPE;
3117     }
3118     } # INSCOPE
3119    
3120 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
3121     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3122 wakaba 1.1 }
3123    
3124 wakaba 1.31 if (defined $i) {
3125     splice @{$self->{open_elements}}, $i;
3126     } elsif ($token->{tag_name} eq 'p') {
3127     ## As if <p>, then reprocess the current token
3128     my $el;
3129     !!!create-element ($el, 'p');
3130     $insert->($el);
3131     }
3132 wakaba 1.1 $clear_up_to_marker->()
3133     if {
3134     button => 1, marquee => 1, object => 1,
3135     }->{$token->{tag_name}};
3136     !!!next-token;
3137     return;
3138 wakaba 1.12 } elsif ($token->{tag_name} eq 'form') {
3139     ## has an element in scope
3140     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3141     my $node = $self->{open_elements}->[$_];
3142     if ($node->[1] eq $token->{tag_name}) {
3143     ## generate implied end tags
3144     if ({
3145     dd => 1, dt => 1, li => 1, p => 1,
3146     td => 1, th => 1, tr => 1,
3147 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3148 wakaba 1.12 }->{$self->{open_elements}->[-1]->[1]}) {
3149     !!!back-token;
3150     $token = {type => 'end tag',
3151     tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3152     return;
3153     }
3154     last INSCOPE;
3155     } elsif ({
3156     table => 1, caption => 1, td => 1, th => 1,
3157     button => 1, marquee => 1, object => 1, html => 1,
3158     }->{$node->[1]}) {
3159     last INSCOPE;
3160     }
3161     } # INSCOPE
3162    
3163     if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {
3164     pop @{$self->{open_elements}};
3165     } else {
3166     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3167     }
3168    
3169     undef $self->{form_element};
3170     !!!next-token;
3171     return;
3172 wakaba 1.1 } elsif ({
3173     h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
3174     }->{$token->{tag_name}}) {
3175     ## has an element in scope
3176     my $i;
3177 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3178     my $node = $self->{open_elements}->[$_];
3179 wakaba 1.1 if ({
3180     h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
3181     }->{$node->[1]}) {
3182     ## generate implied end tags
3183     if ({
3184     dd => 1, dt => 1, li => 1, p => 1,
3185     td => 1, th => 1, tr => 1,
3186 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3187 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3188 wakaba 1.1 !!!back-token;
3189     $token = {type => 'end tag',
3190 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3191 wakaba 1.1 return;
3192     }
3193     $i = $_;
3194     last INSCOPE;
3195     } elsif ({
3196     table => 1, caption => 1, td => 1, th => 1,
3197     button => 1, marquee => 1, object => 1, html => 1,
3198     }->{$node->[1]}) {
3199     last INSCOPE;
3200     }
3201     } # INSCOPE
3202    
3203 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
3204     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3205 wakaba 1.1 }
3206    
3207 wakaba 1.3 splice @{$self->{open_elements}}, $i if defined $i;
3208 wakaba 1.1 !!!next-token;
3209     return;
3210     } elsif ({
3211     a => 1,
3212     b => 1, big => 1, em => 1, font => 1, i => 1,
3213     nobr => 1, s => 1, small => 1, strile => 1,
3214     strong => 1, tt => 1, u => 1,
3215     }->{$token->{tag_name}}) {
3216     $formatting_end_tag->($token->{tag_name});
3217 wakaba 1.31 return;
3218     } elsif ($token->{tag_name} eq 'br') {
3219     !!!parse-error (type => 'unmatched end tag:br');
3220    
3221     ## As if <br>
3222     $reconstruct_active_formatting_elements->($insert_to_current);
3223    
3224     my $el;
3225     !!!create-element ($el, 'br');
3226     $insert->($el);
3227    
3228     ## Ignore the token.
3229     !!!next-token;
3230 wakaba 1.1 return;
3231     } elsif ({
3232     caption => 1, col => 1, colgroup => 1, frame => 1,
3233     frameset => 1, head => 1, option => 1, optgroup => 1,
3234     tbody => 1, td => 1, tfoot => 1, th => 1,
3235     thead => 1, tr => 1,
3236 wakaba 1.31 area => 1, basefont => 1, bgsound => 1,
3237 wakaba 1.1 embed => 1, hr => 1, iframe => 1, image => 1,
3238 wakaba 1.5 img => 1, input => 1, isindex => 1, noembed => 1,
3239 wakaba 1.1 noframes => 1, param => 1, select => 1, spacer => 1,
3240     table => 1, textarea => 1, wbr => 1,
3241     noscript => 0, ## TODO: if scripting is enabled
3242     }->{$token->{tag_name}}) {
3243 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3244 wakaba 1.1 ## Ignore the token
3245     !!!next-token;
3246     return;
3247    
3248     ## ISSUE: Issue on HTML5 new elements in spec
3249    
3250     } else {
3251     ## Step 1
3252     my $node_i = -1;
3253 wakaba 1.3 my $node = $self->{open_elements}->[$node_i];
3254 wakaba 1.1
3255     ## Step 2
3256     S2: {
3257     if ($node->[1] eq $token->{tag_name}) {
3258     ## Step 1
3259     ## generate implied end tags
3260     if ({
3261     dd => 1, dt => 1, li => 1, p => 1,
3262     td => 1, th => 1, tr => 1,
3263 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3264 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3265 wakaba 1.1 !!!back-token;
3266     $token = {type => 'end tag',
3267 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3268 wakaba 1.1 return;
3269     }
3270    
3271     ## Step 2
3272 wakaba 1.3 if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {
3273     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3274 wakaba 1.1 }
3275    
3276     ## Step 3
3277 wakaba 1.3 splice @{$self->{open_elements}}, $node_i;
3278    
3279     !!!next-token;
3280 wakaba 1.1 last S2;
3281     } else {
3282     ## Step 3
3283     if (not $formatting_category->{$node->[1]} and
3284     #not $phrasing_category->{$node->[1]} and
3285     ($special_category->{$node->[1]} or
3286     $scoping_category->{$node->[1]})) {
3287 wakaba 1.25 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3288 wakaba 1.1 ## Ignore the token
3289     !!!next-token;
3290     last S2;
3291     }
3292     }
3293    
3294     ## Step 4
3295     $node_i--;
3296 wakaba 1.3 $node = $self->{open_elements}->[$node_i];
3297 wakaba 1.1
3298     ## Step 5;
3299     redo S2;
3300     } # S2
3301 wakaba 1.3 return;
3302 wakaba 1.1 }
3303     }
3304     }; # $in_body
3305    
3306     B: {
3307 wakaba 1.3 if ($phase eq 'main') {
3308 wakaba 1.1 if ($token->{type} eq 'DOCTYPE') {
3309 wakaba 1.3 !!!parse-error (type => 'in html:#DOCTYPE');
3310 wakaba 1.1 ## Ignore the token
3311     ## Stay in the phase
3312     !!!next-token;
3313     redo B;
3314     } elsif ($token->{type} eq 'start tag' and
3315     $token->{tag_name} eq 'html') {
3316 wakaba 1.28 ## ISSUE: "aa<html>" is not a parse error.
3317     ## ISSUE: "<html>" in fragment is not a parse error.
3318     unless ($token->{first_start_tag}) {
3319     !!!parse-error (type => 'not first start tag');
3320     }
3321 wakaba 1.3 my $top_el = $self->{open_elements}->[0]->[0];
3322 wakaba 1.1 for my $attr_name (keys %{$token->{attributes}}) {
3323     unless ($top_el->has_attribute_ns (undef, $attr_name)) {
3324     $top_el->set_attribute_ns
3325     (undef, [undef, $attr_name],
3326     $token->{attributes}->{$attr_name}->{value});
3327     }
3328     }
3329     !!!next-token;
3330     redo B;
3331     } elsif ($token->{type} eq 'end-of-file') {
3332     ## Generate implied end tags
3333     if ({
3334     dd => 1, dt => 1, li => 1, p => 1, td => 1, th => 1, tr => 1,
3335 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3336 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3337 wakaba 1.1 !!!back-token;
3338 wakaba 1.3 $token = {type => 'end tag', tag_name => $self->{open_elements}->[-1]->[1]};
3339 wakaba 1.1 redo B;
3340     }
3341    
3342 wakaba 1.3 if (@{$self->{open_elements}} > 2 or
3343     (@{$self->{open_elements}} == 2 and $self->{open_elements}->[1]->[1] ne 'body')) {
3344     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3345     } elsif (defined $self->{inner_html_node} and
3346     @{$self->{open_elements}} > 1 and
3347     $self->{open_elements}->[1]->[1] ne 'body') {
3348     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3349 wakaba 1.1 }
3350    
3351     ## Stop parsing
3352     last B;
3353    
3354     ## ISSUE: There is an issue in the spec.
3355     } else {
3356 wakaba 1.3 if ($self->{insertion_mode} eq 'before head') {
3357 wakaba 1.1 if ($token->{type} eq 'character') {
3358     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3359 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3360 wakaba 1.1 unless (length $token->{data}) {
3361     !!!next-token;
3362     redo B;
3363     }
3364     }
3365     ## As if <head>
3366 wakaba 1.3 !!!create-element ($self->{head_element}, 'head');
3367     $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3368     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3369     $self->{insertion_mode} = 'in head';
3370 wakaba 1.1 ## reprocess
3371     redo B;
3372     } elsif ($token->{type} eq 'comment') {
3373     my $comment = $self->{document}->create_comment ($token->{data});
3374 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
3375 wakaba 1.1 !!!next-token;
3376     redo B;
3377     } elsif ($token->{type} eq 'start tag') {
3378     my $attr = $token->{tag_name} eq 'head' ? $token->{attributes} : {};
3379 wakaba 1.3 !!!create-element ($self->{head_element}, 'head', $attr);
3380     $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3381     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3382     $self->{insertion_mode} = 'in head';
3383 wakaba 1.1 if ($token->{tag_name} eq 'head') {
3384     !!!next-token;
3385     #} elsif ({
3386     # base => 1, link => 1, meta => 1,
3387     # script => 1, style => 1, title => 1,
3388     # }->{$token->{tag_name}}) {
3389     # ## reprocess
3390     } else {
3391     ## reprocess
3392     }
3393     redo B;
3394     } elsif ($token->{type} eq 'end tag') {
3395 wakaba 1.31 if ({
3396     head => 1, body => 1, html => 1,
3397     p => 1, br => 1,
3398     }->{$token->{tag_name}}) {
3399 wakaba 1.1 ## As if <head>
3400 wakaba 1.3 !!!create-element ($self->{head_element}, 'head');
3401     $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
3402     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3403     $self->{insertion_mode} = 'in head';
3404 wakaba 1.1 ## reprocess
3405     redo B;
3406     } else {
3407 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3408 wakaba 1.21 ## Ignore the token ## ISSUE: An issue in the spec.
3409 wakaba 1.1 !!!next-token;
3410     redo B;
3411     }
3412     } else {
3413     die "$0: $token->{type}: Unknown type";
3414     }
3415 wakaba 1.25 } elsif ($self->{insertion_mode} eq 'in head' or
3416     $self->{insertion_mode} eq 'in head noscript' or
3417     $self->{insertion_mode} eq 'after head') {
3418 wakaba 1.1 if ($token->{type} eq 'character') {
3419     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3420 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3421 wakaba 1.1 unless (length $token->{data}) {
3422     !!!next-token;
3423     redo B;
3424     }
3425     }
3426    
3427     #
3428     } elsif ($token->{type} eq 'comment') {
3429     my $comment = $self->{document}->create_comment ($token->{data});
3430 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
3431 wakaba 1.1 !!!next-token;
3432     redo B;
3433     } elsif ($token->{type} eq 'start tag') {
3434 wakaba 1.25 if ({base => ($self->{insertion_mode} eq 'in head' or
3435     $self->{insertion_mode} eq 'after head'),
3436     link => 1, meta => 1}->{$token->{tag_name}}) {
3437     ## NOTE: There is a "as if in head" code clone.
3438     if ($self->{insertion_mode} eq 'after head') {
3439     !!!parse-error (type => 'after head:'.$token->{tag_name});
3440     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3441     }
3442     !!!insert-element ($token->{tag_name}, $token->{attributes});
3443     pop @{$self->{open_elements}}; ## ISSUE: This step is missing in the spec.
3444 wakaba 1.26 ## TODO: Extracting |charset| from |meta|.
3445 wakaba 1.25 pop @{$self->{open_elements}}
3446     if $self->{insertion_mode} eq 'after head';
3447 wakaba 1.1 !!!next-token;
3448 wakaba 1.25 redo B;
3449     } elsif ($token->{tag_name} eq 'title' and
3450     $self->{insertion_mode} eq 'in head') {
3451     ## NOTE: There is a "as if in head" code clone.
3452     if ($self->{insertion_mode} eq 'after head') {
3453     !!!parse-error (type => 'after head:'.$token->{tag_name});
3454     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3455     }
3456 wakaba 1.31 my $parent = defined $self->{head_element} ? $self->{head_element}
3457     : $self->{open_elements}->[-1]->[0];
3458     $parse_rcdata->('RCDATA', sub { $parent->append_child ($_[0]) });
3459 wakaba 1.25 pop @{$self->{open_elements}}
3460     if $self->{insertion_mode} eq 'after head';
3461     redo B;
3462     } elsif ($token->{tag_name} eq 'style') {
3463     ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
3464     ## insertion mode 'in head')
3465     ## NOTE: There is a "as if in head" code clone.
3466     if ($self->{insertion_mode} eq 'after head') {
3467     !!!parse-error (type => 'after head:'.$token->{tag_name});
3468     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3469     }
3470     $parse_rcdata->('CDATA', $insert_to_current);
3471     pop @{$self->{open_elements}}
3472     if $self->{insertion_mode} eq 'after head';
3473     redo B;
3474     } elsif ($token->{tag_name} eq 'noscript') {
3475     if ($self->{insertion_mode} eq 'in head') {
3476     ## NOTE: and scripting is disalbed
3477     !!!insert-element ($token->{tag_name}, $token->{attributes});
3478     $self->{insertion_mode} = 'in head noscript';
3479 wakaba 1.1 !!!next-token;
3480 wakaba 1.25 redo B;
3481     } elsif ($self->{insertion_mode} eq 'in head noscript') {
3482 wakaba 1.30 !!!parse-error (type => 'in noscript:noscript');
3483 wakaba 1.1 ## Ignore the token
3484 wakaba 1.25 redo B;
3485 wakaba 1.1 } else {
3486 wakaba 1.25 #
3487 wakaba 1.1 }
3488 wakaba 1.25 } elsif ($token->{tag_name} eq 'head' and
3489     $self->{insertion_mode} ne 'after head') {
3490     !!!parse-error (type => 'in head:head'); # or in head noscript
3491     ## Ignore the token
3492 wakaba 1.1 !!!next-token;
3493     redo B;
3494 wakaba 1.25 } elsif ($self->{insertion_mode} ne 'in head noscript' and
3495     $token->{tag_name} eq 'script') {
3496     if ($self->{insertion_mode} eq 'after head') {
3497     !!!parse-error (type => 'after head:'.$token->{tag_name});
3498     push @{$self->{open_elements}}, [$self->{head_element}, 'head'];
3499     }
3500     ## NOTE: There is a "as if in head" code clone.
3501     $script_start_tag->($insert_to_current);
3502     pop @{$self->{open_elements}}
3503     if $self->{insertion_mode} eq 'after head';
3504 wakaba 1.1 redo B;
3505 wakaba 1.25 } elsif ($self->{insertion_mode} eq 'after head' and
3506     $token->{tag_name} eq 'body') {
3507     !!!insert-element ('body', $token->{attributes});
3508     $self->{insertion_mode} = 'in body';
3509 wakaba 1.1 !!!next-token;
3510     redo B;
3511 wakaba 1.25 } elsif ($self->{insertion_mode} eq 'after head' and
3512     $token->{tag_name} eq 'frameset') {
3513     !!!insert-element ('frameset', $token->{attributes});
3514     $self->{insertion_mode} = 'in frameset';
3515 wakaba 1.1 !!!next-token;
3516     redo B;
3517     } else {
3518     #
3519     }
3520     } elsif ($token->{type} eq 'end tag') {
3521 wakaba 1.25 if ($self->{insertion_mode} eq 'in head' and
3522     $token->{tag_name} eq 'head') {
3523     pop @{$self->{open_elements}};
3524 wakaba 1.3 $self->{insertion_mode} = 'after head';
3525 wakaba 1.1 !!!next-token;
3526     redo B;
3527 wakaba 1.25 } elsif ($self->{insertion_mode} eq 'in head noscript' and
3528     $token->{tag_name} eq 'noscript') {
3529     pop @{$self->{open_elements}};
3530     $self->{insertion_mode} = 'in head';
3531     !!!next-token;
3532     redo B;
3533     } elsif ($self->{insertion_mode} eq 'in head' and
3534 wakaba 1.31 {
3535     body => 1, html => 1,
3536     p => 1, br => 1,
3537     }->{$token->{tag_name}}) {
3538     #
3539     } elsif ($self->{insertion_mode} eq 'in head noscript' and
3540     {
3541     p => 1, br => 1,
3542     }->{$token->{tag_name}}) {
3543 wakaba 1.1 #
3544 wakaba 1.25 } elsif ($self->{insertion_mode} ne 'after head') {
3545 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3546 wakaba 1.1 ## Ignore the token
3547     !!!next-token;
3548     redo B;
3549 wakaba 1.25 } else {
3550     #
3551 wakaba 1.1 }
3552     } else {
3553     #
3554     }
3555    
3556 wakaba 1.25 ## As if </head> or </noscript> or <body>
3557     if ($self->{insertion_mode} eq 'in head') {
3558 wakaba 1.3 pop @{$self->{open_elements}};
3559 wakaba 1.25 $self->{insertion_mode} = 'after head';
3560     } elsif ($self->{insertion_mode} eq 'in head noscript') {
3561     pop @{$self->{open_elements}};
3562     !!!parse-error (type => 'in noscript:'.(defined $token->{tag_name} ? ($token->{type} eq 'end tag' ? '/' : '') . $token->{tag_name} : '#' . $token->{type}));
3563     $self->{insertion_mode} = 'in head';
3564     } else { # 'after head'
3565     !!!insert-element ('body');
3566     $self->{insertion_mode} = 'in body';
3567 wakaba 1.1 }
3568     ## reprocess
3569     redo B;
3570    
3571     ## ISSUE: An issue in the spec.
3572 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in body') {
3573 wakaba 1.1 if ($token->{type} eq 'character') {
3574     ## NOTE: There is a code clone of "character in body".
3575     $reconstruct_active_formatting_elements->($insert_to_current);
3576    
3577 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3578 wakaba 1.1
3579     !!!next-token;
3580     redo B;
3581     } elsif ($token->{type} eq 'comment') {
3582     ## NOTE: There is a code clone of "comment in body".
3583     my $comment = $self->{document}->create_comment ($token->{data});
3584 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
3585 wakaba 1.1 !!!next-token;
3586     redo B;
3587     } else {
3588     $in_body->($insert_to_current);
3589     redo B;
3590     }
3591 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in table') {
3592 wakaba 1.1 if ($token->{type} eq 'character') {
3593     ## NOTE: There are "character in table" code clones.
3594     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
3595 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3596 wakaba 1.1
3597     unless (length $token->{data}) {
3598     !!!next-token;
3599     redo B;
3600     }
3601     }
3602    
3603 wakaba 1.3 !!!parse-error (type => 'in table:#character');
3604    
3605 wakaba 1.1 ## As if in body, but insert into foster parent element
3606     ## ISSUE: Spec says that "whenever a node would be inserted
3607     ## into the current node" while characters might not be
3608     ## result in a new Text node.
3609     $reconstruct_active_formatting_elements->($insert_to_foster);
3610    
3611     if ({
3612     table => 1, tbody => 1, tfoot => 1,
3613     thead => 1, tr => 1,
3614 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3615 wakaba 1.1 # MUST
3616     my $foster_parent_element;
3617     my $next_sibling;
3618     my $prev_sibling;
3619 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
3620     if ($self->{open_elements}->[$_]->[1] eq 'table') {
3621     my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3622 wakaba 1.1 if (defined $parent and $parent->node_type == 1) {
3623     $foster_parent_element = $parent;
3624 wakaba 1.3 $next_sibling = $self->{open_elements}->[$_]->[0];
3625 wakaba 1.1 $prev_sibling = $next_sibling->previous_sibling;
3626     } else {
3627 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
3628 wakaba 1.1 $prev_sibling = $foster_parent_element->last_child;
3629     }
3630     last OE;
3631     }
3632     } # OE
3633 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[0]->[0] and
3634 wakaba 1.1 $prev_sibling = $foster_parent_element->last_child
3635     unless defined $foster_parent_element;
3636     if (defined $prev_sibling and
3637     $prev_sibling->node_type == 3) {
3638     $prev_sibling->manakai_append_text ($token->{data});
3639     } else {
3640     $foster_parent_element->insert_before
3641     ($self->{document}->create_text_node ($token->{data}),
3642     $next_sibling);
3643     }
3644     } else {
3645 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3646 wakaba 1.1 }
3647    
3648     !!!next-token;
3649     redo B;
3650     } elsif ($token->{type} eq 'comment') {
3651     my $comment = $self->{document}->create_comment ($token->{data});
3652 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
3653 wakaba 1.1 !!!next-token;
3654     redo B;
3655     } elsif ($token->{type} eq 'start tag') {
3656     if ({
3657     caption => 1,
3658     colgroup => 1,
3659     tbody => 1, tfoot => 1, thead => 1,
3660     }->{$token->{tag_name}}) {
3661     ## Clear back to table context
3662 wakaba 1.3 while ($self->{open_elements}->[-1]->[1] ne 'table' and
3663     $self->{open_elements}->[-1]->[1] ne 'html') {
3664     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3665     pop @{$self->{open_elements}};
3666 wakaba 1.1 }
3667    
3668     push @$active_formatting_elements, ['#marker', '']
3669     if $token->{tag_name} eq 'caption';
3670    
3671     !!!insert-element ($token->{tag_name}, $token->{attributes});
3672 wakaba 1.3 $self->{insertion_mode} = {
3673 wakaba 1.1 caption => 'in caption',
3674     colgroup => 'in column group',
3675     tbody => 'in table body',
3676     tfoot => 'in table body',
3677     thead => 'in table body',
3678     }->{$token->{tag_name}};
3679     !!!next-token;
3680     redo B;
3681     } elsif ({
3682     col => 1,
3683     td => 1, th => 1, tr => 1,
3684     }->{$token->{tag_name}}) {
3685     ## Clear back to table context
3686 wakaba 1.3 while ($self->{open_elements}->[-1]->[1] ne 'table' and
3687     $self->{open_elements}->[-1]->[1] ne 'html') {
3688     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3689     pop @{$self->{open_elements}};
3690 wakaba 1.1 }
3691    
3692     !!!insert-element ($token->{tag_name} eq 'col' ? 'colgroup' : 'tbody');
3693 wakaba 1.3 $self->{insertion_mode} = $token->{tag_name} eq 'col'
3694 wakaba 1.1 ? 'in column group' : 'in table body';
3695     ## reprocess
3696     redo B;
3697     } elsif ($token->{tag_name} eq 'table') {
3698     ## NOTE: There are code clones for this "table in table"
3699 wakaba 1.3 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3700 wakaba 1.1
3701     ## As if </table>
3702     ## have a table element in table scope
3703     my $i;
3704 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3705     my $node = $self->{open_elements}->[$_];
3706 wakaba 1.1 if ($node->[1] eq 'table') {
3707     $i = $_;
3708     last INSCOPE;
3709     } elsif ({
3710     table => 1, html => 1,
3711     }->{$node->[1]}) {
3712     last INSCOPE;
3713     }
3714     } # INSCOPE
3715     unless (defined $i) {
3716 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:table');
3717 wakaba 1.1 ## Ignore tokens </table><table>
3718     !!!next-token;
3719     redo B;
3720     }
3721    
3722     ## generate implied end tags
3723     if ({
3724     dd => 1, dt => 1, li => 1, p => 1,
3725     td => 1, th => 1, tr => 1,
3726 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3727 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3728 wakaba 1.1 !!!back-token; # <table>
3729     $token = {type => 'end tag', tag_name => 'table'};
3730     !!!back-token;
3731     $token = {type => 'end tag',
3732 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3733 wakaba 1.1 redo B;
3734     }
3735    
3736 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'table') {
3737     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3738 wakaba 1.1 }
3739    
3740 wakaba 1.3 splice @{$self->{open_elements}}, $i;
3741 wakaba 1.1
3742 wakaba 1.3 $self->_reset_insertion_mode;
3743 wakaba 1.1
3744     ## reprocess
3745     redo B;
3746     } else {
3747     #
3748     }
3749     } elsif ($token->{type} eq 'end tag') {
3750     if ($token->{tag_name} eq 'table') {
3751     ## have a table element in table scope
3752     my $i;
3753 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3754     my $node = $self->{open_elements}->[$_];
3755 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
3756     $i = $_;
3757     last INSCOPE;
3758     } elsif ({
3759     table => 1, html => 1,
3760     }->{$node->[1]}) {
3761     last INSCOPE;
3762     }
3763     } # INSCOPE
3764     unless (defined $i) {
3765 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3766 wakaba 1.1 ## Ignore the token
3767     !!!next-token;
3768     redo B;
3769     }
3770    
3771     ## generate implied end tags
3772     if ({
3773     dd => 1, dt => 1, li => 1, p => 1,
3774     td => 1, th => 1, tr => 1,
3775 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3776 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3777 wakaba 1.1 !!!back-token;
3778     $token = {type => 'end tag',
3779 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3780 wakaba 1.1 redo B;
3781     }
3782    
3783 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'table') {
3784     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3785 wakaba 1.1 }
3786    
3787 wakaba 1.3 splice @{$self->{open_elements}}, $i;
3788 wakaba 1.1
3789 wakaba 1.3 $self->_reset_insertion_mode;
3790 wakaba 1.1
3791     !!!next-token;
3792     redo B;
3793     } elsif ({
3794     body => 1, caption => 1, col => 1, colgroup => 1,
3795     html => 1, tbody => 1, td => 1, tfoot => 1, th => 1,
3796     thead => 1, tr => 1,
3797     }->{$token->{tag_name}}) {
3798 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3799 wakaba 1.1 ## Ignore the token
3800     !!!next-token;
3801     redo B;
3802     } else {
3803     #
3804     }
3805     } else {
3806     #
3807     }
3808    
3809 wakaba 1.3 !!!parse-error (type => 'in table:'.$token->{tag_name});
3810 wakaba 1.1 $in_body->($insert_to_foster);
3811     redo B;
3812 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in caption') {
3813 wakaba 1.1 if ($token->{type} eq 'character') {
3814     ## NOTE: This is a code clone of "character in body".
3815     $reconstruct_active_formatting_elements->($insert_to_current);
3816    
3817 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3818 wakaba 1.1
3819     !!!next-token;
3820     redo B;
3821     } elsif ($token->{type} eq 'comment') {
3822     ## NOTE: This is a code clone of "comment in body".
3823     my $comment = $self->{document}->create_comment ($token->{data});
3824 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
3825 wakaba 1.1 !!!next-token;
3826     redo B;
3827     } elsif ($token->{type} eq 'start tag') {
3828     if ({
3829     caption => 1, col => 1, colgroup => 1, tbody => 1,
3830     td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,
3831     }->{$token->{tag_name}}) {
3832 wakaba 1.3 !!!parse-error (type => 'not closed:caption');
3833 wakaba 1.1
3834     ## As if </caption>
3835     ## have a table element in table scope
3836     my $i;
3837 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3838     my $node = $self->{open_elements}->[$_];
3839 wakaba 1.1 if ($node->[1] eq 'caption') {
3840     $i = $_;
3841     last INSCOPE;
3842     } elsif ({
3843     table => 1, html => 1,
3844     }->{$node->[1]}) {
3845     last INSCOPE;
3846     }
3847     } # INSCOPE
3848     unless (defined $i) {
3849 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:caption');
3850 wakaba 1.1 ## Ignore the token
3851     !!!next-token;
3852     redo B;
3853     }
3854    
3855     ## generate implied end tags
3856     if ({
3857     dd => 1, dt => 1, li => 1, p => 1,
3858     td => 1, th => 1, tr => 1,
3859 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3860 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3861 wakaba 1.1 !!!back-token; # <?>
3862     $token = {type => 'end tag', tag_name => 'caption'};
3863     !!!back-token;
3864     $token = {type => 'end tag',
3865 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3866 wakaba 1.1 redo B;
3867     }
3868    
3869 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'caption') {
3870     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3871 wakaba 1.1 }
3872    
3873 wakaba 1.3 splice @{$self->{open_elements}}, $i;
3874 wakaba 1.1
3875     $clear_up_to_marker->();
3876    
3877 wakaba 1.3 $self->{insertion_mode} = 'in table';
3878 wakaba 1.1
3879     ## reprocess
3880     redo B;
3881     } else {
3882     #
3883     }
3884     } elsif ($token->{type} eq 'end tag') {
3885     if ($token->{tag_name} eq 'caption') {
3886     ## have a table element in table scope
3887     my $i;
3888 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3889     my $node = $self->{open_elements}->[$_];
3890 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
3891     $i = $_;
3892     last INSCOPE;
3893     } elsif ({
3894     table => 1, html => 1,
3895     }->{$node->[1]}) {
3896     last INSCOPE;
3897     }
3898     } # INSCOPE
3899     unless (defined $i) {
3900 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3901 wakaba 1.1 ## Ignore the token
3902     !!!next-token;
3903     redo B;
3904     }
3905    
3906     ## generate implied end tags
3907     if ({
3908     dd => 1, dt => 1, li => 1, p => 1,
3909     td => 1, th => 1, tr => 1,
3910 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3911 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3912 wakaba 1.1 !!!back-token;
3913     $token = {type => 'end tag',
3914 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3915 wakaba 1.1 redo B;
3916     }
3917    
3918 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'caption') {
3919     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3920 wakaba 1.1 }
3921    
3922 wakaba 1.3 splice @{$self->{open_elements}}, $i;
3923 wakaba 1.1
3924     $clear_up_to_marker->();
3925    
3926 wakaba 1.3 $self->{insertion_mode} = 'in table';
3927 wakaba 1.1
3928     !!!next-token;
3929     redo B;
3930     } elsif ($token->{tag_name} eq 'table') {
3931 wakaba 1.3 !!!parse-error (type => 'not closed:caption');
3932 wakaba 1.1
3933     ## As if </caption>
3934     ## have a table element in table scope
3935     my $i;
3936 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3937     my $node = $self->{open_elements}->[$_];
3938 wakaba 1.1 if ($node->[1] eq 'caption') {
3939     $i = $_;
3940     last INSCOPE;
3941     } elsif ({
3942     table => 1, html => 1,
3943     }->{$node->[1]}) {
3944     last INSCOPE;
3945     }
3946     } # INSCOPE
3947     unless (defined $i) {
3948 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:caption');
3949 wakaba 1.1 ## Ignore the token
3950     !!!next-token;
3951     redo B;
3952     }
3953    
3954     ## generate implied end tags
3955     if ({
3956     dd => 1, dt => 1, li => 1, p => 1,
3957     td => 1, th => 1, tr => 1,
3958 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
3959 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
3960 wakaba 1.1 !!!back-token; # </table>
3961     $token = {type => 'end tag', tag_name => 'caption'};
3962     !!!back-token;
3963     $token = {type => 'end tag',
3964 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
3965 wakaba 1.1 redo B;
3966     }
3967    
3968 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'caption') {
3969     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
3970 wakaba 1.1 }
3971    
3972 wakaba 1.3 splice @{$self->{open_elements}}, $i;
3973 wakaba 1.1
3974     $clear_up_to_marker->();
3975    
3976 wakaba 1.3 $self->{insertion_mode} = 'in table';
3977 wakaba 1.1
3978     ## reprocess
3979     redo B;
3980     } elsif ({
3981     body => 1, col => 1, colgroup => 1,
3982     html => 1, tbody => 1, td => 1, tfoot => 1,
3983     th => 1, thead => 1, tr => 1,
3984     }->{$token->{tag_name}}) {
3985 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
3986 wakaba 1.1 ## Ignore the token
3987     redo B;
3988     } else {
3989     #
3990     }
3991     } else {
3992     #
3993     }
3994    
3995     $in_body->($insert_to_current);
3996     redo B;
3997 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in column group') {
3998 wakaba 1.1 if ($token->{type} eq 'character') {
3999     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4000 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4001 wakaba 1.1 unless (length $token->{data}) {
4002     !!!next-token;
4003     redo B;
4004     }
4005     }
4006    
4007     #
4008     } elsif ($token->{type} eq 'comment') {
4009     my $comment = $self->{document}->create_comment ($token->{data});
4010 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
4011 wakaba 1.1 !!!next-token;
4012     redo B;
4013     } elsif ($token->{type} eq 'start tag') {
4014     if ($token->{tag_name} eq 'col') {
4015     !!!insert-element ($token->{tag_name}, $token->{attributes});
4016 wakaba 1.3 pop @{$self->{open_elements}};
4017 wakaba 1.1 !!!next-token;
4018     redo B;
4019     } else {
4020     #
4021     }
4022     } elsif ($token->{type} eq 'end tag') {
4023     if ($token->{tag_name} eq 'colgroup') {
4024 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'html') {
4025     !!!parse-error (type => 'unmatched end tag:colgroup');
4026 wakaba 1.1 ## Ignore the token
4027     !!!next-token;
4028     redo B;
4029     } else {
4030 wakaba 1.3 pop @{$self->{open_elements}}; # colgroup
4031     $self->{insertion_mode} = 'in table';
4032 wakaba 1.1 !!!next-token;
4033     redo B;
4034     }
4035     } elsif ($token->{tag_name} eq 'col') {
4036 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:col');
4037 wakaba 1.1 ## Ignore the token
4038     !!!next-token;
4039     redo B;
4040     } else {
4041     #
4042     }
4043     } else {
4044     #
4045     }
4046    
4047     ## As if </colgroup>
4048 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'html') {
4049     !!!parse-error (type => 'unmatched end tag:colgroup');
4050 wakaba 1.1 ## Ignore the token
4051     !!!next-token;
4052     redo B;
4053     } else {
4054 wakaba 1.3 pop @{$self->{open_elements}}; # colgroup
4055     $self->{insertion_mode} = 'in table';
4056 wakaba 1.1 ## reprocess
4057     redo B;
4058     }
4059 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in table body') {
4060 wakaba 1.1 if ($token->{type} eq 'character') {
4061     ## NOTE: This is a "character in table" code clone.
4062     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4063 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4064 wakaba 1.1
4065     unless (length $token->{data}) {
4066     !!!next-token;
4067     redo B;
4068     }
4069     }
4070    
4071 wakaba 1.3 !!!parse-error (type => 'in table:#character');
4072    
4073 wakaba 1.1 ## As if in body, but insert into foster parent element
4074     ## ISSUE: Spec says that "whenever a node would be inserted
4075     ## into the current node" while characters might not be
4076     ## result in a new Text node.
4077     $reconstruct_active_formatting_elements->($insert_to_foster);
4078    
4079     if ({
4080     table => 1, tbody => 1, tfoot => 1,
4081     thead => 1, tr => 1,
4082 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4083 wakaba 1.1 # MUST
4084     my $foster_parent_element;
4085     my $next_sibling;
4086     my $prev_sibling;
4087 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
4088     if ($self->{open_elements}->[$_]->[1] eq 'table') {
4089     my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4090 wakaba 1.1 if (defined $parent and $parent->node_type == 1) {
4091     $foster_parent_element = $parent;
4092 wakaba 1.3 $next_sibling = $self->{open_elements}->[$_]->[0];
4093 wakaba 1.1 $prev_sibling = $next_sibling->previous_sibling;
4094     } else {
4095 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
4096 wakaba 1.1 $prev_sibling = $foster_parent_element->last_child;
4097     }
4098     last OE;
4099     }
4100     } # OE
4101 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[0]->[0] and
4102 wakaba 1.1 $prev_sibling = $foster_parent_element->last_child
4103     unless defined $foster_parent_element;
4104     if (defined $prev_sibling and
4105     $prev_sibling->node_type == 3) {
4106     $prev_sibling->manakai_append_text ($token->{data});
4107     } else {
4108     $foster_parent_element->insert_before
4109     ($self->{document}->create_text_node ($token->{data}),
4110     $next_sibling);
4111     }
4112     } else {
4113 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4114 wakaba 1.1 }
4115    
4116     !!!next-token;
4117     redo B;
4118     } elsif ($token->{type} eq 'comment') {
4119     ## Copied from 'in table'
4120     my $comment = $self->{document}->create_comment ($token->{data});
4121 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
4122 wakaba 1.1 !!!next-token;
4123     redo B;
4124     } elsif ($token->{type} eq 'start tag') {
4125     if ({
4126     tr => 1,
4127     th => 1, td => 1,
4128     }->{$token->{tag_name}}) {
4129 wakaba 1.3 unless ($token->{tag_name} eq 'tr') {
4130     !!!parse-error (type => 'missing start tag:tr');
4131     }
4132    
4133 wakaba 1.1 ## Clear back to table body context
4134     while (not {
4135     tbody => 1, tfoot => 1, thead => 1, html => 1,
4136 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4137     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4138     pop @{$self->{open_elements}};
4139 wakaba 1.1 }
4140    
4141 wakaba 1.3 $self->{insertion_mode} = 'in row';
4142 wakaba 1.1 if ($token->{tag_name} eq 'tr') {
4143     !!!insert-element ($token->{tag_name}, $token->{attributes});
4144     !!!next-token;
4145     } else {
4146     !!!insert-element ('tr');
4147     ## reprocess
4148     }
4149     redo B;
4150     } elsif ({
4151     caption => 1, col => 1, colgroup => 1,
4152     tbody => 1, tfoot => 1, thead => 1,
4153     }->{$token->{tag_name}}) {
4154     ## have an element in table scope
4155     my $i;
4156 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4157     my $node = $self->{open_elements}->[$_];
4158 wakaba 1.1 if ({
4159     tbody => 1, thead => 1, tfoot => 1,
4160     }->{$node->[1]}) {
4161     $i = $_;
4162     last INSCOPE;
4163     } elsif ({
4164     table => 1, html => 1,
4165     }->{$node->[1]}) {
4166     last INSCOPE;
4167     }
4168     } # INSCOPE
4169     unless (defined $i) {
4170 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4171 wakaba 1.1 ## Ignore the token
4172     !!!next-token;
4173     redo B;
4174     }
4175    
4176     ## Clear back to table body context
4177     while (not {
4178     tbody => 1, tfoot => 1, thead => 1, html => 1,
4179 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4180     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4181     pop @{$self->{open_elements}};
4182 wakaba 1.1 }
4183    
4184     ## As if <{current node}>
4185     ## have an element in table scope
4186     ## true by definition
4187    
4188     ## Clear back to table body context
4189     ## nop by definition
4190    
4191 wakaba 1.3 pop @{$self->{open_elements}};
4192     $self->{insertion_mode} = 'in table';
4193 wakaba 1.1 ## reprocess
4194     redo B;
4195     } elsif ($token->{tag_name} eq 'table') {
4196     ## NOTE: This is a code clone of "table in table"
4197 wakaba 1.3 !!!parse-error (type => 'not closed:table');
4198 wakaba 1.1
4199     ## As if </table>
4200     ## have a table element in table scope
4201     my $i;
4202 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4203     my $node = $self->{open_elements}->[$_];
4204 wakaba 1.1 if ($node->[1] eq 'table') {
4205     $i = $_;
4206     last INSCOPE;
4207     } elsif ({
4208     table => 1, html => 1,
4209     }->{$node->[1]}) {
4210     last INSCOPE;
4211     }
4212     } # INSCOPE
4213     unless (defined $i) {
4214 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:table');
4215 wakaba 1.1 ## Ignore tokens </table><table>
4216     !!!next-token;
4217     redo B;
4218     }
4219    
4220     ## generate implied end tags
4221     if ({
4222     dd => 1, dt => 1, li => 1, p => 1,
4223     td => 1, th => 1, tr => 1,
4224 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
4225 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4226 wakaba 1.1 !!!back-token; # <table>
4227     $token = {type => 'end tag', tag_name => 'table'};
4228     !!!back-token;
4229     $token = {type => 'end tag',
4230 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4231 wakaba 1.1 redo B;
4232     }
4233    
4234 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'table') {
4235     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4236 wakaba 1.1 }
4237    
4238 wakaba 1.3 splice @{$self->{open_elements}}, $i;
4239 wakaba 1.1
4240 wakaba 1.3 $self->_reset_insertion_mode;
4241 wakaba 1.1
4242     ## reprocess
4243     redo B;
4244     } else {
4245     #
4246     }
4247     } elsif ($token->{type} eq 'end tag') {
4248     if ({
4249     tbody => 1, tfoot => 1, thead => 1,
4250     }->{$token->{tag_name}}) {
4251     ## have an element in table scope
4252     my $i;
4253 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4254     my $node = $self->{open_elements}->[$_];
4255 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4256     $i = $_;
4257     last INSCOPE;
4258     } elsif ({
4259     table => 1, html => 1,
4260     }->{$node->[1]}) {
4261     last INSCOPE;
4262     }
4263     } # INSCOPE
4264     unless (defined $i) {
4265 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4266 wakaba 1.1 ## Ignore the token
4267     !!!next-token;
4268     redo B;
4269     }
4270    
4271     ## Clear back to table body context
4272     while (not {
4273     tbody => 1, tfoot => 1, thead => 1, html => 1,
4274 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4275     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4276     pop @{$self->{open_elements}};
4277 wakaba 1.1 }
4278    
4279 wakaba 1.3 pop @{$self->{open_elements}};
4280     $self->{insertion_mode} = 'in table';
4281 wakaba 1.1 !!!next-token;
4282     redo B;
4283     } elsif ($token->{tag_name} eq 'table') {
4284     ## have an element in table scope
4285     my $i;
4286 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4287     my $node = $self->{open_elements}->[$_];
4288 wakaba 1.1 if ({
4289     tbody => 1, thead => 1, tfoot => 1,
4290     }->{$node->[1]}) {
4291     $i = $_;
4292     last INSCOPE;
4293     } elsif ({
4294     table => 1, html => 1,
4295     }->{$node->[1]}) {
4296     last INSCOPE;
4297     }
4298     } # INSCOPE
4299     unless (defined $i) {
4300 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4301 wakaba 1.1 ## Ignore the token
4302     !!!next-token;
4303     redo B;
4304     }
4305    
4306     ## Clear back to table body context
4307     while (not {
4308     tbody => 1, tfoot => 1, thead => 1, html => 1,
4309 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4310     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4311     pop @{$self->{open_elements}};
4312 wakaba 1.1 }
4313    
4314     ## As if <{current node}>
4315     ## have an element in table scope
4316     ## true by definition
4317    
4318     ## Clear back to table body context
4319     ## nop by definition
4320    
4321 wakaba 1.3 pop @{$self->{open_elements}};
4322     $self->{insertion_mode} = 'in table';
4323 wakaba 1.1 ## reprocess
4324     redo B;
4325     } elsif ({
4326     body => 1, caption => 1, col => 1, colgroup => 1,
4327     html => 1, td => 1, th => 1, tr => 1,
4328     }->{$token->{tag_name}}) {
4329 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4330 wakaba 1.1 ## Ignore the token
4331     !!!next-token;
4332     redo B;
4333     } else {
4334     #
4335     }
4336     } else {
4337     #
4338     }
4339    
4340     ## As if in table
4341 wakaba 1.3 !!!parse-error (type => 'in table:'.$token->{tag_name});
4342 wakaba 1.1 $in_body->($insert_to_foster);
4343     redo B;
4344 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in row') {
4345 wakaba 1.1 if ($token->{type} eq 'character') {
4346     ## NOTE: This is a "character in table" code clone.
4347     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4348 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4349 wakaba 1.1
4350     unless (length $token->{data}) {
4351     !!!next-token;
4352     redo B;
4353     }
4354     }
4355    
4356 wakaba 1.3 !!!parse-error (type => 'in table:#character');
4357    
4358 wakaba 1.1 ## As if in body, but insert into foster parent element
4359     ## ISSUE: Spec says that "whenever a node would be inserted
4360     ## into the current node" while characters might not be
4361     ## result in a new Text node.
4362     $reconstruct_active_formatting_elements->($insert_to_foster);
4363    
4364     if ({
4365     table => 1, tbody => 1, tfoot => 1,
4366     thead => 1, tr => 1,
4367 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4368 wakaba 1.1 # MUST
4369     my $foster_parent_element;
4370     my $next_sibling;
4371     my $prev_sibling;
4372 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
4373     if ($self->{open_elements}->[$_]->[1] eq 'table') {
4374     my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
4375 wakaba 1.1 if (defined $parent and $parent->node_type == 1) {
4376     $foster_parent_element = $parent;
4377 wakaba 1.3 $next_sibling = $self->{open_elements}->[$_]->[0];
4378 wakaba 1.1 $prev_sibling = $next_sibling->previous_sibling;
4379     } else {
4380 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
4381 wakaba 1.1 $prev_sibling = $foster_parent_element->last_child;
4382     }
4383     last OE;
4384     }
4385     } # OE
4386 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[0]->[0] and
4387 wakaba 1.1 $prev_sibling = $foster_parent_element->last_child
4388     unless defined $foster_parent_element;
4389     if (defined $prev_sibling and
4390     $prev_sibling->node_type == 3) {
4391     $prev_sibling->manakai_append_text ($token->{data});
4392     } else {
4393     $foster_parent_element->insert_before
4394     ($self->{document}->create_text_node ($token->{data}),
4395     $next_sibling);
4396     }
4397     } else {
4398 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4399 wakaba 1.1 }
4400    
4401     !!!next-token;
4402     redo B;
4403     } elsif ($token->{type} eq 'comment') {
4404     ## Copied from 'in table'
4405     my $comment = $self->{document}->create_comment ($token->{data});
4406 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
4407 wakaba 1.1 !!!next-token;
4408     redo B;
4409     } elsif ($token->{type} eq 'start tag') {
4410     if ($token->{tag_name} eq 'th' or
4411     $token->{tag_name} eq 'td') {
4412     ## Clear back to table row context
4413     while (not {
4414     tr => 1, html => 1,
4415 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4416     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4417     pop @{$self->{open_elements}};
4418 wakaba 1.1 }
4419    
4420     !!!insert-element ($token->{tag_name}, $token->{attributes});
4421 wakaba 1.3 $self->{insertion_mode} = 'in cell';
4422 wakaba 1.1
4423     push @$active_formatting_elements, ['#marker', ''];
4424    
4425     !!!next-token;
4426     redo B;
4427     } elsif ({
4428     caption => 1, col => 1, colgroup => 1,
4429     tbody => 1, tfoot => 1, thead => 1, tr => 1,
4430     }->{$token->{tag_name}}) {
4431     ## As if </tr>
4432     ## have an element in table scope
4433     my $i;
4434 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4435     my $node = $self->{open_elements}->[$_];
4436 wakaba 1.1 if ($node->[1] eq 'tr') {
4437     $i = $_;
4438     last INSCOPE;
4439     } elsif ({
4440     table => 1, html => 1,
4441     }->{$node->[1]}) {
4442     last INSCOPE;
4443     }
4444     } # INSCOPE
4445     unless (defined $i) {
4446 wakaba 1.3 !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});
4447 wakaba 1.1 ## Ignore the token
4448     !!!next-token;
4449     redo B;
4450     }
4451    
4452     ## Clear back to table row context
4453     while (not {
4454     tr => 1, html => 1,
4455 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4456     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4457     pop @{$self->{open_elements}};
4458 wakaba 1.1 }
4459    
4460 wakaba 1.3 pop @{$self->{open_elements}}; # tr
4461     $self->{insertion_mode} = 'in table body';
4462 wakaba 1.1 ## reprocess
4463     redo B;
4464     } elsif ($token->{tag_name} eq 'table') {
4465     ## NOTE: This is a code clone of "table in table"
4466 wakaba 1.3 !!!parse-error (type => 'not closed:table');
4467 wakaba 1.1
4468     ## As if </table>
4469     ## have a table element in table scope
4470     my $i;
4471 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4472     my $node = $self->{open_elements}->[$_];
4473 wakaba 1.1 if ($node->[1] eq 'table') {
4474     $i = $_;
4475     last INSCOPE;
4476     } elsif ({
4477     table => 1, html => 1,
4478     }->{$node->[1]}) {
4479     last INSCOPE;
4480     }
4481     } # INSCOPE
4482     unless (defined $i) {
4483 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:table');
4484 wakaba 1.1 ## Ignore tokens </table><table>
4485     !!!next-token;
4486     redo B;
4487     }
4488    
4489     ## generate implied end tags
4490     if ({
4491     dd => 1, dt => 1, li => 1, p => 1,
4492     td => 1, th => 1, tr => 1,
4493 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
4494 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4495 wakaba 1.1 !!!back-token; # <table>
4496     $token = {type => 'end tag', tag_name => 'table'};
4497     !!!back-token;
4498     $token = {type => 'end tag',
4499 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4500 wakaba 1.1 redo B;
4501     }
4502    
4503 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'table') {
4504     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4505 wakaba 1.1 }
4506    
4507 wakaba 1.3 splice @{$self->{open_elements}}, $i;
4508 wakaba 1.1
4509 wakaba 1.3 $self->_reset_insertion_mode;
4510 wakaba 1.1
4511     ## reprocess
4512     redo B;
4513     } else {
4514     #
4515     }
4516     } elsif ($token->{type} eq 'end tag') {
4517     if ($token->{tag_name} eq 'tr') {
4518     ## have an element in table scope
4519     my $i;
4520 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4521     my $node = $self->{open_elements}->[$_];
4522 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4523     $i = $_;
4524     last INSCOPE;
4525     } elsif ({
4526     table => 1, html => 1,
4527     }->{$node->[1]}) {
4528     last INSCOPE;
4529     }
4530     } # INSCOPE
4531     unless (defined $i) {
4532 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4533 wakaba 1.1 ## Ignore the token
4534     !!!next-token;
4535     redo B;
4536     }
4537    
4538     ## Clear back to table row context
4539     while (not {
4540     tr => 1, html => 1,
4541 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4542     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4543     pop @{$self->{open_elements}};
4544 wakaba 1.1 }
4545    
4546 wakaba 1.3 pop @{$self->{open_elements}}; # tr
4547     $self->{insertion_mode} = 'in table body';
4548 wakaba 1.1 !!!next-token;
4549     redo B;
4550     } elsif ($token->{tag_name} eq 'table') {
4551     ## As if </tr>
4552     ## have an element in table scope
4553     my $i;
4554 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4555     my $node = $self->{open_elements}->[$_];
4556 wakaba 1.1 if ($node->[1] eq 'tr') {
4557     $i = $_;
4558     last INSCOPE;
4559     } elsif ({
4560     table => 1, html => 1,
4561     }->{$node->[1]}) {
4562     last INSCOPE;
4563     }
4564     } # INSCOPE
4565     unless (defined $i) {
4566 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{type});
4567 wakaba 1.1 ## Ignore the token
4568     !!!next-token;
4569     redo B;
4570     }
4571    
4572     ## Clear back to table row context
4573     while (not {
4574     tr => 1, html => 1,
4575 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4576     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4577     pop @{$self->{open_elements}};
4578 wakaba 1.1 }
4579    
4580 wakaba 1.3 pop @{$self->{open_elements}}; # tr
4581     $self->{insertion_mode} = 'in table body';
4582 wakaba 1.1 ## reprocess
4583     redo B;
4584     } elsif ({
4585     tbody => 1, tfoot => 1, thead => 1,
4586     }->{$token->{tag_name}}) {
4587     ## have an element in table scope
4588     my $i;
4589 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4590     my $node = $self->{open_elements}->[$_];
4591 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4592     $i = $_;
4593     last INSCOPE;
4594     } elsif ({
4595     table => 1, html => 1,
4596     }->{$node->[1]}) {
4597     last INSCOPE;
4598     }
4599     } # INSCOPE
4600     unless (defined $i) {
4601 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4602 wakaba 1.1 ## Ignore the token
4603     !!!next-token;
4604     redo B;
4605     }
4606    
4607     ## As if </tr>
4608     ## have an element in table scope
4609     my $i;
4610 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4611     my $node = $self->{open_elements}->[$_];
4612 wakaba 1.1 if ($node->[1] eq 'tr') {
4613     $i = $_;
4614     last INSCOPE;
4615     } elsif ({
4616     table => 1, html => 1,
4617     }->{$node->[1]}) {
4618     last INSCOPE;
4619     }
4620     } # INSCOPE
4621     unless (defined $i) {
4622 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:tr');
4623 wakaba 1.1 ## Ignore the token
4624     !!!next-token;
4625     redo B;
4626     }
4627    
4628     ## Clear back to table row context
4629     while (not {
4630     tr => 1, html => 1,
4631 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4632     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4633     pop @{$self->{open_elements}};
4634 wakaba 1.1 }
4635    
4636 wakaba 1.3 pop @{$self->{open_elements}}; # tr
4637     $self->{insertion_mode} = 'in table body';
4638 wakaba 1.1 ## reprocess
4639     redo B;
4640     } elsif ({
4641     body => 1, caption => 1, col => 1,
4642     colgroup => 1, html => 1, td => 1, th => 1,
4643     }->{$token->{tag_name}}) {
4644 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4645 wakaba 1.1 ## Ignore the token
4646     !!!next-token;
4647     redo B;
4648     } else {
4649     #
4650     }
4651     } else {
4652     #
4653     }
4654    
4655     ## As if in table
4656 wakaba 1.3 !!!parse-error (type => 'in table:'.$token->{tag_name});
4657 wakaba 1.1 $in_body->($insert_to_foster);
4658     redo B;
4659 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in cell') {
4660 wakaba 1.1 if ($token->{type} eq 'character') {
4661     ## NOTE: This is a code clone of "character in body".
4662     $reconstruct_active_formatting_elements->($insert_to_current);
4663    
4664 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4665 wakaba 1.1
4666     !!!next-token;
4667     redo B;
4668     } elsif ($token->{type} eq 'comment') {
4669     ## NOTE: This is a code clone of "comment in body".
4670     my $comment = $self->{document}->create_comment ($token->{data});
4671 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
4672 wakaba 1.1 !!!next-token;
4673     redo B;
4674     } elsif ($token->{type} eq 'start tag') {
4675     if ({
4676     caption => 1, col => 1, colgroup => 1,
4677     tbody => 1, td => 1, tfoot => 1, th => 1,
4678     thead => 1, tr => 1,
4679     }->{$token->{tag_name}}) {
4680     ## have an element in table scope
4681     my $tn;
4682 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4683     my $node = $self->{open_elements}->[$_];
4684 wakaba 1.1 if ($node->[1] eq 'td' or $node->[1] eq 'th') {
4685     $tn = $node->[1];
4686     last INSCOPE;
4687     } elsif ({
4688     table => 1, html => 1,
4689     }->{$node->[1]}) {
4690     last INSCOPE;
4691     }
4692     } # INSCOPE
4693     unless (defined $tn) {
4694 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4695 wakaba 1.1 ## Ignore the token
4696     !!!next-token;
4697     redo B;
4698     }
4699    
4700     ## Close the cell
4701     !!!back-token; # <?>
4702     $token = {type => 'end tag', tag_name => $tn};
4703     redo B;
4704     } else {
4705     #
4706     }
4707     } elsif ($token->{type} eq 'end tag') {
4708     if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {
4709     ## have an element in table scope
4710     my $i;
4711 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4712     my $node = $self->{open_elements}->[$_];
4713 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4714     $i = $_;
4715     last INSCOPE;
4716     } elsif ({
4717     table => 1, html => 1,
4718     }->{$node->[1]}) {
4719     last INSCOPE;
4720     }
4721     } # INSCOPE
4722     unless (defined $i) {
4723 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4724 wakaba 1.1 ## Ignore the token
4725     !!!next-token;
4726     redo B;
4727     }
4728    
4729     ## generate implied end tags
4730     if ({
4731     dd => 1, dt => 1, li => 1, p => 1,
4732     td => ($token->{tag_name} eq 'th'),
4733     th => ($token->{tag_name} eq 'td'),
4734     tr => 1,
4735 wakaba 1.31 tbody => 1, tfoot=> 1, thead => 1,
4736 wakaba 1.3 }->{$self->{open_elements}->[-1]->[1]}) {
4737 wakaba 1.1 !!!back-token;
4738     $token = {type => 'end tag',
4739 wakaba 1.3 tag_name => $self->{open_elements}->[-1]->[1]}; # MUST
4740 wakaba 1.1 redo B;
4741     }
4742    
4743 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {
4744     !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);
4745 wakaba 1.1 }
4746    
4747 wakaba 1.3 splice @{$self->{open_elements}}, $i;
4748 wakaba 1.1
4749     $clear_up_to_marker->();
4750    
4751 wakaba 1.3 $self->{insertion_mode} = 'in row';
4752 wakaba 1.1
4753     !!!next-token;
4754     redo B;
4755     } elsif ({
4756     body => 1, caption => 1, col => 1,
4757     colgroup => 1, html => 1,
4758     }->{$token->{tag_name}}) {
4759 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4760 wakaba 1.1 ## Ignore the token
4761     !!!next-token;
4762     redo B;
4763     } elsif ({
4764     table => 1, tbody => 1, tfoot => 1,
4765     thead => 1, tr => 1,
4766     }->{$token->{tag_name}}) {
4767     ## have an element in table scope
4768     my $i;
4769     my $tn;
4770 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4771     my $node = $self->{open_elements}->[$_];
4772 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4773     $i = $_;
4774     last INSCOPE;
4775     } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {
4776     $tn = $node->[1];
4777     ## NOTE: There is exactly one |td| or |th| element
4778     ## in scope in the stack of open elements by definition.
4779     } elsif ({
4780     table => 1, html => 1,
4781     }->{$node->[1]}) {
4782     last INSCOPE;
4783     }
4784     } # INSCOPE
4785     unless (defined $i) {
4786 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4787 wakaba 1.1 ## Ignore the token
4788     !!!next-token;
4789     redo B;
4790     }
4791    
4792     ## Close the cell
4793     !!!back-token; # </?>
4794     $token = {type => 'end tag', tag_name => $tn};
4795     redo B;
4796     } else {
4797     #
4798     }
4799     } else {
4800     #
4801     }
4802    
4803     $in_body->($insert_to_current);
4804     redo B;
4805 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in select') {
4806 wakaba 1.1 if ($token->{type} eq 'character') {
4807 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4808 wakaba 1.1 !!!next-token;
4809     redo B;
4810     } elsif ($token->{type} eq 'comment') {
4811     my $comment = $self->{document}->create_comment ($token->{data});
4812 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
4813 wakaba 1.1 !!!next-token;
4814     redo B;
4815     } elsif ($token->{type} eq 'start tag') {
4816     if ($token->{tag_name} eq 'option') {
4817 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'option') {
4818 wakaba 1.1 ## As if </option>
4819 wakaba 1.3 pop @{$self->{open_elements}};
4820 wakaba 1.1 }
4821    
4822     !!!insert-element ($token->{tag_name}, $token->{attributes});
4823     !!!next-token;
4824     redo B;
4825     } elsif ($token->{tag_name} eq 'optgroup') {
4826 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'option') {
4827 wakaba 1.1 ## As if </option>
4828 wakaba 1.3 pop @{$self->{open_elements}};
4829 wakaba 1.1 }
4830    
4831 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
4832 wakaba 1.1 ## As if </optgroup>
4833 wakaba 1.3 pop @{$self->{open_elements}};
4834 wakaba 1.1 }
4835    
4836     !!!insert-element ($token->{tag_name}, $token->{attributes});
4837     !!!next-token;
4838     redo B;
4839     } elsif ($token->{tag_name} eq 'select') {
4840 wakaba 1.3 !!!parse-error (type => 'not closed:select');
4841 wakaba 1.1 ## As if </select> instead
4842     ## have an element in table scope
4843     my $i;
4844 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4845     my $node = $self->{open_elements}->[$_];
4846 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4847     $i = $_;
4848     last INSCOPE;
4849     } elsif ({
4850     table => 1, html => 1,
4851     }->{$node->[1]}) {
4852     last INSCOPE;
4853     }
4854     } # INSCOPE
4855     unless (defined $i) {
4856 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:select');
4857 wakaba 1.1 ## Ignore the token
4858     !!!next-token;
4859     redo B;
4860     }
4861    
4862 wakaba 1.3 splice @{$self->{open_elements}}, $i;
4863 wakaba 1.1
4864 wakaba 1.3 $self->_reset_insertion_mode;
4865 wakaba 1.1
4866     !!!next-token;
4867     redo B;
4868     } else {
4869     #
4870     }
4871     } elsif ($token->{type} eq 'end tag') {
4872     if ($token->{tag_name} eq 'optgroup') {
4873 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'option' and
4874     $self->{open_elements}->[-2]->[1] eq 'optgroup') {
4875 wakaba 1.1 ## As if </option>
4876 wakaba 1.3 splice @{$self->{open_elements}}, -2;
4877     } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {
4878     pop @{$self->{open_elements}};
4879 wakaba 1.1 } else {
4880 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4881 wakaba 1.1 ## Ignore the token
4882     }
4883     !!!next-token;
4884     redo B;
4885     } elsif ($token->{tag_name} eq 'option') {
4886 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'option') {
4887     pop @{$self->{open_elements}};
4888 wakaba 1.1 } else {
4889 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4890 wakaba 1.1 ## Ignore the token
4891     }
4892     !!!next-token;
4893     redo B;
4894     } elsif ($token->{tag_name} eq 'select') {
4895     ## have an element in table scope
4896     my $i;
4897 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4898     my $node = $self->{open_elements}->[$_];
4899 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4900     $i = $_;
4901     last INSCOPE;
4902     } elsif ({
4903     table => 1, html => 1,
4904     }->{$node->[1]}) {
4905     last INSCOPE;
4906     }
4907     } # INSCOPE
4908     unless (defined $i) {
4909 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4910 wakaba 1.1 ## Ignore the token
4911     !!!next-token;
4912     redo B;
4913     }
4914    
4915 wakaba 1.3 splice @{$self->{open_elements}}, $i;
4916 wakaba 1.1
4917 wakaba 1.3 $self->_reset_insertion_mode;
4918 wakaba 1.1
4919     !!!next-token;
4920     redo B;
4921     } elsif ({
4922     caption => 1, table => 1, tbody => 1,
4923     tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
4924     }->{$token->{tag_name}}) {
4925 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
4926 wakaba 1.1
4927     ## have an element in table scope
4928     my $i;
4929 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4930     my $node = $self->{open_elements}->[$_];
4931 wakaba 1.1 if ($node->[1] eq $token->{tag_name}) {
4932     $i = $_;
4933     last INSCOPE;
4934     } elsif ({
4935     table => 1, html => 1,
4936     }->{$node->[1]}) {
4937     last INSCOPE;
4938     }
4939     } # INSCOPE
4940     unless (defined $i) {
4941     ## Ignore the token
4942     !!!next-token;
4943     redo B;
4944     }
4945    
4946     ## As if </select>
4947     ## have an element in table scope
4948     undef $i;
4949 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4950     my $node = $self->{open_elements}->[$_];
4951 wakaba 1.1 if ($node->[1] eq 'select') {
4952     $i = $_;
4953     last INSCOPE;
4954     } elsif ({
4955     table => 1, html => 1,
4956     }->{$node->[1]}) {
4957     last INSCOPE;
4958     }
4959     } # INSCOPE
4960     unless (defined $i) {
4961 wakaba 1.3 !!!parse-error (type => 'unmatched end tag:select');
4962 wakaba 1.1 ## Ignore the </select> token
4963     !!!next-token; ## TODO: ok?
4964     redo B;
4965     }
4966    
4967 wakaba 1.3 splice @{$self->{open_elements}}, $i;
4968 wakaba 1.1
4969 wakaba 1.3 $self->_reset_insertion_mode;
4970 wakaba 1.1
4971     ## reprocess
4972     redo B;
4973     } else {
4974     #
4975     }
4976     } else {
4977     #
4978     }
4979    
4980 wakaba 1.3 !!!parse-error (type => 'in select:'.$token->{tag_name});
4981 wakaba 1.1 ## Ignore the token
4982     !!!next-token;
4983     redo B;
4984 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'after body') {
4985 wakaba 1.1 if ($token->{type} eq 'character') {
4986     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
4987     ## As if in body
4988     $reconstruct_active_formatting_elements->($insert_to_current);
4989    
4990 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
4991 wakaba 1.1
4992     unless (length $token->{data}) {
4993     !!!next-token;
4994     redo B;
4995     }
4996     }
4997    
4998     #
4999 wakaba 1.3 !!!parse-error (type => 'after body:#'.$token->{type});
5000 wakaba 1.1 } elsif ($token->{type} eq 'comment') {
5001     my $comment = $self->{document}->create_comment ($token->{data});
5002 wakaba 1.3 $self->{open_elements}->[0]->[0]->append_child ($comment);
5003 wakaba 1.1 !!!next-token;
5004     redo B;
5005 wakaba 1.3 } elsif ($token->{type} eq 'start tag') {
5006     !!!parse-error (type => 'after body:'.$token->{tag_name});
5007     #
5008 wakaba 1.1 } elsif ($token->{type} eq 'end tag') {
5009     if ($token->{tag_name} eq 'html') {
5010 wakaba 1.3 if (defined $self->{inner_html_node}) {
5011     !!!parse-error (type => 'unmatched end tag:html');
5012     ## Ignore the token
5013     !!!next-token;
5014     redo B;
5015     } else {
5016     $phase = 'trailing end';
5017     !!!next-token;
5018     redo B;
5019     }
5020 wakaba 1.1 } else {
5021 wakaba 1.3 !!!parse-error (type => 'after body:/'.$token->{tag_name});
5022 wakaba 1.1 }
5023     } else {
5024 wakaba 1.3 !!!parse-error (type => 'after body:#'.$token->{type});
5025 wakaba 1.1 }
5026    
5027 wakaba 1.3 $self->{insertion_mode} = 'in body';
5028 wakaba 1.1 ## reprocess
5029     redo B;
5030 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'in frameset') {
5031 wakaba 1.1 if ($token->{type} eq 'character') {
5032     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5033 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5034 wakaba 1.1
5035     unless (length $token->{data}) {
5036     !!!next-token;
5037     redo B;
5038     }
5039     }
5040    
5041     #
5042     } elsif ($token->{type} eq 'comment') {
5043     my $comment = $self->{document}->create_comment ($token->{data});
5044 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
5045 wakaba 1.1 !!!next-token;
5046     redo B;
5047     } elsif ($token->{type} eq 'start tag') {
5048     if ($token->{tag_name} eq 'frameset') {
5049     !!!insert-element ($token->{tag_name}, $token->{attributes});
5050     !!!next-token;
5051     redo B;
5052     } elsif ($token->{tag_name} eq 'frame') {
5053     !!!insert-element ($token->{tag_name}, $token->{attributes});
5054 wakaba 1.3 pop @{$self->{open_elements}};
5055 wakaba 1.1 !!!next-token;
5056     redo B;
5057     } elsif ($token->{tag_name} eq 'noframes') {
5058     $in_body->($insert_to_current);
5059     redo B;
5060     } else {
5061     #
5062     }
5063     } elsif ($token->{type} eq 'end tag') {
5064     if ($token->{tag_name} eq 'frameset') {
5065 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] eq 'html' and
5066     @{$self->{open_elements}} == 1) {
5067     !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});
5068 wakaba 1.1 ## Ignore the token
5069     !!!next-token;
5070     } else {
5071 wakaba 1.3 pop @{$self->{open_elements}};
5072 wakaba 1.1 !!!next-token;
5073     }
5074    
5075     ## if not inner_html and
5076 wakaba 1.3 if ($self->{open_elements}->[-1]->[1] ne 'frameset') {
5077     $self->{insertion_mode} = 'after frameset';
5078 wakaba 1.1 }
5079     redo B;
5080     } else {
5081     #
5082     }
5083     } else {
5084     #
5085     }
5086    
5087 wakaba 1.3 if (defined $token->{tag_name}) {
5088 wakaba 1.30 !!!parse-error (type => 'in frameset:'.($token->{type} eq 'end tag' ? '/' : '').$token->{tag_name});
5089 wakaba 1.3 } else {
5090     !!!parse-error (type => 'in frameset:#'.$token->{type});
5091     }
5092 wakaba 1.1 ## Ignore the token
5093     !!!next-token;
5094     redo B;
5095 wakaba 1.3 } elsif ($self->{insertion_mode} eq 'after frameset') {
5096 wakaba 1.1 if ($token->{type} eq 'character') {
5097     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5098 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
5099 wakaba 1.1
5100     unless (length $token->{data}) {
5101     !!!next-token;
5102     redo B;
5103     }
5104     }
5105    
5106     #
5107     } elsif ($token->{type} eq 'comment') {
5108     my $comment = $self->{document}->create_comment ($token->{data});
5109 wakaba 1.3 $self->{open_elements}->[-1]->[0]->append_child ($comment);
5110 wakaba 1.1 !!!next-token;
5111     redo B;
5112     } elsif ($token->{type} eq 'start tag') {
5113     if ($token->{tag_name} eq 'noframes') {
5114     $in_body->($insert_to_current);
5115     redo B;
5116     } else {
5117     #
5118     }
5119     } elsif ($token->{type} eq 'end tag') {
5120     if ($token->{tag_name} eq 'html') {
5121     $phase = 'trailing end';
5122     !!!next-token;
5123     redo B;
5124     } else {
5125     #
5126     }
5127     } else {
5128     #
5129     }
5130    
5131 wakaba 1.3 if (defined $token->{tag_name}) {
5132 wakaba 1.30 !!!parse-error (type => 'after frameset:'.($token->{tag_name} eq 'end tag' ? '/' : '').$token->{tag_name});
5133 wakaba 1.3 } else {
5134     !!!parse-error (type => 'after frameset:#'.$token->{type});
5135     }
5136 wakaba 1.1 ## Ignore the token
5137     !!!next-token;
5138     redo B;
5139    
5140     ## ISSUE: An issue in spec there
5141     } else {
5142 wakaba 1.3 die "$0: $self->{insertion_mode}: Unknown insertion mode";
5143 wakaba 1.1 }
5144     }
5145     } elsif ($phase eq 'trailing end') {
5146     ## states in the main stage is preserved yet # MUST
5147    
5148     if ($token->{type} eq 'DOCTYPE') {
5149 wakaba 1.3 !!!parse-error (type => 'after html:#DOCTYPE');
5150 wakaba 1.1 ## Ignore the token
5151     !!!next-token;
5152     redo B;
5153     } elsif ($token->{type} eq 'comment') {
5154     my $comment = $self->{document}->create_comment ($token->{data});
5155     $self->{document}->append_child ($comment);
5156     !!!next-token;
5157     redo B;
5158     } elsif ($token->{type} eq 'character') {
5159     if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {
5160     my $data = $1;
5161     ## As if in the main phase.
5162     ## NOTE: The insertion mode in the main phase
5163     ## just before the phase has been changed to the trailing
5164     ## end phase is either "after body" or "after frameset".
5165     $reconstruct_active_formatting_elements->($insert_to_current)
5166     if $phase eq 'main';
5167    
5168 wakaba 1.3 $self->{open_elements}->[-1]->[0]->manakai_append_text ($data);
5169 wakaba 1.1
5170     unless (length $token->{data}) {
5171     !!!next-token;
5172     redo B;
5173     }
5174     }
5175    
5176 wakaba 1.3 !!!parse-error (type => 'after html:#character');
5177 wakaba 1.1 $phase = 'main';
5178     ## reprocess
5179     redo B;
5180     } elsif ($token->{type} eq 'start tag' or
5181     $token->{type} eq 'end tag') {
5182 wakaba 1.30 !!!parse-error (type => 'after html:'.($token->{type} eq 'end tag' ? '/' : '').$token->{tag_name});
5183 wakaba 1.1 $phase = 'main';
5184     ## reprocess
5185     redo B;
5186     } elsif ($token->{type} eq 'end-of-file') {
5187     ## Stop parsing
5188     last B;
5189     } else {
5190     die "$0: $token->{type}: Unknown token";
5191     }
5192     }
5193     } # B
5194    
5195     ## Stop parsing # MUST
5196    
5197     ## TODO: script stuffs
5198 wakaba 1.3 } # _tree_construct_main
5199    
5200     sub set_inner_html ($$$) {
5201     my $class = shift;
5202     my $node = shift;
5203     my $s = \$_[0];
5204     my $onerror = $_[1];
5205    
5206     my $nt = $node->node_type;
5207     if ($nt == 9) {
5208     # MUST
5209    
5210     ## Step 1 # MUST
5211     ## TODO: If the document has an active parser, ...
5212     ## ISSUE: There is an issue in the spec.
5213    
5214     ## Step 2 # MUST
5215     my @cn = @{$node->child_nodes};
5216     for (@cn) {
5217     $node->remove_child ($_);
5218     }
5219    
5220     ## Step 3, 4, 5 # MUST
5221     $class->parse_string ($$s => $node, $onerror);
5222     } elsif ($nt == 1) {
5223     ## TODO: If non-html element
5224    
5225     ## NOTE: Most of this code is copied from |parse_string|
5226    
5227     ## Step 1 # MUST
5228 wakaba 1.14 my $this_doc = $node->owner_document;
5229     my $doc = $this_doc->implementation->create_document;
5230 wakaba 1.18 $doc->manakai_is_html (1);
5231 wakaba 1.3 my $p = $class->new;
5232     $p->{document} = $doc;
5233    
5234     ## Step 9 # MUST
5235     my $i = 0;
5236     my $line = 1;
5237     my $column = 0;
5238     $p->{set_next_input_character} = sub {
5239     my $self = shift;
5240 wakaba 1.14
5241     pop @{$self->{prev_input_character}};
5242     unshift @{$self->{prev_input_character}}, $self->{next_input_character};
5243    
5244 wakaba 1.3 $self->{next_input_character} = -1 and return if $i >= length $$s;
5245     $self->{next_input_character} = ord substr $$s, $i++, 1;
5246     $column++;
5247 wakaba 1.4
5248     if ($self->{next_input_character} == 0x000A) { # LF
5249     $line++;
5250     $column = 0;
5251     } elsif ($self->{next_input_character} == 0x000D) { # CR
5252 wakaba 1.15 $i++ if substr ($$s, $i, 1) eq "\x0A";
5253 wakaba 1.3 $self->{next_input_character} = 0x000A; # LF # MUST
5254     $line++;
5255 wakaba 1.4 $column = 0;
5256 wakaba 1.3 } elsif ($self->{next_input_character} > 0x10FFFF) {
5257     $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
5258     } elsif ($self->{next_input_character} == 0x0000) { # NULL
5259 wakaba 1.14 !!!parse-error (type => 'NULL');
5260 wakaba 1.3 $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
5261     }
5262     };
5263 wakaba 1.14 $p->{prev_input_character} = [-1, -1, -1];
5264     $p->{next_input_character} = -1;
5265 wakaba 1.3
5266     my $ponerror = $onerror || sub {
5267     my (%opt) = @_;
5268     warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";
5269     };
5270     $p->{parse_error} = sub {
5271     $ponerror->(@_, line => $line, column => $column);
5272     };
5273    
5274     $p->_initialize_tokenizer;
5275     $p->_initialize_tree_constructor;
5276    
5277     ## Step 2
5278     my $node_ln = $node->local_name;
5279     $p->{content_model_flag} = {
5280     title => 'RCDATA',
5281     textarea => 'RCDATA',
5282     style => 'CDATA',
5283     script => 'CDATA',
5284     xmp => 'CDATA',
5285     iframe => 'CDATA',
5286     noembed => 'CDATA',
5287     noframes => 'CDATA',
5288     noscript => 'CDATA',
5289     plaintext => 'PLAINTEXT',
5290     }->{$node_ln} || 'PCDATA';
5291     ## ISSUE: What is "the name of the element"? local name?
5292    
5293     $p->{inner_html_node} = [$node, $node_ln];
5294    
5295     ## Step 4
5296     my $root = $doc->create_element_ns
5297     ('http://www.w3.org/1999/xhtml', [undef, 'html']);
5298    
5299     ## Step 5 # MUST
5300     $doc->append_child ($root);
5301    
5302     ## Step 6 # MUST
5303     push @{$p->{open_elements}}, [$root, 'html'];
5304    
5305     undef $p->{head_element};
5306    
5307     ## Step 7 # MUST
5308     $p->_reset_insertion_mode;
5309    
5310     ## Step 8 # MUST
5311     my $anode = $node;
5312     AN: while (defined $anode) {
5313     if ($anode->node_type == 1) {
5314     my $nsuri = $anode->namespace_uri;
5315     if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
5316     if ($anode->local_name eq 'form') { ## TODO: case?
5317     $p->{form_element} = $anode;
5318     last AN;
5319     }
5320     }
5321     }
5322     $anode = $anode->parent_node;
5323     } # AN
5324    
5325     ## Step 3 # MUST
5326     ## Step 10 # MUST
5327     {
5328     my $self = $p;
5329     !!!next-token;
5330     }
5331     $p->_tree_construction_main;
5332    
5333     ## Step 11 # MUST
5334     my @cn = @{$node->child_nodes};
5335     for (@cn) {
5336     $node->remove_child ($_);
5337     }
5338     ## ISSUE: mutation events? read-only?
5339    
5340     ## Step 12 # MUST
5341     @cn = @{$root->child_nodes};
5342     for (@cn) {
5343 wakaba 1.14 $this_doc->adopt_node ($_);
5344 wakaba 1.3 $node->append_child ($_);
5345     }
5346 wakaba 1.14 ## ISSUE: mutation events?
5347 wakaba 1.3
5348     $p->_terminate_tree_constructor;
5349     } else {
5350     die "$0: |set_inner_html| is not defined for node of type $nt";
5351     }
5352     } # set_inner_html
5353    
5354     } # tree construction stage
5355 wakaba 1.1
5356     sub get_inner_html ($$$) {
5357 wakaba 1.3 my (undef, $node, $on_error) = @_;
5358 wakaba 1.1
5359     ## Step 1
5360     my $s = '';
5361    
5362     my $in_cdata;
5363     my $parent = $node;
5364     while (defined $parent) {
5365     if ($parent->node_type == 1 and
5366     $parent->namespace_uri eq 'http://www.w3.org/1999/xhtml' and
5367     {
5368     style => 1, script => 1, xmp => 1, iframe => 1,
5369     noembed => 1, noframes => 1, noscript => 1,
5370     }->{$parent->local_name}) { ## TODO: case thingy
5371     $in_cdata = 1;
5372     }
5373     $parent = $parent->parent_node;
5374     }
5375    
5376     ## Step 2
5377     my @node = @{$node->child_nodes};
5378     C: while (@node) {
5379     my $child = shift @node;
5380     unless (ref $child) {
5381     if ($child eq 'cdata-out') {
5382     $in_cdata = 0;
5383     } else {
5384     $s .= $child; # end tag
5385     }
5386     next C;
5387     }
5388    
5389     my $nt = $child->node_type;
5390     if ($nt == 1) { # Element
5391 wakaba 1.27 my $tag_name = $child->tag_name; ## TODO: manakai_tag_name
5392 wakaba 1.1 $s .= '<' . $tag_name;
5393 wakaba 1.27 ## NOTE: Non-HTML case:
5394     ## <http://permalink.gmane.org/gmane.org.w3c.whatwg.discuss/11191>
5395 wakaba 1.1
5396     my @attrs = @{$child->attributes}; # sort order MUST be stable
5397     for my $attr (@attrs) { # order is implementation dependent
5398 wakaba 1.27 my $attr_name = $attr->name; ## TODO: manakai_name
5399 wakaba 1.1 $s .= ' ' . $attr_name . '="';
5400     my $attr_value = $attr->value;
5401     ## escape
5402     $attr_value =~ s/&/&amp;/g;
5403     $attr_value =~ s/</&lt;/g;
5404     $attr_value =~ s/>/&gt;/g;
5405     $attr_value =~ s/"/&quot;/g;
5406     $s .= $attr_value . '"';
5407     }
5408     $s .= '>';
5409    
5410     next C if {
5411     area => 1, base => 1, basefont => 1, bgsound => 1,
5412     br => 1, col => 1, embed => 1, frame => 1, hr => 1,
5413     img => 1, input => 1, link => 1, meta => 1, param => 1,
5414     spacer => 1, wbr => 1,
5415     }->{$tag_name};
5416    
5417 wakaba 1.23 $s .= "\x0A" if $tag_name eq 'pre' or $tag_name eq 'textarea';
5418    
5419 wakaba 1.1 if (not $in_cdata and {
5420     style => 1, script => 1, xmp => 1, iframe => 1,
5421     noembed => 1, noframes => 1, noscript => 1,
5422 wakaba 1.26 plaintext => 1,
5423 wakaba 1.1 }->{$tag_name}) {
5424     unshift @node, 'cdata-out';
5425     $in_cdata = 1;
5426     }
5427    
5428     unshift @node, @{$child->child_nodes}, '</' . $tag_name . '>';
5429     } elsif ($nt == 3 or $nt == 4) {
5430     if ($in_cdata) {
5431     $s .= $child->data;
5432     } else {
5433     my $value = $child->data;
5434     $value =~ s/&/&amp;/g;
5435     $value =~ s/</&lt;/g;
5436     $value =~ s/>/&gt;/g;
5437     $value =~ s/"/&quot;/g;
5438     $s .= $value;
5439     }
5440     } elsif ($nt == 8) {
5441     $s .= '<!--' . $child->data . '-->';
5442     } elsif ($nt == 10) {
5443     $s .= '<!DOCTYPE ' . $child->name . '>';
5444     } elsif ($nt == 5) { # entrefs
5445     push @node, @{$child->child_nodes};
5446     } else {
5447     $on_error->($child) if defined $on_error;
5448     }
5449     ## ISSUE: This code does not support PIs.
5450     } # C
5451    
5452     ## Step 3
5453     return \$s;
5454     } # get_inner_html
5455    
5456     1;
5457 wakaba 1.31 # $Date: 2007/06/30 13:12:32 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24