/[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.208 - (hide annotations) (download) (as text)
Tue Oct 14 02:27:55 2008 UTC (16 years ago) by wakaba
Branch: MAIN
Changes since 1.207: +11 -2612 lines
File MIME type: application/x-wais-source
++ whatpm/Whatpm/ChangeLog	14 Oct 2008 02:26:16 -0000
2008-10-14  Wakaba  <wakaba@suika.fam.cx>

	* Makefile: New rule to make HTML/Tokenizer.pm is added.

	* HTML.pm.src: Tokenizer part moved to another file.

++ whatpm/Whatpm/HTML/ChangeLog	14 Oct 2008 02:25:46 -0000
2008-10-14  Wakaba  <wakaba@suika.fam.cx>

	* Tokenizer.pm.src: New file.

1 wakaba 1.2 package Whatpm::HTML;
2 wakaba 1.1 use strict;
3 wakaba 1.208 our $VERSION=do{my @r=(q$Revision: 1.207 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
4 wakaba 1.63 use Error qw(:try);
5 wakaba 1.1
6 wakaba 1.208 use Whatpm::HTML::Tokenizer;
7    
8 wakaba 1.182 ## NOTE: This module don't check all HTML5 parse errors; character
9     ## encoding related parse errors are expected to be handled by relevant
10     ## modules.
11     ## Parse errors for control characters that are not allowed in HTML5
12     ## documents, for surrogate code points, and for noncharacter code
13     ## points, as well as U+FFFD substitions for characters whose code points
14     ## is higher than U+10FFFF may be detected by combining the parser with
15     ## the checker implemented by Whatpm::Charset::UnicodeChecker (for its
16     ## usage example, see |t/HTML-tree.t| in the Whatpm package or the
17     ## WebHACC::Language::HTML module in the WebHACC package).
18    
19 wakaba 1.18 ## ISSUE:
20     ## var doc = implementation.createDocument (null, null, null);
21     ## doc.write ('');
22     ## alert (doc.compatMode);
23 wakaba 1.1
24 wakaba 1.139 require IO::Handle;
25    
26 wakaba 1.208 ## Namespace URLs
27    
28 wakaba 1.126 my $HTML_NS = q<http://www.w3.org/1999/xhtml>;
29     my $MML_NS = q<http://www.w3.org/1998/Math/MathML>;
30     my $SVG_NS = q<http://www.w3.org/2000/svg>;
31     my $XLINK_NS = q<http://www.w3.org/1999/xlink>;
32     my $XML_NS = q<http://www.w3.org/XML/1998/namespace>;
33     my $XMLNS_NS = q<http://www.w3.org/2000/xmlns/>;
34    
35 wakaba 1.208 ## Element categories
36    
37 wakaba 1.206 ## Bits 12-15
38     sub SPECIAL_EL () { 0b1_000000000000000 }
39     sub SCOPING_EL () { 0b1_00000000000000 }
40     sub FORMATTING_EL () { 0b1_0000000000000 }
41     sub PHRASING_EL () { 0b1_000000000000 }
42    
43     ## Bits 10-11
44 wakaba 1.208 #sub FOREIGN_EL () { 0b1_00000000000 } # see Whatpm::HTML::Tokenizer
45 wakaba 1.206 sub FOREIGN_FLOW_CONTENT_EL () { 0b1_0000000000 }
46    
47     ## Bits 6-9
48     sub TABLE_SCOPING_EL () { 0b1_000000000 }
49     sub TABLE_ROWS_SCOPING_EL () { 0b1_00000000 }
50     sub TABLE_ROW_SCOPING_EL () { 0b1_0000000 }
51     sub TABLE_ROWS_EL () { 0b1_000000 }
52    
53     ## Bit 5
54     sub ADDRESS_DIV_P_EL () { 0b1_00000 }
55    
56     ## NOTE: Used in </body> and EOF algorithms.
57     ## Bit 4
58     sub ALL_END_TAG_OPTIONAL_EL () { 0b1_0000 }
59 wakaba 1.123
60 wakaba 1.151 ## NOTE: Used in "generate implied end tags" algorithm.
61 wakaba 1.194 ## NOTE: There is a code where a modified version of
62     ## END_TAG_OPTIONAL_EL is used in "generate implied end tags"
63     ## implementation (search for the algorithm name).
64 wakaba 1.206 ## Bit 3
65     sub END_TAG_OPTIONAL_EL () { 0b1_000 }
66    
67     ## Bits 0-2
68    
69     sub MISC_SPECIAL_EL () { SPECIAL_EL | 0b000 }
70     sub FORM_EL () { SPECIAL_EL | 0b001 }
71     sub FRAMESET_EL () { SPECIAL_EL | 0b010 }
72     sub HEADING_EL () { SPECIAL_EL | 0b011 }
73     sub SELECT_EL () { SPECIAL_EL | 0b100 }
74     sub SCRIPT_EL () { SPECIAL_EL | 0b101 }
75    
76     sub ADDRESS_DIV_EL () { SPECIAL_EL | ADDRESS_DIV_P_EL | 0b001 }
77     sub BODY_EL () { SPECIAL_EL | ALL_END_TAG_OPTIONAL_EL | 0b001 }
78    
79 wakaba 1.207 sub DTDD_EL () {
80 wakaba 1.206 SPECIAL_EL |
81     END_TAG_OPTIONAL_EL |
82     ALL_END_TAG_OPTIONAL_EL |
83     0b010
84     }
85     sub LI_EL () {
86     SPECIAL_EL |
87     END_TAG_OPTIONAL_EL |
88     ALL_END_TAG_OPTIONAL_EL |
89     0b100
90     }
91     sub P_EL () {
92     SPECIAL_EL |
93     ADDRESS_DIV_P_EL |
94     END_TAG_OPTIONAL_EL |
95     ALL_END_TAG_OPTIONAL_EL |
96     0b001
97 wakaba 1.123 }
98    
99 wakaba 1.206 sub TABLE_ROW_EL () {
100     SPECIAL_EL |
101     TABLE_ROWS_EL |
102     TABLE_ROW_SCOPING_EL |
103     ALL_END_TAG_OPTIONAL_EL |
104     0b001
105     }
106     sub TABLE_ROW_GROUP_EL () {
107     SPECIAL_EL |
108     TABLE_ROWS_EL |
109     TABLE_ROWS_SCOPING_EL |
110     ALL_END_TAG_OPTIONAL_EL |
111     0b001
112 wakaba 1.123 }
113    
114 wakaba 1.206 sub MISC_SCOPING_EL () { SCOPING_EL | 0b000 }
115     sub BUTTON_EL () { SCOPING_EL | 0b001 }
116     sub CAPTION_EL () { SCOPING_EL | 0b010 }
117     sub HTML_EL () {
118     SCOPING_EL |
119     TABLE_SCOPING_EL |
120     TABLE_ROWS_SCOPING_EL |
121     TABLE_ROW_SCOPING_EL |
122     ALL_END_TAG_OPTIONAL_EL |
123     0b001
124 wakaba 1.123 }
125 wakaba 1.206 sub TABLE_EL () {
126     SCOPING_EL |
127     TABLE_ROWS_EL |
128     TABLE_SCOPING_EL |
129     0b001
130 wakaba 1.123 }
131 wakaba 1.206 sub TABLE_CELL_EL () {
132     SCOPING_EL |
133     TABLE_ROW_SCOPING_EL |
134     ALL_END_TAG_OPTIONAL_EL |
135     0b001
136 wakaba 1.123 }
137    
138 wakaba 1.206 sub MISC_FORMATTING_EL () { FORMATTING_EL | 0b000 }
139     sub A_EL () { FORMATTING_EL | 0b001 }
140     sub NOBR_EL () { FORMATTING_EL | 0b010 }
141    
142     sub RUBY_EL () { PHRASING_EL | 0b001 }
143    
144     ## ISSUE: ALL_END_TAG_OPTIONAL_EL?
145     sub OPTGROUP_EL () { PHRASING_EL | END_TAG_OPTIONAL_EL | 0b001 }
146     sub OPTION_EL () { PHRASING_EL | END_TAG_OPTIONAL_EL | 0b010 }
147     sub RUBY_COMPONENT_EL () { PHRASING_EL | END_TAG_OPTIONAL_EL | 0b100 }
148 wakaba 1.123
149 wakaba 1.206 sub MML_AXML_EL () { PHRASING_EL | FOREIGN_EL | 0b001 }
150 wakaba 1.123
151     my $el_category = {
152 wakaba 1.206 a => A_EL,
153     address => ADDRESS_DIV_EL,
154 wakaba 1.123 applet => MISC_SCOPING_EL,
155     area => MISC_SPECIAL_EL,
156 wakaba 1.193 article => MISC_SPECIAL_EL,
157     aside => MISC_SPECIAL_EL,
158 wakaba 1.123 b => FORMATTING_EL,
159     base => MISC_SPECIAL_EL,
160     basefont => MISC_SPECIAL_EL,
161     bgsound => MISC_SPECIAL_EL,
162     big => FORMATTING_EL,
163     blockquote => MISC_SPECIAL_EL,
164     body => BODY_EL,
165     br => MISC_SPECIAL_EL,
166     button => BUTTON_EL,
167     caption => CAPTION_EL,
168     center => MISC_SPECIAL_EL,
169     col => MISC_SPECIAL_EL,
170     colgroup => MISC_SPECIAL_EL,
171 wakaba 1.193 command => MISC_SPECIAL_EL,
172     datagrid => MISC_SPECIAL_EL,
173 wakaba 1.207 dd => DTDD_EL,
174 wakaba 1.193 details => MISC_SPECIAL_EL,
175     dialog => MISC_SPECIAL_EL,
176 wakaba 1.123 dir => MISC_SPECIAL_EL,
177 wakaba 1.206 div => ADDRESS_DIV_EL,
178 wakaba 1.123 dl => MISC_SPECIAL_EL,
179 wakaba 1.207 dt => DTDD_EL,
180 wakaba 1.123 em => FORMATTING_EL,
181     embed => MISC_SPECIAL_EL,
182 wakaba 1.193 eventsource => MISC_SPECIAL_EL,
183 wakaba 1.123 fieldset => MISC_SPECIAL_EL,
184 wakaba 1.193 figure => MISC_SPECIAL_EL,
185 wakaba 1.123 font => FORMATTING_EL,
186 wakaba 1.193 footer => MISC_SPECIAL_EL,
187 wakaba 1.123 form => FORM_EL,
188     frame => MISC_SPECIAL_EL,
189     frameset => FRAMESET_EL,
190     h1 => HEADING_EL,
191     h2 => HEADING_EL,
192     h3 => HEADING_EL,
193     h4 => HEADING_EL,
194     h5 => HEADING_EL,
195     h6 => HEADING_EL,
196     head => MISC_SPECIAL_EL,
197 wakaba 1.193 header => MISC_SPECIAL_EL,
198 wakaba 1.123 hr => MISC_SPECIAL_EL,
199     html => HTML_EL,
200     i => FORMATTING_EL,
201     iframe => MISC_SPECIAL_EL,
202     img => MISC_SPECIAL_EL,
203 wakaba 1.193 #image => MISC_SPECIAL_EL, ## NOTE: Commented out in the spec.
204 wakaba 1.123 input => MISC_SPECIAL_EL,
205     isindex => MISC_SPECIAL_EL,
206     li => LI_EL,
207     link => MISC_SPECIAL_EL,
208     listing => MISC_SPECIAL_EL,
209     marquee => MISC_SCOPING_EL,
210     menu => MISC_SPECIAL_EL,
211     meta => MISC_SPECIAL_EL,
212 wakaba 1.193 nav => MISC_SPECIAL_EL,
213 wakaba 1.206 nobr => NOBR_EL,
214 wakaba 1.123 noembed => MISC_SPECIAL_EL,
215     noframes => MISC_SPECIAL_EL,
216     noscript => MISC_SPECIAL_EL,
217     object => MISC_SCOPING_EL,
218     ol => MISC_SPECIAL_EL,
219     optgroup => OPTGROUP_EL,
220     option => OPTION_EL,
221     p => P_EL,
222     param => MISC_SPECIAL_EL,
223     plaintext => MISC_SPECIAL_EL,
224     pre => MISC_SPECIAL_EL,
225 wakaba 1.151 rp => RUBY_COMPONENT_EL,
226     rt => RUBY_COMPONENT_EL,
227     ruby => RUBY_EL,
228 wakaba 1.123 s => FORMATTING_EL,
229     script => MISC_SPECIAL_EL,
230     select => SELECT_EL,
231 wakaba 1.193 section => MISC_SPECIAL_EL,
232 wakaba 1.123 small => FORMATTING_EL,
233     spacer => MISC_SPECIAL_EL,
234     strike => FORMATTING_EL,
235     strong => FORMATTING_EL,
236     style => MISC_SPECIAL_EL,
237     table => TABLE_EL,
238     tbody => TABLE_ROW_GROUP_EL,
239     td => TABLE_CELL_EL,
240     textarea => MISC_SPECIAL_EL,
241     tfoot => TABLE_ROW_GROUP_EL,
242     th => TABLE_CELL_EL,
243     thead => TABLE_ROW_GROUP_EL,
244     title => MISC_SPECIAL_EL,
245     tr => TABLE_ROW_EL,
246     tt => FORMATTING_EL,
247     u => FORMATTING_EL,
248     ul => MISC_SPECIAL_EL,
249     wbr => MISC_SPECIAL_EL,
250     };
251    
252 wakaba 1.126 my $el_category_f = {
253     $MML_NS => {
254     'annotation-xml' => MML_AXML_EL,
255 wakaba 1.206 mi => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
256     mo => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
257     mn => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
258     ms => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
259     mtext => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
260 wakaba 1.126 },
261     $SVG_NS => {
262 wakaba 1.206 foreignObject => SCOPING_EL | FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
263     desc => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
264     title => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
265 wakaba 1.126 },
266     ## NOTE: In addition, FOREIGN_EL is set to non-HTML elements.
267     };
268    
269 wakaba 1.131 my $svg_attr_name = {
270 wakaba 1.146 attributename => 'attributeName',
271 wakaba 1.131 attributetype => 'attributeType',
272     basefrequency => 'baseFrequency',
273     baseprofile => 'baseProfile',
274     calcmode => 'calcMode',
275     clippathunits => 'clipPathUnits',
276     contentscripttype => 'contentScriptType',
277     contentstyletype => 'contentStyleType',
278     diffuseconstant => 'diffuseConstant',
279     edgemode => 'edgeMode',
280     externalresourcesrequired => 'externalResourcesRequired',
281     filterres => 'filterRes',
282     filterunits => 'filterUnits',
283     glyphref => 'glyphRef',
284     gradienttransform => 'gradientTransform',
285     gradientunits => 'gradientUnits',
286     kernelmatrix => 'kernelMatrix',
287     kernelunitlength => 'kernelUnitLength',
288     keypoints => 'keyPoints',
289     keysplines => 'keySplines',
290     keytimes => 'keyTimes',
291     lengthadjust => 'lengthAdjust',
292     limitingconeangle => 'limitingConeAngle',
293     markerheight => 'markerHeight',
294     markerunits => 'markerUnits',
295     markerwidth => 'markerWidth',
296     maskcontentunits => 'maskContentUnits',
297     maskunits => 'maskUnits',
298     numoctaves => 'numOctaves',
299     pathlength => 'pathLength',
300     patterncontentunits => 'patternContentUnits',
301     patterntransform => 'patternTransform',
302     patternunits => 'patternUnits',
303     pointsatx => 'pointsAtX',
304     pointsaty => 'pointsAtY',
305     pointsatz => 'pointsAtZ',
306     preservealpha => 'preserveAlpha',
307     preserveaspectratio => 'preserveAspectRatio',
308     primitiveunits => 'primitiveUnits',
309     refx => 'refX',
310     refy => 'refY',
311     repeatcount => 'repeatCount',
312     repeatdur => 'repeatDur',
313     requiredextensions => 'requiredExtensions',
314 wakaba 1.146 requiredfeatures => 'requiredFeatures',
315 wakaba 1.131 specularconstant => 'specularConstant',
316     specularexponent => 'specularExponent',
317     spreadmethod => 'spreadMethod',
318     startoffset => 'startOffset',
319     stddeviation => 'stdDeviation',
320     stitchtiles => 'stitchTiles',
321     surfacescale => 'surfaceScale',
322     systemlanguage => 'systemLanguage',
323     tablevalues => 'tableValues',
324     targetx => 'targetX',
325     targety => 'targetY',
326     textlength => 'textLength',
327     viewbox => 'viewBox',
328     viewtarget => 'viewTarget',
329     xchannelselector => 'xChannelSelector',
330     ychannelselector => 'yChannelSelector',
331     zoomandpan => 'zoomAndPan',
332     };
333    
334     my $foreign_attr_xname = {
335     'xlink:actuate' => [$XLINK_NS, ['xlink', 'actuate']],
336     'xlink:arcrole' => [$XLINK_NS, ['xlink', 'arcrole']],
337     'xlink:href' => [$XLINK_NS, ['xlink', 'href']],
338     'xlink:role' => [$XLINK_NS, ['xlink', 'role']],
339     'xlink:show' => [$XLINK_NS, ['xlink', 'show']],
340     'xlink:title' => [$XLINK_NS, ['xlink', 'title']],
341     'xlink:type' => [$XLINK_NS, ['xlink', 'type']],
342     'xml:base' => [$XML_NS, ['xml', 'base']],
343     'xml:lang' => [$XML_NS, ['xml', 'lang']],
344     'xml:space' => [$XML_NS, ['xml', 'space']],
345     'xmlns' => [$XMLNS_NS, [undef, 'xmlns']],
346     'xmlns:xlink' => [$XMLNS_NS, ['xmlns', 'xlink']],
347     };
348    
349     ## ISSUE: xmlns:xlink="non-xlink-ns" is not an error.
350    
351 wakaba 1.192 ## TODO: Invoke the reset algorithm when a resettable element is
352     ## created (cf. HTML5 revision 2259).
353    
354 wakaba 1.63 sub parse_byte_string ($$$$;$) {
355 wakaba 1.138 my $self = shift;
356     my $charset_name = shift;
357     open my $input, '<', ref $_[0] ? $_[0] : \($_[0]);
358     return $self->parse_byte_stream ($charset_name, $input, @_[1..$#_]);
359     } # parse_byte_string
360    
361 wakaba 1.162 sub parse_byte_stream ($$$$;$$) {
362     # my ($self, $charset_name, $byte_stream, $doc, $onerror, $get_wrapper) = @_;
363 wakaba 1.63 my $self = ref $_[0] ? shift : shift->new;
364 wakaba 1.133 my $charset_name = shift;
365 wakaba 1.138 my $byte_stream = $_[0];
366 wakaba 1.133
367 wakaba 1.134 my $onerror = $_[2] || sub {
368     my (%opt) = @_;
369     warn "Parse error ($opt{type})\n";
370     };
371     $self->{parse_error} = $onerror; # updated later by parse_char_string
372    
373 wakaba 1.162 my $get_wrapper = $_[3] || sub ($) {
374     return $_[0]; # $_[0] = byte stream handle, returned = arg to char handle
375     };
376    
377 wakaba 1.133 ## HTML5 encoding sniffing algorithm
378     require Message::Charset::Info;
379     my $charset;
380 wakaba 1.136 my $buffer;
381     my ($char_stream, $e_status);
382 wakaba 1.133
383     SNIFFING: {
384 wakaba 1.160 ## NOTE: By setting |allow_fallback| option true when the
385     ## |get_decode_handle| method is invoked, we ignore what the HTML5
386     ## spec requires, i.e. unsupported encoding should be ignored.
387     ## TODO: We should not do this unless the parser is invoked
388     ## in the conformance checking mode, in which this behavior
389     ## would be useful.
390 wakaba 1.133
391     ## Step 1
392     if (defined $charset_name) {
393 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ($charset_name);
394     ## TODO: Is this ok? Transfer protocol's parameter should be
395     ## interpreted in its semantics?
396 wakaba 1.133
397 wakaba 1.136 ($char_stream, $e_status) = $charset->get_decode_handle
398     ($byte_stream, allow_error_reporting => 1,
399 wakaba 1.133 allow_fallback => 1);
400 wakaba 1.136 if ($char_stream) {
401 wakaba 1.133 $self->{confident} = 1;
402     last SNIFFING;
403 wakaba 1.136 } else {
404 wakaba 1.190 !!!parse-error (type => 'charset:not supported',
405     layer => 'encode',
406     line => 1, column => 1,
407     value => $charset_name,
408     level => $self->{level}->{uncertain});
409 wakaba 1.133 }
410     }
411    
412     ## Step 2
413 wakaba 1.136 my $byte_buffer = '';
414     for (1..1024) {
415     my $char = $byte_stream->getc;
416     last unless defined $char;
417     $byte_buffer .= $char;
418     } ## TODO: timeout
419 wakaba 1.133
420     ## Step 3
421 wakaba 1.136 if ($byte_buffer =~ /^\xFE\xFF/) {
422 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ('utf-16be');
423 wakaba 1.136 ($char_stream, $e_status) = $charset->get_decode_handle
424     ($byte_stream, allow_error_reporting => 1,
425     allow_fallback => 1, byte_buffer => \$byte_buffer);
426 wakaba 1.133 $self->{confident} = 1;
427     last SNIFFING;
428 wakaba 1.136 } elsif ($byte_buffer =~ /^\xFF\xFE/) {
429 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ('utf-16le');
430 wakaba 1.136 ($char_stream, $e_status) = $charset->get_decode_handle
431     ($byte_stream, allow_error_reporting => 1,
432     allow_fallback => 1, byte_buffer => \$byte_buffer);
433 wakaba 1.133 $self->{confident} = 1;
434     last SNIFFING;
435 wakaba 1.136 } elsif ($byte_buffer =~ /^\xEF\xBB\xBF/) {
436 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ('utf-8');
437 wakaba 1.136 ($char_stream, $e_status) = $charset->get_decode_handle
438     ($byte_stream, allow_error_reporting => 1,
439     allow_fallback => 1, byte_buffer => \$byte_buffer);
440 wakaba 1.133 $self->{confident} = 1;
441     last SNIFFING;
442     }
443    
444     ## Step 4
445     ## TODO: <meta charset>
446    
447     ## Step 5
448     ## TODO: from history
449    
450     ## Step 6
451 wakaba 1.65 require Whatpm::Charset::UniversalCharDet;
452 wakaba 1.133 $charset_name = Whatpm::Charset::UniversalCharDet->detect_byte_string
453 wakaba 1.136 ($byte_buffer);
454 wakaba 1.133 if (defined $charset_name) {
455 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ($charset_name);
456 wakaba 1.133
457 wakaba 1.136 require Whatpm::Charset::DecodeHandle;
458     $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
459     ($byte_stream);
460     ($char_stream, $e_status) = $charset->get_decode_handle
461     ($buffer, allow_error_reporting => 1,
462     allow_fallback => 1, byte_buffer => \$byte_buffer);
463     if ($char_stream) {
464     $buffer->{buffer} = $byte_buffer;
465 wakaba 1.153 !!!parse-error (type => 'sniffing:chardet',
466     text => $charset_name,
467     level => $self->{level}->{info},
468     layer => 'encode',
469 wakaba 1.134 line => 1, column => 1);
470 wakaba 1.133 $self->{confident} = 0;
471     last SNIFFING;
472     }
473     }
474    
475     ## Step 7: default
476     ## TODO: Make this configurable.
477 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ('windows-1252');
478 wakaba 1.133 ## NOTE: We choose |windows-1252| here, since |utf-8| should be
479     ## detectable in the step 6.
480 wakaba 1.136 require Whatpm::Charset::DecodeHandle;
481     $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
482     ($byte_stream);
483     ($char_stream, $e_status)
484     = $charset->get_decode_handle ($buffer,
485     allow_error_reporting => 1,
486     allow_fallback => 1,
487     byte_buffer => \$byte_buffer);
488     $buffer->{buffer} = $byte_buffer;
489 wakaba 1.153 !!!parse-error (type => 'sniffing:default',
490     text => 'windows-1252',
491     level => $self->{level}->{info},
492     line => 1, column => 1,
493     layer => 'encode');
494 wakaba 1.63 $self->{confident} = 0;
495 wakaba 1.133 } # SNIFFING
496    
497     if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
498 wakaba 1.160 $self->{input_encoding} = $charset->get_iana_name; ## TODO: Should we set actual charset decoder's encoding name?
499 wakaba 1.153 !!!parse-error (type => 'chardecode:fallback',
500 wakaba 1.160 #text => $self->{input_encoding},
501 wakaba 1.153 level => $self->{level}->{uncertain},
502     line => 1, column => 1,
503     layer => 'encode');
504 wakaba 1.133 } elsif (not ($e_status &
505 wakaba 1.178 Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL ())) {
506 wakaba 1.160 $self->{input_encoding} = $charset->get_iana_name;
507 wakaba 1.153 !!!parse-error (type => 'chardecode:no error',
508     text => $self->{input_encoding},
509     level => $self->{level}->{uncertain},
510     line => 1, column => 1,
511     layer => 'encode');
512 wakaba 1.160 } else {
513     $self->{input_encoding} = $charset->get_iana_name;
514 wakaba 1.63 }
515    
516     $self->{change_encoding} = sub {
517     my $self = shift;
518 wakaba 1.134 $charset_name = shift;
519 wakaba 1.114 my $token = shift;
520 wakaba 1.63
521 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ($charset_name);
522 wakaba 1.136 ($char_stream, $e_status) = $charset->get_decode_handle
523     ($byte_stream, allow_error_reporting => 1, allow_fallback => 1,
524     byte_buffer => \ $buffer->{buffer});
525 wakaba 1.134
526 wakaba 1.136 if ($char_stream) { # if supported
527 wakaba 1.134 ## "Change the encoding" algorithm:
528 wakaba 1.63
529 wakaba 1.134 ## Step 1
530 wakaba 1.149 if ($charset->{category} &
531     Message::Charset::Info::CHARSET_CATEGORY_UTF16 ()) {
532 wakaba 1.161 $charset = Message::Charset::Info->get_by_html_name ('utf-8');
533 wakaba 1.136 ($char_stream, $e_status) = $charset->get_decode_handle
534     ($byte_stream,
535     byte_buffer => \ $buffer->{buffer});
536 wakaba 1.134 }
537     $charset_name = $charset->get_iana_name;
538    
539     ## Step 2
540     if (defined $self->{input_encoding} and
541     $self->{input_encoding} eq $charset_name) {
542 wakaba 1.153 !!!parse-error (type => 'charset label:matching',
543     text => $charset_name,
544     level => $self->{level}->{info});
545 wakaba 1.134 $self->{confident} = 1;
546     return;
547     }
548 wakaba 1.63
549 wakaba 1.153 !!!parse-error (type => 'charset label detected',
550     text => $self->{input_encoding},
551     value => $charset_name,
552     level => $self->{level}->{warn},
553     token => $token);
554 wakaba 1.134
555     ## Step 3
556     # if (can) {
557     ## change the encoding on the fly.
558     #$self->{confident} = 1;
559     #return;
560     # }
561    
562     ## Step 4
563     throw Whatpm::HTML::RestartParser ();
564 wakaba 1.63 }
565     }; # $self->{change_encoding}
566    
567 wakaba 1.136 my $char_onerror = sub {
568     my (undef, $type, %opt) = @_;
569 wakaba 1.153 !!!parse-error (layer => 'encode',
570 wakaba 1.174 line => $self->{line}, column => $self->{column} + 1,
571     %opt, type => $type);
572 wakaba 1.136 if ($opt{octets}) {
573     ${$opt{octets}} = "\x{FFFD}"; # relacement character
574     }
575     };
576 wakaba 1.162
577     my $wrapped_char_stream = $get_wrapper->($char_stream);
578     $wrapped_char_stream->onerror ($char_onerror);
579 wakaba 1.136
580 wakaba 1.182 my @args = ($_[1], $_[2]); # $doc, $onerror - $get_wrapper = undef;
581 wakaba 1.63 my $return;
582     try {
583 wakaba 1.162 $return = $self->parse_char_stream ($wrapped_char_stream, @args);
584 wakaba 1.63 } catch Whatpm::HTML::RestartParser with {
585 wakaba 1.134 ## NOTE: Invoked after {change_encoding}.
586    
587     if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
588 wakaba 1.160 $self->{input_encoding} = $charset->get_iana_name; ## TODO: Should we set actual charset decoder's encoding name?
589 wakaba 1.153 !!!parse-error (type => 'chardecode:fallback',
590     level => $self->{level}->{uncertain},
591 wakaba 1.160 #text => $self->{input_encoding},
592 wakaba 1.153 line => 1, column => 1,
593     layer => 'encode');
594 wakaba 1.134 } elsif (not ($e_status &
595 wakaba 1.178 Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL ())) {
596 wakaba 1.160 $self->{input_encoding} = $charset->get_iana_name;
597 wakaba 1.153 !!!parse-error (type => 'chardecode:no error',
598     text => $self->{input_encoding},
599     level => $self->{level}->{uncertain},
600     line => 1, column => 1,
601     layer => 'encode');
602 wakaba 1.160 } else {
603     $self->{input_encoding} = $charset->get_iana_name;
604 wakaba 1.134 }
605 wakaba 1.63 $self->{confident} = 1;
606 wakaba 1.162
607     $wrapped_char_stream = $get_wrapper->($char_stream);
608     $wrapped_char_stream->onerror ($char_onerror);
609    
610     $return = $self->parse_char_stream ($wrapped_char_stream, @args);
611 wakaba 1.63 };
612     return $return;
613 wakaba 1.138 } # parse_byte_stream
614 wakaba 1.63
615 wakaba 1.71 ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM
616     ## and the HTML layer MUST ignore it. However, we does strip BOM in
617     ## the encoding layer and the HTML layer does not ignore any U+FEFF,
618     ## because the core part of our HTML parser expects a string of character,
619     ## not a string of bytes or code units or anything which might contain a BOM.
620     ## Therefore, any parser interface that accepts a string of bytes,
621     ## such as |parse_byte_string| in this module, must ensure that it does
622     ## strip the BOM and never strip any ZWNBSP.
623    
624 wakaba 1.162 sub parse_char_string ($$$;$$) {
625     #my ($self, $s, $doc, $onerror, $get_wrapper) = @_;
626 wakaba 1.135 my $self = shift;
627 wakaba 1.139 my $s = ref $_[0] ? $_[0] : \($_[0]);
628 wakaba 1.171 require Whatpm::Charset::DecodeHandle;
629     my $input = Whatpm::Charset::DecodeHandle::CharString->new ($s);
630 wakaba 1.135 return $self->parse_char_stream ($input, @_[1..$#_]);
631     } # parse_char_string
632 wakaba 1.162 *parse_string = \&parse_char_string; ## NOTE: Alias for backward compatibility.
633 wakaba 1.63
634 wakaba 1.182 sub parse_char_stream ($$$;$$) {
635 wakaba 1.63 my $self = ref $_[0] ? shift : shift->new;
636 wakaba 1.135 my $input = $_[0];
637 wakaba 1.1 $self->{document} = $_[1];
638 wakaba 1.63 @{$self->{document}->child_nodes} = ();
639 wakaba 1.1
640 wakaba 1.3 ## NOTE: |set_inner_html| copies most of this method's code
641    
642 wakaba 1.63 $self->{confident} = 1 unless exists $self->{confident};
643 wakaba 1.64 $self->{document}->input_encoding ($self->{input_encoding})
644     if defined $self->{input_encoding};
645 wakaba 1.178 ## TODO: |{input_encoding}| is needless?
646 wakaba 1.63
647 wakaba 1.112 $self->{line_prev} = $self->{line} = 1;
648 wakaba 1.179 $self->{column_prev} = -1;
649     $self->{column} = 0;
650 wakaba 1.183 $self->{set_nc} = sub {
651 wakaba 1.1 my $self = shift;
652 wakaba 1.13
653 wakaba 1.178 my $char = '';
654 wakaba 1.183 if (defined $self->{next_nc}) {
655     $char = $self->{next_nc};
656     delete $self->{next_nc};
657     $self->{nc} = ord $char;
658 wakaba 1.139 } else {
659 wakaba 1.179 $self->{char_buffer} = '';
660     $self->{char_buffer_pos} = 0;
661    
662     my $count = $input->manakai_read_until
663 wakaba 1.182 ($self->{char_buffer}, qr/[^\x00\x0A\x0D]/, $self->{char_buffer_pos});
664 wakaba 1.179 if ($count) {
665     $self->{line_prev} = $self->{line};
666     $self->{column_prev} = $self->{column};
667     $self->{column}++;
668 wakaba 1.183 $self->{nc}
669 wakaba 1.179 = ord substr ($self->{char_buffer}, $self->{char_buffer_pos}++, 1);
670     return;
671     }
672    
673 wakaba 1.178 if ($input->read ($char, 1)) {
674 wakaba 1.183 $self->{nc} = ord $char;
675 wakaba 1.178 } else {
676 wakaba 1.183 $self->{nc} = -1;
677 wakaba 1.178 return;
678     }
679 wakaba 1.139 }
680 wakaba 1.112
681     ($self->{line_prev}, $self->{column_prev})
682     = ($self->{line}, $self->{column});
683     $self->{column}++;
684 wakaba 1.1
685 wakaba 1.183 if ($self->{nc} == 0x000A) { # LF
686 wakaba 1.132 !!!cp ('j1');
687 wakaba 1.112 $self->{line}++;
688     $self->{column} = 0;
689 wakaba 1.183 } elsif ($self->{nc} == 0x000D) { # CR
690 wakaba 1.132 !!!cp ('j2');
691 wakaba 1.170 ## TODO: support for abort/streaming
692 wakaba 1.178 my $next = '';
693     if ($input->read ($next, 1) and $next ne "\x0A") {
694 wakaba 1.183 $self->{next_nc} = $next;
695 wakaba 1.135 }
696 wakaba 1.183 $self->{nc} = 0x000A; # LF # MUST
697 wakaba 1.112 $self->{line}++;
698     $self->{column} = 0;
699 wakaba 1.183 } elsif ($self->{nc} == 0x0000) { # NULL
700 wakaba 1.132 !!!cp ('j4');
701 wakaba 1.8 !!!parse-error (type => 'NULL');
702 wakaba 1.183 $self->{nc} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
703 wakaba 1.1 }
704     };
705    
706 wakaba 1.172 $self->{read_until} = sub {
707     #my ($scalar, $specials_range, $offset) = @_;
708 wakaba 1.183 return 0 if defined $self->{next_nc};
709 wakaba 1.180
710 wakaba 1.182 my $pattern = qr/[^$_[1]\x00\x0A\x0D]/;
711 wakaba 1.180 my $offset = $_[2] || 0;
712    
713     if ($self->{char_buffer_pos} < length $self->{char_buffer}) {
714     pos ($self->{char_buffer}) = $self->{char_buffer_pos};
715     if ($self->{char_buffer} =~ /\G(?>$pattern)+/) {
716     substr ($_[0], $offset)
717     = substr ($self->{char_buffer}, $-[0], $+[0] - $-[0]);
718     my $count = $+[0] - $-[0];
719     if ($count) {
720     $self->{column} += $count;
721     $self->{char_buffer_pos} += $count;
722     $self->{line_prev} = $self->{line};
723     $self->{column_prev} = $self->{column} - 1;
724 wakaba 1.183 $self->{nc} = -1;
725 wakaba 1.180 }
726     return $count;
727     } else {
728     return 0;
729     }
730     } else {
731     my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
732     if ($count) {
733     $self->{column} += $count;
734     $self->{line_prev} = $self->{line};
735     $self->{column_prev} = $self->{column} - 1;
736 wakaba 1.183 $self->{nc} = -1;
737 wakaba 1.180 }
738     return $count;
739 wakaba 1.172 }
740     }; # $self->{read_until}
741 wakaba 1.171
742 wakaba 1.3 my $onerror = $_[2] || sub {
743     my (%opt) = @_;
744 wakaba 1.112 my $line = $opt{token} ? $opt{token}->{line} : $opt{line};
745     my $column = $opt{token} ? $opt{token}->{column} : $opt{column};
746     warn "Parse error ($opt{type}) at line $line column $column\n";
747 wakaba 1.3 };
748     $self->{parse_error} = sub {
749 wakaba 1.112 $onerror->(line => $self->{line}, column => $self->{column}, @_);
750 wakaba 1.1 };
751    
752 wakaba 1.182 my $char_onerror = sub {
753     my (undef, $type, %opt) = @_;
754     !!!parse-error (layer => 'encode',
755     line => $self->{line}, column => $self->{column} + 1,
756     %opt, type => $type);
757     }; # $char_onerror
758    
759     if ($_[3]) {
760     $input = $_[3]->($input);
761     $input->onerror ($char_onerror);
762     } else {
763     $input->onerror ($char_onerror) unless defined $input->onerror;
764     }
765    
766 wakaba 1.1 $self->_initialize_tokenizer;
767     $self->_initialize_tree_constructor;
768     $self->_construct_tree;
769     $self->_terminate_tree_constructor;
770    
771 wakaba 1.112 delete $self->{parse_error}; # remove loop
772    
773 wakaba 1.1 return $self->{document};
774 wakaba 1.135 } # parse_char_stream
775 wakaba 1.1
776     sub new ($) {
777     my $class = shift;
778 wakaba 1.134 my $self = bless {
779 wakaba 1.153 level => {must => 'm',
780 wakaba 1.159 should => 's',
781 wakaba 1.153 warn => 'w',
782     info => 'i',
783     uncertain => 'u'},
784 wakaba 1.134 }, $class;
785 wakaba 1.183 $self->{set_nc} = sub {
786     $self->{nc} = -1;
787 wakaba 1.1 };
788     $self->{parse_error} = sub {
789     #
790     };
791 wakaba 1.63 $self->{change_encoding} = sub {
792     # if ($_[0] is a supported encoding) {
793     # run "change the encoding" algorithm;
794     # throw Whatpm::HTML::RestartParser (charset => $new_encoding);
795     # }
796     };
797 wakaba 1.61 $self->{application_cache_selection} = sub {
798     #
799     };
800 wakaba 1.1 return $self;
801     } # new
802    
803 wakaba 1.208 ## Insertion modes
804 wakaba 1.55
805 wakaba 1.54 sub AFTER_HTML_IMS () { 0b100 }
806     sub HEAD_IMS () { 0b1000 }
807     sub BODY_IMS () { 0b10000 }
808 wakaba 1.56 sub BODY_TABLE_IMS () { 0b100000 }
809 wakaba 1.54 sub TABLE_IMS () { 0b1000000 }
810 wakaba 1.56 sub ROW_IMS () { 0b10000000 }
811 wakaba 1.54 sub BODY_AFTER_IMS () { 0b100000000 }
812     sub FRAME_IMS () { 0b1000000000 }
813 wakaba 1.101 sub SELECT_IMS () { 0b10000000000 }
814 wakaba 1.208 #sub IN_FOREIGN_CONTENT_IM () { 0b100000000000 } # see Whatpm::HTML::Tokenizer
815 wakaba 1.126 ## NOTE: "in foreign content" insertion mode is special; it is combined
816     ## with the secondary insertion mode. In this parser, they are stored
817     ## together in the bit-or'ed form.
818 wakaba 1.205 sub IN_CDATA_RCDATA_IM () { 0b1000000000000 }
819     ## NOTE: "in CDATA/RCDATA" insertion mode is also special; it is
820     ## combined with the original insertion mode. In thie parser,
821     ## they are stored together in the bit-or'ed form.
822 wakaba 1.54
823 wakaba 1.84 ## NOTE: "initial" and "before html" insertion modes have no constants.
824    
825     ## NOTE: "after after body" insertion mode.
826 wakaba 1.54 sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
827 wakaba 1.84
828     ## NOTE: "after after frameset" insertion mode.
829 wakaba 1.54 sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
830 wakaba 1.84
831 wakaba 1.54 sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
832     sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
833     sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
834     sub BEFORE_HEAD_IM () { HEAD_IMS | 0b11 }
835     sub IN_BODY_IM () { BODY_IMS }
836 wakaba 1.56 sub IN_CELL_IM () { BODY_IMS | BODY_TABLE_IMS | 0b01 }
837     sub IN_CAPTION_IM () { BODY_IMS | BODY_TABLE_IMS | 0b10 }
838     sub IN_ROW_IM () { TABLE_IMS | ROW_IMS | 0b01 }
839     sub IN_TABLE_BODY_IM () { TABLE_IMS | ROW_IMS | 0b10 }
840 wakaba 1.54 sub IN_TABLE_IM () { TABLE_IMS }
841     sub AFTER_BODY_IM () { BODY_AFTER_IMS }
842     sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
843     sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
844 wakaba 1.101 sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
845     sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
846 wakaba 1.54 sub IN_COLUMN_GROUP_IM () { 0b10 }
847    
848 wakaba 1.1 sub _initialize_tree_constructor ($) {
849     my $self = shift;
850     ## NOTE: $self->{document} MUST be specified before this method is called
851     $self->{document}->strict_error_checking (0);
852     ## TODO: Turn mutation events off # MUST
853     ## TODO: Turn loose Document option (manakai extension) on
854 wakaba 1.18 $self->{document}->manakai_is_html (1); # MUST
855 wakaba 1.154 $self->{document}->set_user_data (manakai_source_line => 1);
856     $self->{document}->set_user_data (manakai_source_column => 1);
857 wakaba 1.1 } # _initialize_tree_constructor
858    
859     sub _terminate_tree_constructor ($) {
860     my $self = shift;
861     $self->{document}->strict_error_checking (1);
862     ## TODO: Turn mutation events on
863     } # _terminate_tree_constructor
864    
865     ## ISSUE: Should append_child (for example) in script executed in tree construction stage fire mutation events?
866    
867 wakaba 1.3 { # tree construction stage
868     my $token;
869    
870 wakaba 1.1 sub _construct_tree ($) {
871     my ($self) = @_;
872    
873     ## When an interactive UA render the $self->{document} available
874     ## to the user, or when it begin accepting user input, are
875     ## not defined.
876    
877     !!!next-token;
878    
879 wakaba 1.3 undef $self->{form_element};
880     undef $self->{head_element};
881 wakaba 1.202 undef $self->{head_element_inserted};
882 wakaba 1.3 $self->{open_elements} = [];
883     undef $self->{inner_html_node};
884 wakaba 1.206 undef $self->{ignore_newline};
885 wakaba 1.3
886 wakaba 1.84 ## NOTE: The "initial" insertion mode.
887 wakaba 1.3 $self->_tree_construction_initial; # MUST
888 wakaba 1.84
889     ## NOTE: The "before html" insertion mode.
890 wakaba 1.3 $self->_tree_construction_root_element;
891 wakaba 1.84 $self->{insertion_mode} = BEFORE_HEAD_IM;
892    
893     ## NOTE: The "before head" insertion mode and so on.
894 wakaba 1.3 $self->_tree_construction_main;
895     } # _construct_tree
896    
897     sub _tree_construction_initial ($) {
898     my $self = shift;
899 wakaba 1.84
900     ## NOTE: "initial" insertion mode
901    
902 wakaba 1.18 INITIAL: {
903 wakaba 1.55 if ($token->{type} == DOCTYPE_TOKEN) {
904 wakaba 1.18 ## NOTE: Conformance checkers MAY, instead of reporting "not HTML5"
905     ## error, switch to a conformance checking mode for another
906     ## language.
907     my $doctype_name = $token->{name};
908     $doctype_name = '' unless defined $doctype_name;
909 wakaba 1.159 $doctype_name =~ tr/a-z/A-Z/; # ASCII case-insensitive
910 wakaba 1.18 if (not defined $token->{name} or # <!DOCTYPE>
911 wakaba 1.183 defined $token->{sysid}) {
912 wakaba 1.79 !!!cp ('t1');
913 wakaba 1.113 !!!parse-error (type => 'not HTML5', token => $token);
914 wakaba 1.18 } elsif ($doctype_name ne 'HTML') {
915 wakaba 1.79 !!!cp ('t2');
916 wakaba 1.113 !!!parse-error (type => 'not HTML5', token => $token);
917 wakaba 1.183 } elsif (defined $token->{pubid}) {
918     if ($token->{pubid} eq 'XSLT-compat') {
919 wakaba 1.159 !!!cp ('t1.2');
920     !!!parse-error (type => 'XSLT-compat', token => $token,
921     level => $self->{level}->{should});
922     } else {
923     !!!parse-error (type => 'not HTML5', token => $token);
924     }
925 wakaba 1.79 } else {
926     !!!cp ('t3');
927 wakaba 1.159 #
928 wakaba 1.18 }
929    
930     my $doctype = $self->{document}->create_document_type_definition
931     ($token->{name}); ## ISSUE: If name is missing (e.g. <!DOCTYPE>)?
932 wakaba 1.122 ## NOTE: Default value for both |public_id| and |system_id| attributes
933     ## are empty strings, so that we don't set any value in missing cases.
934 wakaba 1.183 $doctype->public_id ($token->{pubid}) if defined $token->{pubid};
935     $doctype->system_id ($token->{sysid}) if defined $token->{sysid};
936 wakaba 1.18 ## NOTE: Other DocumentType attributes are null or empty lists.
937     ## ISSUE: internalSubset = null??
938     $self->{document}->append_child ($doctype);
939    
940 wakaba 1.75 if ($token->{quirks} or $doctype_name ne 'HTML') {
941 wakaba 1.79 !!!cp ('t4');
942 wakaba 1.18 $self->{document}->manakai_compat_mode ('quirks');
943 wakaba 1.183 } elsif (defined $token->{pubid}) {
944     my $pubid = $token->{pubid};
945 wakaba 1.18 $pubid =~ tr/a-z/A-z/;
946 wakaba 1.143 my $prefix = [
947     "+//SILMARIL//DTD HTML PRO V0R11 19970101//",
948     "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
949     "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
950     "-//IETF//DTD HTML 2.0 LEVEL 1//",
951     "-//IETF//DTD HTML 2.0 LEVEL 2//",
952     "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//",
953     "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//",
954     "-//IETF//DTD HTML 2.0 STRICT//",
955     "-//IETF//DTD HTML 2.0//",
956     "-//IETF//DTD HTML 2.1E//",
957     "-//IETF//DTD HTML 3.0//",
958     "-//IETF//DTD HTML 3.2 FINAL//",
959     "-//IETF//DTD HTML 3.2//",
960     "-//IETF//DTD HTML 3//",
961     "-//IETF//DTD HTML LEVEL 0//",
962     "-//IETF//DTD HTML LEVEL 1//",
963     "-//IETF//DTD HTML LEVEL 2//",
964     "-//IETF//DTD HTML LEVEL 3//",
965     "-//IETF//DTD HTML STRICT LEVEL 0//",
966     "-//IETF//DTD HTML STRICT LEVEL 1//",
967     "-//IETF//DTD HTML STRICT LEVEL 2//",
968     "-//IETF//DTD HTML STRICT LEVEL 3//",
969     "-//IETF//DTD HTML STRICT//",
970     "-//IETF//DTD HTML//",
971     "-//METRIUS//DTD METRIUS PRESENTATIONAL//",
972     "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//",
973     "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//",
974     "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//",
975     "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//",
976     "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//",
977     "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//",
978     "-//NETSCAPE COMM. CORP.//DTD HTML//",
979     "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//",
980     "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//",
981     "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//",
982     "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//",
983     "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//",
984     "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//",
985     "-//SPYGLASS//DTD HTML 2.0 EXTENDED//",
986     "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//",
987     "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//",
988     "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//",
989     "-//W3C//DTD HTML 3 1995-03-24//",
990     "-//W3C//DTD HTML 3.2 DRAFT//",
991     "-//W3C//DTD HTML 3.2 FINAL//",
992     "-//W3C//DTD HTML 3.2//",
993     "-//W3C//DTD HTML 3.2S DRAFT//",
994     "-//W3C//DTD HTML 4.0 FRAMESET//",
995     "-//W3C//DTD HTML 4.0 TRANSITIONAL//",
996     "-//W3C//DTD HTML EXPERIMETNAL 19960712//",
997     "-//W3C//DTD HTML EXPERIMENTAL 970421//",
998     "-//W3C//DTD W3 HTML//",
999     "-//W3O//DTD W3 HTML 3.0//",
1000     "-//WEBTECHS//DTD MOZILLA HTML 2.0//",
1001     "-//WEBTECHS//DTD MOZILLA HTML//",
1002     ]; # $prefix
1003     my $match;
1004     for (@$prefix) {
1005     if (substr ($prefix, 0, length $_) eq $_) {
1006     $match = 1;
1007     last;
1008     }
1009     }
1010     if ($match or
1011     $pubid eq "-//W3O//DTD W3 HTML STRICT 3.0//EN//" or
1012     $pubid eq "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" or
1013     $pubid eq "HTML") {
1014 wakaba 1.79 !!!cp ('t5');
1015 wakaba 1.18 $self->{document}->manakai_compat_mode ('quirks');
1016 wakaba 1.143 } elsif ($pubid =~ m[^-//W3C//DTD HTML 4.01 FRAMESET//] or
1017     $pubid =~ m[^-//W3C//DTD HTML 4.01 TRANSITIONAL//]) {
1018 wakaba 1.183 if (defined $token->{sysid}) {
1019 wakaba 1.79 !!!cp ('t6');
1020 wakaba 1.18 $self->{document}->manakai_compat_mode ('quirks');
1021     } else {
1022 wakaba 1.79 !!!cp ('t7');
1023 wakaba 1.18 $self->{document}->manakai_compat_mode ('limited quirks');
1024 wakaba 1.3 }
1025 wakaba 1.143 } elsif ($pubid =~ m[^-//W3C//DTD XHTML 1.0 FRAMESET//] or
1026     $pubid =~ m[^-//W3C//DTD XHTML 1.0 TRANSITIONAL//]) {
1027 wakaba 1.79 !!!cp ('t8');
1028 wakaba 1.18 $self->{document}->manakai_compat_mode ('limited quirks');
1029 wakaba 1.79 } else {
1030     !!!cp ('t9');
1031 wakaba 1.18 }
1032 wakaba 1.79 } else {
1033     !!!cp ('t10');
1034 wakaba 1.18 }
1035 wakaba 1.183 if (defined $token->{sysid}) {
1036     my $sysid = $token->{sysid};
1037 wakaba 1.18 $sysid =~ tr/A-Z/a-z/;
1038     if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
1039 wakaba 1.143 ## NOTE: Ensure that |PUBLIC "(limited quirks)" "(quirks)"| is
1040     ## marked as quirks.
1041 wakaba 1.18 $self->{document}->manakai_compat_mode ('quirks');
1042 wakaba 1.79 !!!cp ('t11');
1043     } else {
1044     !!!cp ('t12');
1045 wakaba 1.18 }
1046 wakaba 1.79 } else {
1047     !!!cp ('t13');
1048 wakaba 1.18 }
1049    
1050 wakaba 1.84 ## Go to the "before html" insertion mode.
1051 wakaba 1.18 !!!next-token;
1052     return;
1053     } elsif ({
1054 wakaba 1.55 START_TAG_TOKEN, 1,
1055     END_TAG_TOKEN, 1,
1056     END_OF_FILE_TOKEN, 1,
1057 wakaba 1.18 }->{$token->{type}}) {
1058 wakaba 1.79 !!!cp ('t14');
1059 wakaba 1.113 !!!parse-error (type => 'no DOCTYPE', token => $token);
1060 wakaba 1.18 $self->{document}->manakai_compat_mode ('quirks');
1061 wakaba 1.84 ## Go to the "before html" insertion mode.
1062 wakaba 1.18 ## reprocess
1063 wakaba 1.125 !!!ack-later;
1064 wakaba 1.18 return;
1065 wakaba 1.55 } elsif ($token->{type} == CHARACTER_TOKEN) {
1066 wakaba 1.188 if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
1067 wakaba 1.18 ## Ignore the token
1068 wakaba 1.26
1069 wakaba 1.18 unless (length $token->{data}) {
1070 wakaba 1.79 !!!cp ('t15');
1071 wakaba 1.84 ## Stay in the insertion mode.
1072 wakaba 1.18 !!!next-token;
1073     redo INITIAL;
1074 wakaba 1.79 } else {
1075     !!!cp ('t16');
1076 wakaba 1.3 }
1077 wakaba 1.79 } else {
1078     !!!cp ('t17');
1079 wakaba 1.3 }
1080 wakaba 1.18
1081 wakaba 1.113 !!!parse-error (type => 'no DOCTYPE', token => $token);
1082 wakaba 1.18 $self->{document}->manakai_compat_mode ('quirks');
1083 wakaba 1.84 ## Go to the "before html" insertion mode.
1084 wakaba 1.18 ## reprocess
1085     return;
1086 wakaba 1.55 } elsif ($token->{type} == COMMENT_TOKEN) {
1087 wakaba 1.79 !!!cp ('t18');
1088 wakaba 1.18 my $comment = $self->{document}->create_comment ($token->{data});
1089     $self->{document}->append_child ($comment);
1090    
1091 wakaba 1.84 ## Stay in the insertion mode.
1092 wakaba 1.18 !!!next-token;
1093     redo INITIAL;
1094     } else {
1095 wakaba 1.55 die "$0: $token->{type}: Unknown token type";
1096 wakaba 1.18 }
1097     } # INITIAL
1098 wakaba 1.79
1099     die "$0: _tree_construction_initial: This should be never reached";
1100 wakaba 1.3 } # _tree_construction_initial
1101    
1102     sub _tree_construction_root_element ($) {
1103     my $self = shift;
1104 wakaba 1.84
1105     ## NOTE: "before html" insertion mode.
1106 wakaba 1.3
1107     B: {
1108 wakaba 1.55 if ($token->{type} == DOCTYPE_TOKEN) {
1109 wakaba 1.79 !!!cp ('t19');
1110 wakaba 1.153 !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
1111 wakaba 1.3 ## Ignore the token
1112 wakaba 1.84 ## Stay in the insertion mode.
1113 wakaba 1.3 !!!next-token;
1114     redo B;
1115 wakaba 1.55 } elsif ($token->{type} == COMMENT_TOKEN) {
1116 wakaba 1.79 !!!cp ('t20');
1117 wakaba 1.3 my $comment = $self->{document}->create_comment ($token->{data});
1118     $self->{document}->append_child ($comment);
1119 wakaba 1.84 ## Stay in the insertion mode.
1120 wakaba 1.3 !!!next-token;
1121     redo B;
1122 wakaba 1.55 } elsif ($token->{type} == CHARACTER_TOKEN) {
1123 wakaba 1.188 if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
1124 wakaba 1.26 ## Ignore the token.
1125    
1126 wakaba 1.3 unless (length $token->{data}) {
1127 wakaba 1.79 !!!cp ('t21');
1128 wakaba 1.84 ## Stay in the insertion mode.
1129 wakaba 1.3 !!!next-token;
1130     redo B;
1131 wakaba 1.79 } else {
1132     !!!cp ('t22');
1133 wakaba 1.3 }
1134 wakaba 1.79 } else {
1135     !!!cp ('t23');
1136 wakaba 1.3 }
1137 wakaba 1.61
1138     $self->{application_cache_selection}->(undef);
1139    
1140     #
1141     } elsif ($token->{type} == START_TAG_TOKEN) {
1142 wakaba 1.84 if ($token->{tag_name} eq 'html') {
1143     my $root_element;
1144 wakaba 1.126 !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
1145 wakaba 1.84 $self->{document}->append_child ($root_element);
1146 wakaba 1.123 push @{$self->{open_elements}},
1147     [$root_element, $el_category->{html}];
1148 wakaba 1.84
1149     if ($token->{attributes}->{manifest}) {
1150     !!!cp ('t24');
1151     $self->{application_cache_selection}
1152     ->($token->{attributes}->{manifest}->{value});
1153 wakaba 1.118 ## ISSUE: Spec is unclear on relative references.
1154     ## According to Hixie (#whatwg 2008-03-19), it should be
1155     ## resolved against the base URI of the document in HTML
1156     ## or xml:base of the element in XHTML.
1157 wakaba 1.84 } else {
1158     !!!cp ('t25');
1159     $self->{application_cache_selection}->(undef);
1160     }
1161    
1162 wakaba 1.125 !!!nack ('t25c');
1163    
1164 wakaba 1.84 !!!next-token;
1165     return; ## Go to the "before head" insertion mode.
1166 wakaba 1.61 } else {
1167 wakaba 1.84 !!!cp ('t25.1');
1168     #
1169 wakaba 1.61 }
1170 wakaba 1.3 } elsif ({
1171 wakaba 1.55 END_TAG_TOKEN, 1,
1172     END_OF_FILE_TOKEN, 1,
1173 wakaba 1.3 }->{$token->{type}}) {
1174 wakaba 1.79 !!!cp ('t26');
1175 wakaba 1.3 #
1176     } else {
1177 wakaba 1.55 die "$0: $token->{type}: Unknown token type";
1178 wakaba 1.3 }
1179 wakaba 1.61
1180 wakaba 1.126 my $root_element;
1181     !!!create-element ($root_element, $HTML_NS, 'html',, $token);
1182 wakaba 1.84 $self->{document}->append_child ($root_element);
1183 wakaba 1.123 push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
1184 wakaba 1.84
1185     $self->{application_cache_selection}->(undef);
1186    
1187     ## NOTE: Reprocess the token.
1188 wakaba 1.125 !!!ack-later;
1189 wakaba 1.84 return; ## Go to the "before head" insertion mode.
1190 wakaba 1.3 } # B
1191 wakaba 1.79
1192     die "$0: _tree_construction_root_element: This should never be reached";
1193 wakaba 1.3 } # _tree_construction_root_element
1194    
1195     sub _reset_insertion_mode ($) {
1196     my $self = shift;
1197    
1198     ## Step 1
1199     my $last;
1200    
1201     ## Step 2
1202     my $i = -1;
1203     my $node = $self->{open_elements}->[$i];
1204    
1205     ## Step 3
1206     S3: {
1207 wakaba 1.29 if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
1208     $last = 1;
1209     if (defined $self->{inner_html_node}) {
1210 wakaba 1.140 !!!cp ('t28');
1211     $node = $self->{inner_html_node};
1212     } else {
1213     die "_reset_insertion_mode: t27";
1214 wakaba 1.3 }
1215     }
1216 wakaba 1.140
1217     ## Step 4..14
1218     my $new_mode;
1219     if ($node->[1] & FOREIGN_EL) {
1220     !!!cp ('t28.1');
1221     ## NOTE: Strictly spaking, the line below only applies to MathML and
1222     ## SVG elements. Currently the HTML syntax supports only MathML and
1223     ## SVG elements as foreigners.
1224 wakaba 1.148 $new_mode = IN_BODY_IM | IN_FOREIGN_CONTENT_IM;
1225 wakaba 1.206 } elsif ($node->[1] == TABLE_CELL_EL) {
1226 wakaba 1.140 if ($last) {
1227     !!!cp ('t28.2');
1228     #
1229     } else {
1230     !!!cp ('t28.3');
1231     $new_mode = IN_CELL_IM;
1232     }
1233     } else {
1234     !!!cp ('t28.4');
1235     $new_mode = {
1236 wakaba 1.54 select => IN_SELECT_IM,
1237 wakaba 1.83 ## NOTE: |option| and |optgroup| do not set
1238     ## insertion mode to "in select" by themselves.
1239 wakaba 1.54 tr => IN_ROW_IM,
1240     tbody => IN_TABLE_BODY_IM,
1241     thead => IN_TABLE_BODY_IM,
1242     tfoot => IN_TABLE_BODY_IM,
1243     caption => IN_CAPTION_IM,
1244     colgroup => IN_COLUMN_GROUP_IM,
1245     table => IN_TABLE_IM,
1246     head => IN_BODY_IM, # not in head!
1247     body => IN_BODY_IM,
1248     frameset => IN_FRAMESET_IM,
1249 wakaba 1.123 }->{$node->[0]->manakai_local_name};
1250 wakaba 1.140 }
1251     $self->{insertion_mode} = $new_mode and return if defined $new_mode;
1252 wakaba 1.3
1253 wakaba 1.126 ## Step 15
1254 wakaba 1.206 if ($node->[1] == HTML_EL) {
1255 wakaba 1.3 unless (defined $self->{head_element}) {
1256 wakaba 1.79 !!!cp ('t29');
1257 wakaba 1.54 $self->{insertion_mode} = BEFORE_HEAD_IM;
1258 wakaba 1.3 } else {
1259 wakaba 1.81 ## ISSUE: Can this state be reached?
1260 wakaba 1.79 !!!cp ('t30');
1261 wakaba 1.54 $self->{insertion_mode} = AFTER_HEAD_IM;
1262 wakaba 1.3 }
1263     return;
1264 wakaba 1.79 } else {
1265     !!!cp ('t31');
1266 wakaba 1.3 }
1267    
1268 wakaba 1.126 ## Step 16
1269 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM and return if $last;
1270 wakaba 1.3
1271 wakaba 1.126 ## Step 17
1272 wakaba 1.3 $i--;
1273     $node = $self->{open_elements}->[$i];
1274    
1275 wakaba 1.126 ## Step 18
1276 wakaba 1.3 redo S3;
1277     } # S3
1278 wakaba 1.79
1279     die "$0: _reset_insertion_mode: This line should never be reached";
1280 wakaba 1.3 } # _reset_insertion_mode
1281    
1282     sub _tree_construction_main ($) {
1283     my $self = shift;
1284    
1285 wakaba 1.1 my $active_formatting_elements = [];
1286    
1287     my $reconstruct_active_formatting_elements = sub { # MUST
1288     my $insert = shift;
1289    
1290     ## Step 1
1291     return unless @$active_formatting_elements;
1292    
1293     ## Step 3
1294     my $i = -1;
1295     my $entry = $active_formatting_elements->[$i];
1296    
1297     ## Step 2
1298     return if $entry->[0] eq '#marker';
1299 wakaba 1.3 for (@{$self->{open_elements}}) {
1300 wakaba 1.1 if ($entry->[0] eq $_->[0]) {
1301 wakaba 1.79 !!!cp ('t32');
1302 wakaba 1.1 return;
1303     }
1304     }
1305    
1306     S4: {
1307     ## Step 4
1308     last S4 if $active_formatting_elements->[0]->[0] eq $entry->[0];
1309    
1310     ## Step 5
1311     $i--;
1312     $entry = $active_formatting_elements->[$i];
1313    
1314     ## Step 6
1315     if ($entry->[0] eq '#marker') {
1316 wakaba 1.81 !!!cp ('t33_1');
1317 wakaba 1.1 #
1318     } else {
1319     my $in_open_elements;
1320 wakaba 1.3 OE: for (@{$self->{open_elements}}) {
1321 wakaba 1.1 if ($entry->[0] eq $_->[0]) {
1322 wakaba 1.79 !!!cp ('t33');
1323 wakaba 1.1 $in_open_elements = 1;
1324     last OE;
1325     }
1326     }
1327     if ($in_open_elements) {
1328 wakaba 1.79 !!!cp ('t34');
1329 wakaba 1.1 #
1330     } else {
1331 wakaba 1.81 ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
1332 wakaba 1.79 !!!cp ('t35');
1333 wakaba 1.1 redo S4;
1334     }
1335     }
1336    
1337     ## Step 7
1338     $i++;
1339     $entry = $active_formatting_elements->[$i];
1340     } # S4
1341    
1342     S7: {
1343     ## Step 8
1344     my $clone = [$entry->[0]->clone_node (0), $entry->[1]];
1345    
1346     ## Step 9
1347     $insert->($clone->[0]);
1348 wakaba 1.3 push @{$self->{open_elements}}, $clone;
1349 wakaba 1.1
1350     ## Step 10
1351 wakaba 1.3 $active_formatting_elements->[$i] = $self->{open_elements}->[-1];
1352 wakaba 1.1
1353     ## Step 11
1354     unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
1355 wakaba 1.79 !!!cp ('t36');
1356 wakaba 1.1 ## Step 7'
1357     $i++;
1358     $entry = $active_formatting_elements->[$i];
1359    
1360     redo S7;
1361     }
1362 wakaba 1.79
1363     !!!cp ('t37');
1364 wakaba 1.1 } # S7
1365     }; # $reconstruct_active_formatting_elements
1366    
1367     my $clear_up_to_marker = sub {
1368     for (reverse 0..$#$active_formatting_elements) {
1369     if ($active_formatting_elements->[$_]->[0] eq '#marker') {
1370 wakaba 1.79 !!!cp ('t38');
1371 wakaba 1.1 splice @$active_formatting_elements, $_;
1372     return;
1373     }
1374     }
1375 wakaba 1.79
1376     !!!cp ('t39');
1377 wakaba 1.1 }; # $clear_up_to_marker
1378    
1379 wakaba 1.96 my $insert;
1380    
1381     my $parse_rcdata = sub ($) {
1382     my ($content_model_flag) = @_;
1383 wakaba 1.25
1384     ## Step 1
1385     my $start_tag_name = $token->{tag_name};
1386 wakaba 1.205 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
1387 wakaba 1.25
1388     ## Step 2
1389 wakaba 1.40 $self->{content_model} = $content_model_flag; # CDATA or RCDATA
1390 wakaba 1.13 delete $self->{escape}; # MUST
1391 wakaba 1.25
1392 wakaba 1.205 ## Step 3, 4
1393     $self->{insertion_mode} |= IN_CDATA_RCDATA_IM;
1394    
1395 wakaba 1.125 !!!nack ('t40.1');
1396 wakaba 1.1 !!!next-token;
1397 wakaba 1.25 }; # $parse_rcdata
1398 wakaba 1.1
1399 wakaba 1.96 my $script_start_tag = sub () {
1400 wakaba 1.205 ## Step 1
1401 wakaba 1.1 my $script_el;
1402 wakaba 1.126 !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
1403 wakaba 1.205
1404     ## Step 2
1405 wakaba 1.1 ## TODO: mark as "parser-inserted"
1406    
1407 wakaba 1.205 ## Step 3
1408     ## TODO: Mark as "already executed", if ...
1409    
1410     ## Step 4
1411     $insert->($script_el);
1412    
1413     ## ISSUE: $script_el is not put into the stack
1414     push @{$self->{open_elements}}, [$script_el, $el_category->{script}];
1415    
1416     ## Step 5
1417 wakaba 1.40 $self->{content_model} = CDATA_CONTENT_MODEL;
1418 wakaba 1.13 delete $self->{escape}; # MUST
1419 wakaba 1.1
1420 wakaba 1.205 ## Step 6-7
1421     $self->{insertion_mode} |= IN_CDATA_RCDATA_IM;
1422 wakaba 1.25
1423 wakaba 1.205 !!!nack ('t40.2');
1424 wakaba 1.1 !!!next-token;
1425     }; # $script_start_tag
1426    
1427 wakaba 1.102 ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
1428     ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag.
1429 wakaba 1.202 ## NOTE: $open_tables->[-1]->[2] is set false when non-Text node inserted.
1430 wakaba 1.102 my $open_tables = [[$self->{open_elements}->[0]->[0]]];
1431    
1432 wakaba 1.1 my $formatting_end_tag = sub {
1433 wakaba 1.113 my $end_tag_token = shift;
1434     my $tag_name = $end_tag_token->{tag_name};
1435 wakaba 1.1
1436 wakaba 1.103 ## NOTE: The adoption agency algorithm (AAA).
1437 wakaba 1.102
1438 wakaba 1.1 FET: {
1439     ## Step 1
1440     my $formatting_element;
1441     my $formatting_element_i_in_active;
1442     AFE: for (reverse 0..$#$active_formatting_elements) {
1443 wakaba 1.123 if ($active_formatting_elements->[$_]->[0] eq '#marker') {
1444     !!!cp ('t52');
1445     last AFE;
1446     } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
1447     eq $tag_name) {
1448 wakaba 1.79 !!!cp ('t51');
1449 wakaba 1.1 $formatting_element = $active_formatting_elements->[$_];
1450     $formatting_element_i_in_active = $_;
1451     last AFE;
1452     }
1453     } # AFE
1454     unless (defined $formatting_element) {
1455 wakaba 1.79 !!!cp ('t53');
1456 wakaba 1.153 !!!parse-error (type => 'unmatched end tag', text => $tag_name, token => $end_tag_token);
1457 wakaba 1.1 ## Ignore the token
1458     !!!next-token;
1459     return;
1460     }
1461     ## has an element in scope
1462     my $in_scope = 1;
1463     my $formatting_element_i_in_open;
1464 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
1465     my $node = $self->{open_elements}->[$_];
1466 wakaba 1.1 if ($node->[0] eq $formatting_element->[0]) {
1467     if ($in_scope) {
1468 wakaba 1.79 !!!cp ('t54');
1469 wakaba 1.1 $formatting_element_i_in_open = $_;
1470     last INSCOPE;
1471     } else { # in open elements but not in scope
1472 wakaba 1.79 !!!cp ('t55');
1473 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
1474     text => $token->{tag_name},
1475 wakaba 1.113 token => $end_tag_token);
1476 wakaba 1.1 ## Ignore the token
1477     !!!next-token;
1478     return;
1479     }
1480 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
1481 wakaba 1.79 !!!cp ('t56');
1482 wakaba 1.1 $in_scope = 0;
1483     }
1484     } # INSCOPE
1485     unless (defined $formatting_element_i_in_open) {
1486 wakaba 1.79 !!!cp ('t57');
1487 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
1488     text => $token->{tag_name},
1489 wakaba 1.113 token => $end_tag_token);
1490 wakaba 1.1 pop @$active_formatting_elements; # $formatting_element
1491     !!!next-token; ## TODO: ok?
1492     return;
1493     }
1494 wakaba 1.3 if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
1495 wakaba 1.79 !!!cp ('t58');
1496 wakaba 1.122 !!!parse-error (type => 'not closed',
1497 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
1498 wakaba 1.122 ->manakai_local_name,
1499 wakaba 1.113 token => $end_tag_token);
1500 wakaba 1.1 }
1501    
1502     ## Step 2
1503     my $furthest_block;
1504     my $furthest_block_i_in_open;
1505 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
1506     my $node = $self->{open_elements}->[$_];
1507 wakaba 1.123 if (not ($node->[1] & FORMATTING_EL) and
1508 wakaba 1.1 #not $phrasing_category->{$node->[1]} and
1509 wakaba 1.123 ($node->[1] & SPECIAL_EL or
1510     $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
1511 wakaba 1.79 !!!cp ('t59');
1512 wakaba 1.1 $furthest_block = $node;
1513     $furthest_block_i_in_open = $_;
1514 wakaba 1.203 ## NOTE: The topmost (eldest) node.
1515 wakaba 1.1 } elsif ($node->[0] eq $formatting_element->[0]) {
1516 wakaba 1.79 !!!cp ('t60');
1517 wakaba 1.1 last OE;
1518     }
1519     } # OE
1520    
1521     ## Step 3
1522     unless (defined $furthest_block) { # MUST
1523 wakaba 1.79 !!!cp ('t61');
1524 wakaba 1.3 splice @{$self->{open_elements}}, $formatting_element_i_in_open;
1525 wakaba 1.1 splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
1526     !!!next-token;
1527     return;
1528     }
1529    
1530     ## Step 4
1531 wakaba 1.3 my $common_ancestor_node = $self->{open_elements}->[$formatting_element_i_in_open - 1];
1532 wakaba 1.1
1533     ## Step 5
1534     my $furthest_block_parent = $furthest_block->[0]->parent_node;
1535     if (defined $furthest_block_parent) {
1536 wakaba 1.79 !!!cp ('t62');
1537 wakaba 1.1 $furthest_block_parent->remove_child ($furthest_block->[0]);
1538     }
1539    
1540     ## Step 6
1541     my $bookmark_prev_el
1542     = $active_formatting_elements->[$formatting_element_i_in_active - 1]
1543     ->[0];
1544    
1545     ## Step 7
1546     my $node = $furthest_block;
1547     my $node_i_in_open = $furthest_block_i_in_open;
1548     my $last_node = $furthest_block;
1549     S7: {
1550     ## Step 1
1551     $node_i_in_open--;
1552 wakaba 1.3 $node = $self->{open_elements}->[$node_i_in_open];
1553 wakaba 1.1
1554     ## Step 2
1555     my $node_i_in_active;
1556     S7S2: {
1557     for (reverse 0..$#$active_formatting_elements) {
1558     if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
1559 wakaba 1.79 !!!cp ('t63');
1560 wakaba 1.1 $node_i_in_active = $_;
1561     last S7S2;
1562     }
1563     }
1564 wakaba 1.3 splice @{$self->{open_elements}}, $node_i_in_open, 1;
1565 wakaba 1.1 redo S7;
1566     } # S7S2
1567    
1568     ## Step 3
1569     last S7 if $node->[0] eq $formatting_element->[0];
1570    
1571     ## Step 4
1572     if ($last_node->[0] eq $furthest_block->[0]) {
1573 wakaba 1.79 !!!cp ('t64');
1574 wakaba 1.1 $bookmark_prev_el = $node->[0];
1575     }
1576    
1577     ## Step 5
1578     if ($node->[0]->has_child_nodes ()) {
1579 wakaba 1.79 !!!cp ('t65');
1580 wakaba 1.1 my $clone = [$node->[0]->clone_node (0), $node->[1]];
1581     $active_formatting_elements->[$node_i_in_active] = $clone;
1582 wakaba 1.3 $self->{open_elements}->[$node_i_in_open] = $clone;
1583 wakaba 1.1 $node = $clone;
1584     }
1585    
1586     ## Step 6
1587     $node->[0]->append_child ($last_node->[0]);
1588    
1589     ## Step 7
1590     $last_node = $node;
1591    
1592     ## Step 8
1593     redo S7;
1594     } # S7
1595    
1596     ## Step 8
1597 wakaba 1.123 if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
1598 wakaba 1.102 my $foster_parent_element;
1599     my $next_sibling;
1600 wakaba 1.123 OE: for (reverse 0..$#{$self->{open_elements}}) {
1601 wakaba 1.206 if ($self->{open_elements}->[$_]->[1] == TABLE_EL) {
1602 wakaba 1.102 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
1603     if (defined $parent and $parent->node_type == 1) {
1604     !!!cp ('t65.1');
1605     $foster_parent_element = $parent;
1606     $next_sibling = $self->{open_elements}->[$_]->[0];
1607     } else {
1608     !!!cp ('t65.2');
1609     $foster_parent_element
1610     = $self->{open_elements}->[$_ - 1]->[0];
1611     }
1612     last OE;
1613     }
1614     } # OE
1615     $foster_parent_element = $self->{open_elements}->[0]->[0]
1616     unless defined $foster_parent_element;
1617     $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
1618     $open_tables->[-1]->[1] = 1; # tainted
1619     } else {
1620     !!!cp ('t65.3');
1621     $common_ancestor_node->[0]->append_child ($last_node->[0]);
1622     }
1623 wakaba 1.1
1624     ## Step 9
1625     my $clone = [$formatting_element->[0]->clone_node (0),
1626     $formatting_element->[1]];
1627    
1628     ## Step 10
1629     my @cn = @{$furthest_block->[0]->child_nodes};
1630     $clone->[0]->append_child ($_) for @cn;
1631    
1632     ## Step 11
1633     $furthest_block->[0]->append_child ($clone->[0]);
1634    
1635     ## Step 12
1636     my $i;
1637     AFE: for (reverse 0..$#$active_formatting_elements) {
1638     if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
1639 wakaba 1.79 !!!cp ('t66');
1640 wakaba 1.1 splice @$active_formatting_elements, $_, 1;
1641     $i-- and last AFE if defined $i;
1642     } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
1643 wakaba 1.79 !!!cp ('t67');
1644 wakaba 1.1 $i = $_;
1645     }
1646     } # AFE
1647     splice @$active_formatting_elements, $i + 1, 0, $clone;
1648    
1649     ## Step 13
1650     undef $i;
1651 wakaba 1.3 OE: for (reverse 0..$#{$self->{open_elements}}) {
1652     if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
1653 wakaba 1.79 !!!cp ('t68');
1654 wakaba 1.3 splice @{$self->{open_elements}}, $_, 1;
1655 wakaba 1.1 $i-- and last OE if defined $i;
1656 wakaba 1.3 } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
1657 wakaba 1.79 !!!cp ('t69');
1658 wakaba 1.1 $i = $_;
1659     }
1660     } # OE
1661 wakaba 1.203 splice @{$self->{open_elements}}, $i + 1, 0, $clone;
1662 wakaba 1.1
1663     ## Step 14
1664     redo FET;
1665     } # FET
1666     }; # $formatting_end_tag
1667    
1668 wakaba 1.96 $insert = my $insert_to_current = sub {
1669 wakaba 1.25 $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
1670 wakaba 1.1 }; # $insert_to_current
1671    
1672     my $insert_to_foster = sub {
1673 wakaba 1.95 my $child = shift;
1674 wakaba 1.123 if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
1675 wakaba 1.95 # MUST
1676     my $foster_parent_element;
1677     my $next_sibling;
1678 wakaba 1.123 OE: for (reverse 0..$#{$self->{open_elements}}) {
1679 wakaba 1.206 if ($self->{open_elements}->[$_]->[1] == TABLE_EL) {
1680 wakaba 1.3 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
1681 wakaba 1.1 if (defined $parent and $parent->node_type == 1) {
1682 wakaba 1.79 !!!cp ('t70');
1683 wakaba 1.1 $foster_parent_element = $parent;
1684 wakaba 1.3 $next_sibling = $self->{open_elements}->[$_]->[0];
1685 wakaba 1.1 } else {
1686 wakaba 1.79 !!!cp ('t71');
1687 wakaba 1.1 $foster_parent_element
1688 wakaba 1.3 = $self->{open_elements}->[$_ - 1]->[0];
1689 wakaba 1.1 }
1690     last OE;
1691     }
1692     } # OE
1693 wakaba 1.3 $foster_parent_element = $self->{open_elements}->[0]->[0]
1694 wakaba 1.1 unless defined $foster_parent_element;
1695     $foster_parent_element->insert_before
1696     ($child, $next_sibling);
1697 wakaba 1.95 $open_tables->[-1]->[1] = 1; # tainted
1698     } else {
1699     !!!cp ('t72');
1700     $self->{open_elements}->[-1]->[0]->append_child ($child);
1701     }
1702 wakaba 1.1 }; # $insert_to_foster
1703    
1704 wakaba 1.204 ## NOTE: Insert a character (MUST): When a character is inserted, if
1705     ## the last node that was inserted by the parser is a Text node and
1706     ## the character has to be inserted after that node, then the
1707     ## character is appended to the Text node. However, if any other
1708     ## node is inserted by the parser, then a new Text node is created
1709     ## and the character is appended as that Text node. If I'm not
1710     ## wrong, for a parser with scripting disabled, there are only two
1711     ## cases where this occurs. One is the case where an element node
1712     ## is inserted to the |head| element. This is covered by using the
1713 wakaba 1.202 ## |$self->{head_element_inserted}| flag. Another is the case where
1714     ## an element or comment is inserted into the |table| subtree while
1715     ## foster parenting happens. This is covered by using the [2] flag
1716     ## of the |$open_tables| structure. All other cases are handled
1717     ## simply by calling |manakai_append_text| method.
1718    
1719 wakaba 1.204 ## TODO: |<body><script>document.write("a<br>");
1720     ## document.body.removeChild (document.body.lastChild);
1721     ## document.write ("b")</script>|
1722    
1723 wakaba 1.126 B: while (1) {
1724 wakaba 1.55 if ($token->{type} == DOCTYPE_TOKEN) {
1725 wakaba 1.79 !!!cp ('t73');
1726 wakaba 1.153 !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
1727 wakaba 1.52 ## Ignore the token
1728     ## Stay in the phase
1729     !!!next-token;
1730 wakaba 1.126 next B;
1731 wakaba 1.55 } elsif ($token->{type} == START_TAG_TOKEN and
1732 wakaba 1.52 $token->{tag_name} eq 'html') {
1733 wakaba 1.54 if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
1734 wakaba 1.79 !!!cp ('t79');
1735 wakaba 1.153 !!!parse-error (type => 'after html', text => 'html', token => $token);
1736 wakaba 1.54 $self->{insertion_mode} = AFTER_BODY_IM;
1737     } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
1738 wakaba 1.79 !!!cp ('t80');
1739 wakaba 1.153 !!!parse-error (type => 'after html', text => 'html', token => $token);
1740 wakaba 1.54 $self->{insertion_mode} = AFTER_FRAMESET_IM;
1741 wakaba 1.79 } else {
1742     !!!cp ('t81');
1743 wakaba 1.52 }
1744    
1745 wakaba 1.84 !!!cp ('t82');
1746 wakaba 1.113 !!!parse-error (type => 'not first start tag', token => $token);
1747 wakaba 1.52 my $top_el = $self->{open_elements}->[0]->[0];
1748     for my $attr_name (keys %{$token->{attributes}}) {
1749     unless ($top_el->has_attribute_ns (undef, $attr_name)) {
1750 wakaba 1.79 !!!cp ('t84');
1751 wakaba 1.52 $top_el->set_attribute_ns
1752     (undef, [undef, $attr_name],
1753     $token->{attributes}->{$attr_name}->{value});
1754     }
1755     }
1756 wakaba 1.125 !!!nack ('t84.1');
1757 wakaba 1.52 !!!next-token;
1758 wakaba 1.126 next B;
1759 wakaba 1.55 } elsif ($token->{type} == COMMENT_TOKEN) {
1760 wakaba 1.52 my $comment = $self->{document}->create_comment ($token->{data});
1761 wakaba 1.56 if ($self->{insertion_mode} & AFTER_HTML_IMS) {
1762 wakaba 1.79 !!!cp ('t85');
1763 wakaba 1.52 $self->{document}->append_child ($comment);
1764 wakaba 1.54 } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
1765 wakaba 1.79 !!!cp ('t86');
1766 wakaba 1.52 $self->{open_elements}->[0]->[0]->append_child ($comment);
1767     } else {
1768 wakaba 1.79 !!!cp ('t87');
1769 wakaba 1.52 $self->{open_elements}->[-1]->[0]->append_child ($comment);
1770 wakaba 1.202 $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
1771 wakaba 1.52 }
1772     !!!next-token;
1773 wakaba 1.126 next B;
1774 wakaba 1.205 } elsif ($self->{insertion_mode} & IN_CDATA_RCDATA_IM) {
1775     if ($token->{type} == CHARACTER_TOKEN) {
1776     $token->{data} =~ s/^\x0A// if $self->{ignore_newline};
1777     delete $self->{ignore_newline};
1778    
1779     if (length $token->{data}) {
1780     !!!cp ('t43');
1781     $self->{open_elements}->[-1]->[0]->manakai_append_text
1782     ($token->{data});
1783     } else {
1784     !!!cp ('t43.1');
1785     }
1786     !!!next-token;
1787     next B;
1788     } elsif ($token->{type} == END_TAG_TOKEN) {
1789     delete $self->{ignore_newline};
1790    
1791     if ($token->{tag_name} eq 'script') {
1792     !!!cp ('t50');
1793    
1794     ## Para 1-2
1795     my $script = pop @{$self->{open_elements}};
1796    
1797     ## Para 3
1798     $self->{insertion_mode} &= ~ IN_CDATA_RCDATA_IM;
1799    
1800     ## Para 4
1801     ## TODO: $old_insertion_point = $current_insertion_point;
1802     ## TODO: $current_insertion_point = just before $self->{nc};
1803    
1804     ## Para 5
1805     ## TODO: Run the $script->[0].
1806    
1807     ## Para 6
1808     ## TODO: $current_insertion_point = $old_insertion_point;
1809    
1810     ## Para 7
1811     ## TODO: if ($pending_external_script) {
1812     ## TODO: ...
1813     ## TODO: }
1814    
1815     !!!next-token;
1816     next B;
1817     } else {
1818     !!!cp ('t42');
1819    
1820     pop @{$self->{open_elements}};
1821    
1822     $self->{insertion_mode} &= ~ IN_CDATA_RCDATA_IM;
1823     !!!next-token;
1824     next B;
1825     }
1826     } elsif ($token->{type} == END_OF_FILE_TOKEN) {
1827     delete $self->{ignore_newline};
1828    
1829     !!!cp ('t44');
1830     !!!parse-error (type => 'not closed',
1831     text => $self->{open_elements}->[-1]->[0]
1832     ->manakai_local_name,
1833     token => $token);
1834    
1835 wakaba 1.206 #if ($self->{open_elements}->[-1]->[1] == SCRIPT_EL) {
1836 wakaba 1.205 # ## TODO: Mark as "already executed"
1837     #}
1838    
1839     pop @{$self->{open_elements}};
1840    
1841     $self->{insertion_mode} &= ~ IN_CDATA_RCDATA_IM;
1842     ## Reprocess.
1843     next B;
1844     } else {
1845     die "$0: $token->{type}: In CDATA/RCDATA: Unknown token type";
1846     }
1847 wakaba 1.126 } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
1848     if ($token->{type} == CHARACTER_TOKEN) {
1849     !!!cp ('t87.1');
1850     $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
1851     !!!next-token;
1852     next B;
1853     } elsif ($token->{type} == START_TAG_TOKEN) {
1854 wakaba 1.129 if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
1855     $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
1856 wakaba 1.126 not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
1857     ($token->{tag_name} eq 'svg' and
1858 wakaba 1.206 $self->{open_elements}->[-1]->[1] == MML_AXML_EL)) {
1859 wakaba 1.126 ## NOTE: "using the rules for secondary insertion mode"then"continue"
1860     !!!cp ('t87.2');
1861     #
1862     } elsif ({
1863 wakaba 1.130 b => 1, big => 1, blockquote => 1, body => 1, br => 1,
1864 wakaba 1.146 center => 1, code => 1, dd => 1, div => 1, dl => 1, dt => 1,
1865     em => 1, embed => 1, font => 1, h1 => 1, h2 => 1, h3 => 1,
1866     h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, i => 1,
1867     img => 1, li => 1, listing => 1, menu => 1, meta => 1,
1868     nobr => 1, ol => 1, p => 1, pre => 1, ruby => 1, s => 1,
1869     small => 1, span => 1, strong => 1, strike => 1, sub => 1,
1870     sup => 1, table => 1, tt => 1, u => 1, ul => 1, var => 1,
1871 wakaba 1.126 }->{$token->{tag_name}}) {
1872     !!!cp ('t87.2');
1873     !!!parse-error (type => 'not closed',
1874 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
1875 wakaba 1.126 ->manakai_local_name,
1876     token => $token);
1877    
1878     pop @{$self->{open_elements}}
1879     while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
1880    
1881 wakaba 1.130 $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
1882 wakaba 1.126 ## Reprocess.
1883     next B;
1884     } else {
1885 wakaba 1.131 my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
1886     my $tag_name = $token->{tag_name};
1887     if ($nsuri eq $SVG_NS) {
1888     $tag_name = {
1889     altglyph => 'altGlyph',
1890     altglyphdef => 'altGlyphDef',
1891     altglyphitem => 'altGlyphItem',
1892     animatecolor => 'animateColor',
1893     animatemotion => 'animateMotion',
1894     animatetransform => 'animateTransform',
1895     clippath => 'clipPath',
1896     feblend => 'feBlend',
1897     fecolormatrix => 'feColorMatrix',
1898     fecomponenttransfer => 'feComponentTransfer',
1899     fecomposite => 'feComposite',
1900     feconvolvematrix => 'feConvolveMatrix',
1901     fediffuselighting => 'feDiffuseLighting',
1902     fedisplacementmap => 'feDisplacementMap',
1903     fedistantlight => 'feDistantLight',
1904     feflood => 'feFlood',
1905     fefunca => 'feFuncA',
1906     fefuncb => 'feFuncB',
1907     fefuncg => 'feFuncG',
1908     fefuncr => 'feFuncR',
1909     fegaussianblur => 'feGaussianBlur',
1910     feimage => 'feImage',
1911     femerge => 'feMerge',
1912     femergenode => 'feMergeNode',
1913     femorphology => 'feMorphology',
1914     feoffset => 'feOffset',
1915     fepointlight => 'fePointLight',
1916     fespecularlighting => 'feSpecularLighting',
1917     fespotlight => 'feSpotLight',
1918     fetile => 'feTile',
1919     feturbulence => 'feTurbulence',
1920     foreignobject => 'foreignObject',
1921     glyphref => 'glyphRef',
1922     lineargradient => 'linearGradient',
1923     radialgradient => 'radialGradient',
1924     #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
1925     textpath => 'textPath',
1926     }->{$tag_name} || $tag_name;
1927     }
1928    
1929     ## "adjust SVG attributes" (SVG only) - done in insert-element-f
1930    
1931     ## "adjust foreign attributes" - done in insert-element-f
1932 wakaba 1.126
1933 wakaba 1.131 !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
1934 wakaba 1.126
1935     if ($self->{self_closing}) {
1936     pop @{$self->{open_elements}};
1937     !!!ack ('t87.3');
1938     } else {
1939     !!!cp ('t87.4');
1940     }
1941    
1942     !!!next-token;
1943     next B;
1944     }
1945     } elsif ($token->{type} == END_TAG_TOKEN) {
1946     ## NOTE: "using the rules for secondary insertion mode" then "continue"
1947     !!!cp ('t87.5');
1948     #
1949     } elsif ($token->{type} == END_OF_FILE_TOKEN) {
1950     !!!cp ('t87.6');
1951 wakaba 1.146 !!!parse-error (type => 'not closed',
1952 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
1953 wakaba 1.146 ->manakai_local_name,
1954     token => $token);
1955    
1956     pop @{$self->{open_elements}}
1957     while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
1958    
1959 wakaba 1.200 ## NOTE: |<span><svg>| ... two parse errors, |<svg>| ... a parse error.
1960    
1961 wakaba 1.146 $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
1962     ## Reprocess.
1963     next B;
1964 wakaba 1.126 } else {
1965     die "$0: $token->{type}: Unknown token type";
1966     }
1967     }
1968    
1969     if ($self->{insertion_mode} & HEAD_IMS) {
1970 wakaba 1.55 if ($token->{type} == CHARACTER_TOKEN) {
1971 wakaba 1.188 if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
1972 wakaba 1.99 unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
1973 wakaba 1.202 if ($self->{head_element_inserted}) {
1974     !!!cp ('t88.3');
1975     $self->{open_elements}->[-1]->[0]->append_child
1976     ($self->{document}->create_text_node ($1));
1977     delete $self->{head_element_inserted};
1978     ## NOTE: |</head> <link> |
1979     #
1980     } else {
1981     !!!cp ('t88.2');
1982     $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
1983     ## NOTE: |</head> &#x20;|
1984     #
1985     }
1986 wakaba 1.99 } else {
1987     !!!cp ('t88.1');
1988     ## Ignore the token.
1989 wakaba 1.177 #
1990 wakaba 1.99 }
1991 wakaba 1.52 unless (length $token->{data}) {
1992 wakaba 1.79 !!!cp ('t88');
1993 wakaba 1.52 !!!next-token;
1994 wakaba 1.126 next B;
1995 wakaba 1.1 }
1996 wakaba 1.177 ## TODO: set $token->{column} appropriately
1997 wakaba 1.1 }
1998 wakaba 1.52
1999 wakaba 1.54 if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2000 wakaba 1.79 !!!cp ('t89');
2001 wakaba 1.52 ## As if <head>
2002 wakaba 1.126 !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2003 wakaba 1.52 $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2004 wakaba 1.123 push @{$self->{open_elements}},
2005     [$self->{head_element}, $el_category->{head}];
2006 wakaba 1.52
2007     ## Reprocess in the "in head" insertion mode...
2008     pop @{$self->{open_elements}};
2009    
2010     ## Reprocess in the "after head" insertion mode...
2011 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2012 wakaba 1.79 !!!cp ('t90');
2013 wakaba 1.52 ## As if </noscript>
2014     pop @{$self->{open_elements}};
2015 wakaba 1.153 !!!parse-error (type => 'in noscript:#text', token => $token);
2016 wakaba 1.1
2017 wakaba 1.52 ## Reprocess in the "in head" insertion mode...
2018     ## As if </head>
2019     pop @{$self->{open_elements}};
2020    
2021     ## Reprocess in the "after head" insertion mode...
2022 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2023 wakaba 1.79 !!!cp ('t91');
2024 wakaba 1.52 pop @{$self->{open_elements}};
2025    
2026     ## Reprocess in the "after head" insertion mode...
2027 wakaba 1.79 } else {
2028     !!!cp ('t92');
2029 wakaba 1.1 }
2030 wakaba 1.52
2031 wakaba 1.123 ## "after head" insertion mode
2032     ## As if <body>
2033     !!!insert-element ('body',, $token);
2034     $self->{insertion_mode} = IN_BODY_IM;
2035     ## reprocess
2036 wakaba 1.126 next B;
2037 wakaba 1.123 } elsif ($token->{type} == START_TAG_TOKEN) {
2038     if ($token->{tag_name} eq 'head') {
2039     if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2040     !!!cp ('t93');
2041 wakaba 1.126 !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
2042 wakaba 1.123 $self->{open_elements}->[-1]->[0]->append_child
2043     ($self->{head_element});
2044     push @{$self->{open_elements}},
2045     [$self->{head_element}, $el_category->{head}];
2046     $self->{insertion_mode} = IN_HEAD_IM;
2047 wakaba 1.125 !!!nack ('t93.1');
2048 wakaba 1.123 !!!next-token;
2049 wakaba 1.126 next B;
2050 wakaba 1.125 } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2051 wakaba 1.139 !!!cp ('t93.2');
2052 wakaba 1.153 !!!parse-error (type => 'after head', text => 'head',
2053     token => $token);
2054 wakaba 1.139 ## Ignore the token
2055     !!!nack ('t93.3');
2056     !!!next-token;
2057     next B;
2058 wakaba 1.125 } else {
2059     !!!cp ('t95');
2060 wakaba 1.153 !!!parse-error (type => 'in head:head',
2061     token => $token); # or in head noscript
2062 wakaba 1.125 ## Ignore the token
2063     !!!nack ('t95.1');
2064     !!!next-token;
2065 wakaba 1.126 next B;
2066 wakaba 1.125 }
2067     } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2068 wakaba 1.126 !!!cp ('t96');
2069     ## As if <head>
2070     !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2071     $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2072     push @{$self->{open_elements}},
2073     [$self->{head_element}, $el_category->{head}];
2074 wakaba 1.52
2075 wakaba 1.126 $self->{insertion_mode} = IN_HEAD_IM;
2076     ## Reprocess in the "in head" insertion mode...
2077     } else {
2078     !!!cp ('t97');
2079     }
2080 wakaba 1.52
2081 wakaba 1.202 if ($token->{tag_name} eq 'base') {
2082     if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2083     !!!cp ('t98');
2084     ## As if </noscript>
2085     pop @{$self->{open_elements}};
2086     !!!parse-error (type => 'in noscript', text => 'base',
2087     token => $token);
2088    
2089     $self->{insertion_mode} = IN_HEAD_IM;
2090     ## Reprocess in the "in head" insertion mode...
2091     } else {
2092     !!!cp ('t99');
2093     }
2094 wakaba 1.49
2095 wakaba 1.202 ## NOTE: There is a "as if in head" code clone.
2096     if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2097     !!!cp ('t100');
2098     !!!parse-error (type => 'after head',
2099     text => $token->{tag_name}, token => $token);
2100     push @{$self->{open_elements}},
2101     [$self->{head_element}, $el_category->{head}];
2102     $self->{head_element_inserted} = 1;
2103     } else {
2104     !!!cp ('t101');
2105     }
2106     !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2107     pop @{$self->{open_elements}};
2108     pop @{$self->{open_elements}} # <head>
2109     if $self->{insertion_mode} == AFTER_HEAD_IM;
2110     !!!nack ('t101.1');
2111     !!!next-token;
2112     next B;
2113 wakaba 1.194 } elsif ($token->{tag_name} eq 'link') {
2114     ## NOTE: There is a "as if in head" code clone.
2115     if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2116     !!!cp ('t102');
2117     !!!parse-error (type => 'after head',
2118     text => $token->{tag_name}, token => $token);
2119     push @{$self->{open_elements}},
2120     [$self->{head_element}, $el_category->{head}];
2121 wakaba 1.202 $self->{head_element_inserted} = 1;
2122 wakaba 1.194 } else {
2123     !!!cp ('t103');
2124     }
2125     !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2126     pop @{$self->{open_elements}};
2127     pop @{$self->{open_elements}} # <head>
2128     if $self->{insertion_mode} == AFTER_HEAD_IM;
2129     !!!ack ('t103.1');
2130     !!!next-token;
2131     next B;
2132     } elsif ($token->{tag_name} eq 'command' or
2133     $token->{tag_name} eq 'eventsource') {
2134     if ($self->{insertion_mode} == IN_HEAD_IM) {
2135     ## NOTE: If the insertion mode at the time of the emission
2136     ## of the token was "before head", $self->{insertion_mode}
2137     ## is already changed to |IN_HEAD_IM|.
2138    
2139     ## NOTE: There is a "as if in head" code clone.
2140     !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2141     pop @{$self->{open_elements}};
2142     pop @{$self->{open_elements}} # <head>
2143     if $self->{insertion_mode} == AFTER_HEAD_IM;
2144     !!!ack ('t103.2');
2145     !!!next-token;
2146     next B;
2147     } else {
2148     ## NOTE: "in head noscript" or "after head" insertion mode
2149     ## - in these cases, these tags are treated as same as
2150     ## normal in-body tags.
2151     !!!cp ('t103.3');
2152     #
2153     }
2154 wakaba 1.202 } elsif ($token->{tag_name} eq 'meta') {
2155     ## NOTE: There is a "as if in head" code clone.
2156     if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2157     !!!cp ('t104');
2158     !!!parse-error (type => 'after head',
2159     text => $token->{tag_name}, token => $token);
2160     push @{$self->{open_elements}},
2161     [$self->{head_element}, $el_category->{head}];
2162     $self->{head_element_inserted} = 1;
2163     } else {
2164     !!!cp ('t105');
2165     }
2166     !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2167     my $meta_el = pop @{$self->{open_elements}};
2168 wakaba 1.34
2169     unless ($self->{confident}) {
2170 wakaba 1.134 if ($token->{attributes}->{charset}) {
2171 wakaba 1.79 !!!cp ('t106');
2172 wakaba 1.134 ## NOTE: Whether the encoding is supported or not is handled
2173     ## in the {change_encoding} callback.
2174 wakaba 1.63 $self->{change_encoding}
2175 wakaba 1.114 ->($self, $token->{attributes}->{charset}->{value},
2176     $token);
2177 wakaba 1.66
2178     $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
2179     ->set_user_data (manakai_has_reference =>
2180     $token->{attributes}->{charset}
2181     ->{has_reference});
2182 wakaba 1.63 } elsif ($token->{attributes}->{content}) {
2183     if ($token->{attributes}->{content}->{value}
2184 wakaba 1.144 =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
2185 wakaba 1.186 [\x09\x0A\x0C\x0D\x20]*=
2186     [\x09\x0A\x0C\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
2187     ([^"'\x09\x0A\x0C\x0D\x20]
2188     [^\x09\x0A\x0C\x0D\x20\x3B]*))/x) {
2189 wakaba 1.79 !!!cp ('t107');
2190 wakaba 1.134 ## NOTE: Whether the encoding is supported or not is handled
2191     ## in the {change_encoding} callback.
2192 wakaba 1.63 $self->{change_encoding}
2193 wakaba 1.114 ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
2194     $token);
2195 wakaba 1.68 $meta_el->[0]->get_attribute_node_ns (undef, 'content')
2196     ->set_user_data (manakai_has_reference =>
2197     $token->{attributes}->{content}
2198     ->{has_reference});
2199 wakaba 1.79 } else {
2200     !!!cp ('t108');
2201 wakaba 1.63 }
2202 wakaba 1.34 }
2203 wakaba 1.66 } else {
2204     if ($token->{attributes}->{charset}) {
2205 wakaba 1.79 !!!cp ('t109');
2206 wakaba 1.66 $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
2207     ->set_user_data (manakai_has_reference =>
2208     $token->{attributes}->{charset}
2209     ->{has_reference});
2210     }
2211 wakaba 1.68 if ($token->{attributes}->{content}) {
2212 wakaba 1.79 !!!cp ('t110');
2213 wakaba 1.68 $meta_el->[0]->get_attribute_node_ns (undef, 'content')
2214     ->set_user_data (manakai_has_reference =>
2215     $token->{attributes}->{content}
2216     ->{has_reference});
2217     }
2218 wakaba 1.34 }
2219    
2220 wakaba 1.100 pop @{$self->{open_elements}} # <head>
2221 wakaba 1.54 if $self->{insertion_mode} == AFTER_HEAD_IM;
2222 wakaba 1.125 !!!ack ('t110.1');
2223 wakaba 1.34 !!!next-token;
2224 wakaba 1.126 next B;
2225 wakaba 1.202 } elsif ($token->{tag_name} eq 'title') {
2226     if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2227     !!!cp ('t111');
2228     ## As if </noscript>
2229     pop @{$self->{open_elements}};
2230     !!!parse-error (type => 'in noscript', text => 'title',
2231     token => $token);
2232    
2233     $self->{insertion_mode} = IN_HEAD_IM;
2234     ## Reprocess in the "in head" insertion mode...
2235     } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2236     !!!cp ('t112');
2237     !!!parse-error (type => 'after head',
2238     text => $token->{tag_name}, token => $token);
2239     push @{$self->{open_elements}},
2240     [$self->{head_element}, $el_category->{head}];
2241     $self->{head_element_inserted} = 1;
2242     } else {
2243     !!!cp ('t113');
2244     }
2245 wakaba 1.49
2246 wakaba 1.202 ## NOTE: There is a "as if in head" code clone.
2247     $parse_rcdata->(RCDATA_CONTENT_MODEL);
2248 wakaba 1.205 ## ISSUE: A spec bug [Bug 6038]
2249     splice @{$self->{open_elements}}, -2, 1, () # <head>
2250     if ($self->{insertion_mode} & AFTER_HEAD_IM) == AFTER_HEAD_IM;
2251 wakaba 1.202 next B;
2252     } elsif ($token->{tag_name} eq 'style' or
2253     $token->{tag_name} eq 'noframes') {
2254     ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
2255     ## insertion mode IN_HEAD_IM)
2256     ## NOTE: There is a "as if in head" code clone.
2257     if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2258     !!!cp ('t114');
2259     !!!parse-error (type => 'after head',
2260     text => $token->{tag_name}, token => $token);
2261     push @{$self->{open_elements}},
2262     [$self->{head_element}, $el_category->{head}];
2263     $self->{head_element_inserted} = 1;
2264     } else {
2265     !!!cp ('t115');
2266     }
2267     $parse_rcdata->(CDATA_CONTENT_MODEL);
2268 wakaba 1.205 ## ISSUE: A spec bug [Bug 6038]
2269     splice @{$self->{open_elements}}, -2, 1, () # <head>
2270     if ($self->{insertion_mode} & AFTER_HEAD_IM) == AFTER_HEAD_IM;
2271 wakaba 1.202 next B;
2272 wakaba 1.205 } elsif ($token->{tag_name} eq 'noscript') {
2273 wakaba 1.54 if ($self->{insertion_mode} == IN_HEAD_IM) {
2274 wakaba 1.79 !!!cp ('t116');
2275 wakaba 1.25 ## NOTE: and scripting is disalbed
2276 wakaba 1.116 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2277 wakaba 1.54 $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
2278 wakaba 1.125 !!!nack ('t116.1');
2279 wakaba 1.1 !!!next-token;
2280 wakaba 1.126 next B;
2281 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2282 wakaba 1.79 !!!cp ('t117');
2283 wakaba 1.153 !!!parse-error (type => 'in noscript', text => 'noscript',
2284     token => $token);
2285 wakaba 1.1 ## Ignore the token
2286 wakaba 1.125 !!!nack ('t117.1');
2287 wakaba 1.41 !!!next-token;
2288 wakaba 1.126 next B;
2289 wakaba 1.1 } else {
2290 wakaba 1.79 !!!cp ('t118');
2291 wakaba 1.25 #
2292 wakaba 1.1 }
2293 wakaba 1.202 } elsif ($token->{tag_name} eq 'script') {
2294     if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2295     !!!cp ('t119');
2296     ## As if </noscript>
2297     pop @{$self->{open_elements}};
2298     !!!parse-error (type => 'in noscript', text => 'script',
2299     token => $token);
2300    
2301     $self->{insertion_mode} = IN_HEAD_IM;
2302     ## Reprocess in the "in head" insertion mode...
2303     } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2304     !!!cp ('t120');
2305     !!!parse-error (type => 'after head',
2306     text => $token->{tag_name}, token => $token);
2307     push @{$self->{open_elements}},
2308     [$self->{head_element}, $el_category->{head}];
2309     $self->{head_element_inserted} = 1;
2310     } else {
2311     !!!cp ('t121');
2312     }
2313 wakaba 1.49
2314 wakaba 1.202 ## NOTE: There is a "as if in head" code clone.
2315     $script_start_tag->();
2316 wakaba 1.205 ## ISSUE: A spec bug [Bug 6038]
2317     splice @{$self->{open_elements}}, -2, 1 # <head>
2318     if ($self->{insertion_mode} & AFTER_HEAD_IM) == AFTER_HEAD_IM;
2319 wakaba 1.202 next B;
2320     } elsif ($token->{tag_name} eq 'body' or
2321     $token->{tag_name} eq 'frameset') {
2322 wakaba 1.54 if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2323 wakaba 1.79 !!!cp ('t122');
2324 wakaba 1.49 ## As if </noscript>
2325     pop @{$self->{open_elements}};
2326 wakaba 1.153 !!!parse-error (type => 'in noscript',
2327     text => $token->{tag_name}, token => $token);
2328 wakaba 1.49
2329     ## Reprocess in the "in head" insertion mode...
2330     ## As if </head>
2331     pop @{$self->{open_elements}};
2332    
2333     ## Reprocess in the "after head" insertion mode...
2334 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2335 wakaba 1.79 !!!cp ('t124');
2336 wakaba 1.49 pop @{$self->{open_elements}};
2337    
2338     ## Reprocess in the "after head" insertion mode...
2339 wakaba 1.79 } else {
2340     !!!cp ('t125');
2341 wakaba 1.49 }
2342    
2343     ## "after head" insertion mode
2344 wakaba 1.116 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2345 wakaba 1.54 if ($token->{tag_name} eq 'body') {
2346 wakaba 1.79 !!!cp ('t126');
2347 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM;
2348     } elsif ($token->{tag_name} eq 'frameset') {
2349 wakaba 1.79 !!!cp ('t127');
2350 wakaba 1.54 $self->{insertion_mode} = IN_FRAMESET_IM;
2351     } else {
2352     die "$0: tag name: $self->{tag_name}";
2353     }
2354 wakaba 1.125 !!!nack ('t127.1');
2355 wakaba 1.1 !!!next-token;
2356 wakaba 1.126 next B;
2357 wakaba 1.1 } else {
2358 wakaba 1.79 !!!cp ('t128');
2359 wakaba 1.1 #
2360     }
2361 wakaba 1.49
2362 wakaba 1.54 if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2363 wakaba 1.79 !!!cp ('t129');
2364 wakaba 1.49 ## As if </noscript>
2365     pop @{$self->{open_elements}};
2366 wakaba 1.153 !!!parse-error (type => 'in noscript:/',
2367     text => $token->{tag_name}, token => $token);
2368 wakaba 1.49
2369     ## Reprocess in the "in head" insertion mode...
2370     ## As if </head>
2371 wakaba 1.25 pop @{$self->{open_elements}};
2372 wakaba 1.49
2373     ## Reprocess in the "after head" insertion mode...
2374 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2375 wakaba 1.79 !!!cp ('t130');
2376 wakaba 1.49 ## As if </head>
2377 wakaba 1.25 pop @{$self->{open_elements}};
2378 wakaba 1.49
2379     ## Reprocess in the "after head" insertion mode...
2380 wakaba 1.79 } else {
2381     !!!cp ('t131');
2382 wakaba 1.49 }
2383    
2384     ## "after head" insertion mode
2385     ## As if <body>
2386 wakaba 1.116 !!!insert-element ('body',, $token);
2387 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM;
2388 wakaba 1.49 ## reprocess
2389 wakaba 1.125 !!!ack-later;
2390 wakaba 1.126 next B;
2391 wakaba 1.55 } elsif ($token->{type} == END_TAG_TOKEN) {
2392 wakaba 1.49 if ($token->{tag_name} eq 'head') {
2393 wakaba 1.54 if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2394 wakaba 1.79 !!!cp ('t132');
2395 wakaba 1.50 ## As if <head>
2396 wakaba 1.126 !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2397 wakaba 1.50 $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2398 wakaba 1.123 push @{$self->{open_elements}},
2399     [$self->{head_element}, $el_category->{head}];
2400 wakaba 1.50
2401     ## Reprocess in the "in head" insertion mode...
2402     pop @{$self->{open_elements}};
2403 wakaba 1.54 $self->{insertion_mode} = AFTER_HEAD_IM;
2404 wakaba 1.50 !!!next-token;
2405 wakaba 1.126 next B;
2406 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2407 wakaba 1.79 !!!cp ('t133');
2408 wakaba 1.49 ## As if </noscript>
2409     pop @{$self->{open_elements}};
2410 wakaba 1.153 !!!parse-error (type => 'in noscript:/',
2411     text => 'head', token => $token);
2412 wakaba 1.49
2413     ## Reprocess in the "in head" insertion mode...
2414 wakaba 1.50 pop @{$self->{open_elements}};
2415 wakaba 1.54 $self->{insertion_mode} = AFTER_HEAD_IM;
2416 wakaba 1.50 !!!next-token;
2417 wakaba 1.126 next B;
2418 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2419 wakaba 1.79 !!!cp ('t134');
2420 wakaba 1.49 pop @{$self->{open_elements}};
2421 wakaba 1.54 $self->{insertion_mode} = AFTER_HEAD_IM;
2422 wakaba 1.49 !!!next-token;
2423 wakaba 1.126 next B;
2424 wakaba 1.139 } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2425     !!!cp ('t134.1');
2426 wakaba 1.153 !!!parse-error (type => 'unmatched end tag', text => 'head',
2427     token => $token);
2428 wakaba 1.139 ## Ignore the token
2429     !!!next-token;
2430     next B;
2431 wakaba 1.49 } else {
2432 wakaba 1.139 die "$0: $self->{insertion_mode}: Unknown insertion mode";
2433 wakaba 1.49 }
2434     } elsif ($token->{tag_name} eq 'noscript') {
2435 wakaba 1.54 if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2436 wakaba 1.79 !!!cp ('t136');
2437 wakaba 1.49 pop @{$self->{open_elements}};
2438 wakaba 1.54 $self->{insertion_mode} = IN_HEAD_IM;
2439 wakaba 1.49 !!!next-token;
2440 wakaba 1.126 next B;
2441 wakaba 1.139 } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM or
2442     $self->{insertion_mode} == AFTER_HEAD_IM) {
2443 wakaba 1.79 !!!cp ('t137');
2444 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2445     text => 'noscript', token => $token);
2446 wakaba 1.50 ## Ignore the token ## ISSUE: An issue in the spec.
2447     !!!next-token;
2448 wakaba 1.126 next B;
2449 wakaba 1.49 } else {
2450 wakaba 1.79 !!!cp ('t138');
2451 wakaba 1.49 #
2452     }
2453     } elsif ({
2454 wakaba 1.31 body => 1, html => 1,
2455     }->{$token->{tag_name}}) {
2456 wakaba 1.203 ## TODO: This branch is entirely redundant.
2457     if ($self->{insertion_mode} == BEFORE_HEAD_IM or
2458 wakaba 1.139 $self->{insertion_mode} == IN_HEAD_IM or
2459     $self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2460 wakaba 1.79 !!!cp ('t140');
2461 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2462     text => $token->{tag_name}, token => $token);
2463 wakaba 1.49 ## Ignore the token
2464     !!!next-token;
2465 wakaba 1.126 next B;
2466 wakaba 1.139 } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2467     !!!cp ('t140.1');
2468 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2469     text => $token->{tag_name}, token => $token);
2470 wakaba 1.139 ## Ignore the token
2471     !!!next-token;
2472     next B;
2473 wakaba 1.79 } else {
2474 wakaba 1.139 die "$0: $self->{insertion_mode}: Unknown insertion mode";
2475 wakaba 1.49 }
2476 wakaba 1.139 } elsif ($token->{tag_name} eq 'p') {
2477     !!!cp ('t142');
2478 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2479     text => $token->{tag_name}, token => $token);
2480 wakaba 1.139 ## Ignore the token
2481     !!!next-token;
2482     next B;
2483     } elsif ($token->{tag_name} eq 'br') {
2484 wakaba 1.54 if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2485 wakaba 1.139 !!!cp ('t142.2');
2486     ## (before head) as if <head>, (in head) as if </head>
2487 wakaba 1.126 !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2488 wakaba 1.50 $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2489 wakaba 1.139 $self->{insertion_mode} = AFTER_HEAD_IM;
2490    
2491     ## Reprocess in the "after head" insertion mode...
2492     } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2493     !!!cp ('t143.2');
2494     ## As if </head>
2495     pop @{$self->{open_elements}};
2496     $self->{insertion_mode} = AFTER_HEAD_IM;
2497    
2498     ## Reprocess in the "after head" insertion mode...
2499     } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2500     !!!cp ('t143.3');
2501     ## ISSUE: Two parse errors for <head><noscript></br>
2502 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2503     text => 'br', token => $token);
2504 wakaba 1.139 ## As if </noscript>
2505     pop @{$self->{open_elements}};
2506     $self->{insertion_mode} = IN_HEAD_IM;
2507 wakaba 1.50
2508     ## Reprocess in the "in head" insertion mode...
2509 wakaba 1.139 ## As if </head>
2510     pop @{$self->{open_elements}};
2511     $self->{insertion_mode} = AFTER_HEAD_IM;
2512    
2513     ## Reprocess in the "after head" insertion mode...
2514     } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2515     !!!cp ('t143.4');
2516     #
2517 wakaba 1.79 } else {
2518 wakaba 1.139 die "$0: $self->{insertion_mode}: Unknown insertion mode";
2519 wakaba 1.50 }
2520    
2521 wakaba 1.139 ## ISSUE: does not agree with IE7 - it doesn't ignore </br>.
2522 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2523     text => 'br', token => $token);
2524 wakaba 1.139 ## Ignore the token
2525     !!!next-token;
2526     next B;
2527 wakaba 1.25 } else {
2528 wakaba 1.139 !!!cp ('t145');
2529 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2530     text => $token->{tag_name}, token => $token);
2531 wakaba 1.139 ## Ignore the token
2532     !!!next-token;
2533     next B;
2534 wakaba 1.49 }
2535    
2536 wakaba 1.54 if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2537 wakaba 1.79 !!!cp ('t146');
2538 wakaba 1.49 ## As if </noscript>
2539     pop @{$self->{open_elements}};
2540 wakaba 1.153 !!!parse-error (type => 'in noscript:/',
2541     text => $token->{tag_name}, token => $token);
2542 wakaba 1.49
2543     ## Reprocess in the "in head" insertion mode...
2544     ## As if </head>
2545     pop @{$self->{open_elements}};
2546    
2547     ## Reprocess in the "after head" insertion mode...
2548 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2549 wakaba 1.79 !!!cp ('t147');
2550 wakaba 1.49 ## As if </head>
2551     pop @{$self->{open_elements}};
2552    
2553     ## Reprocess in the "after head" insertion mode...
2554 wakaba 1.54 } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2555 wakaba 1.82 ## ISSUE: This case cannot be reached?
2556 wakaba 1.79 !!!cp ('t148');
2557 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2558     text => $token->{tag_name}, token => $token);
2559 wakaba 1.50 ## Ignore the token ## ISSUE: An issue in the spec.
2560     !!!next-token;
2561 wakaba 1.126 next B;
2562 wakaba 1.79 } else {
2563     !!!cp ('t149');
2564 wakaba 1.1 }
2565    
2566 wakaba 1.49 ## "after head" insertion mode
2567     ## As if <body>
2568 wakaba 1.116 !!!insert-element ('body',, $token);
2569 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM;
2570 wakaba 1.52 ## reprocess
2571 wakaba 1.126 next B;
2572 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
2573     if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2574     !!!cp ('t149.1');
2575    
2576     ## NOTE: As if <head>
2577 wakaba 1.126 !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2578 wakaba 1.104 $self->{open_elements}->[-1]->[0]->append_child
2579     ($self->{head_element});
2580 wakaba 1.123 #push @{$self->{open_elements}},
2581     # [$self->{head_element}, $el_category->{head}];
2582 wakaba 1.104 #$self->{insertion_mode} = IN_HEAD_IM;
2583     ## NOTE: Reprocess.
2584    
2585     ## NOTE: As if </head>
2586     #pop @{$self->{open_elements}};
2587     #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
2588     ## NOTE: Reprocess.
2589    
2590     #
2591     } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2592     !!!cp ('t149.2');
2593    
2594     ## NOTE: As if </head>
2595     pop @{$self->{open_elements}};
2596     #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
2597     ## NOTE: Reprocess.
2598    
2599     #
2600     } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2601     !!!cp ('t149.3');
2602    
2603 wakaba 1.113 !!!parse-error (type => 'in noscript:#eof', token => $token);
2604 wakaba 1.104
2605     ## As if </noscript>
2606     pop @{$self->{open_elements}};
2607     #$self->{insertion_mode} = IN_HEAD_IM;
2608     ## NOTE: Reprocess.
2609    
2610     ## NOTE: As if </head>
2611     pop @{$self->{open_elements}};
2612     #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
2613     ## NOTE: Reprocess.
2614    
2615     #
2616     } else {
2617     !!!cp ('t149.4');
2618     #
2619     }
2620    
2621     ## NOTE: As if <body>
2622 wakaba 1.116 !!!insert-element ('body',, $token);
2623 wakaba 1.104 $self->{insertion_mode} = IN_BODY_IM;
2624     ## NOTE: Reprocess.
2625 wakaba 1.126 next B;
2626 wakaba 1.104 } else {
2627     die "$0: $token->{type}: Unknown token type";
2628     }
2629 wakaba 1.56 } elsif ($self->{insertion_mode} & BODY_IMS) {
2630 wakaba 1.55 if ($token->{type} == CHARACTER_TOKEN) {
2631 wakaba 1.79 !!!cp ('t150');
2632 wakaba 1.52 ## NOTE: There is a code clone of "character in body".
2633     $reconstruct_active_formatting_elements->($insert_to_current);
2634    
2635     $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
2636    
2637     !!!next-token;
2638 wakaba 1.126 next B;
2639 wakaba 1.55 } elsif ($token->{type} == START_TAG_TOKEN) {
2640 wakaba 1.52 if ({
2641     caption => 1, col => 1, colgroup => 1, tbody => 1,
2642     td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,
2643     }->{$token->{tag_name}}) {
2644 wakaba 1.54 if ($self->{insertion_mode} == IN_CELL_IM) {
2645 wakaba 1.52 ## have an element in table scope
2646 wakaba 1.108 for (reverse 0..$#{$self->{open_elements}}) {
2647 wakaba 1.52 my $node = $self->{open_elements}->[$_];
2648 wakaba 1.206 if ($node->[1] == TABLE_CELL_EL) {
2649 wakaba 1.79 !!!cp ('t151');
2650 wakaba 1.108
2651     ## Close the cell
2652 wakaba 1.125 !!!back-token; # <x>
2653 wakaba 1.122 $token = {type => END_TAG_TOKEN,
2654     tag_name => $node->[0]->manakai_local_name,
2655 wakaba 1.114 line => $token->{line},
2656     column => $token->{column}};
2657 wakaba 1.126 next B;
2658 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
2659 wakaba 1.79 !!!cp ('t152');
2660 wakaba 1.108 ## ISSUE: This case can never be reached, maybe.
2661     last;
2662 wakaba 1.52 }
2663 wakaba 1.108 }
2664    
2665     !!!cp ('t153');
2666     !!!parse-error (type => 'start tag not allowed',
2667 wakaba 1.153 text => $token->{tag_name}, token => $token);
2668 wakaba 1.108 ## Ignore the token
2669 wakaba 1.125 !!!nack ('t153.1');
2670 wakaba 1.108 !!!next-token;
2671 wakaba 1.126 next B;
2672 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
2673 wakaba 1.153 !!!parse-error (type => 'not closed', text => 'caption',
2674     token => $token);
2675 wakaba 1.52
2676 wakaba 1.108 ## NOTE: As if </caption>.
2677 wakaba 1.52 ## have a table element in table scope
2678     my $i;
2679 wakaba 1.108 INSCOPE: {
2680     for (reverse 0..$#{$self->{open_elements}}) {
2681     my $node = $self->{open_elements}->[$_];
2682 wakaba 1.206 if ($node->[1] == CAPTION_EL) {
2683 wakaba 1.108 !!!cp ('t155');
2684     $i = $_;
2685     last INSCOPE;
2686 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
2687 wakaba 1.108 !!!cp ('t156');
2688     last;
2689     }
2690 wakaba 1.52 }
2691 wakaba 1.108
2692     !!!cp ('t157');
2693     !!!parse-error (type => 'start tag not allowed',
2694 wakaba 1.153 text => $token->{tag_name}, token => $token);
2695 wakaba 1.108 ## Ignore the token
2696 wakaba 1.125 !!!nack ('t157.1');
2697 wakaba 1.108 !!!next-token;
2698 wakaba 1.126 next B;
2699 wakaba 1.52 } # INSCOPE
2700    
2701     ## generate implied end tags
2702 wakaba 1.123 while ($self->{open_elements}->[-1]->[1]
2703     & END_TAG_OPTIONAL_EL) {
2704 wakaba 1.79 !!!cp ('t158');
2705 wakaba 1.86 pop @{$self->{open_elements}};
2706 wakaba 1.52 }
2707    
2708 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == CAPTION_EL) {
2709 wakaba 1.79 !!!cp ('t159');
2710 wakaba 1.122 !!!parse-error (type => 'not closed',
2711 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
2712 wakaba 1.122 ->manakai_local_name,
2713     token => $token);
2714 wakaba 1.79 } else {
2715     !!!cp ('t160');
2716 wakaba 1.52 }
2717    
2718     splice @{$self->{open_elements}}, $i;
2719    
2720     $clear_up_to_marker->();
2721    
2722 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
2723 wakaba 1.52
2724     ## reprocess
2725 wakaba 1.125 !!!ack-later;
2726 wakaba 1.126 next B;
2727 wakaba 1.52 } else {
2728 wakaba 1.79 !!!cp ('t161');
2729 wakaba 1.52 #
2730     }
2731     } else {
2732 wakaba 1.79 !!!cp ('t162');
2733 wakaba 1.52 #
2734     }
2735 wakaba 1.55 } elsif ($token->{type} == END_TAG_TOKEN) {
2736 wakaba 1.52 if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {
2737 wakaba 1.54 if ($self->{insertion_mode} == IN_CELL_IM) {
2738 wakaba 1.43 ## have an element in table scope
2739 wakaba 1.52 my $i;
2740 wakaba 1.43 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2741     my $node = $self->{open_elements}->[$_];
2742 wakaba 1.123 if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
2743 wakaba 1.79 !!!cp ('t163');
2744 wakaba 1.52 $i = $_;
2745 wakaba 1.43 last INSCOPE;
2746 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
2747 wakaba 1.79 !!!cp ('t164');
2748 wakaba 1.43 last INSCOPE;
2749     }
2750     } # INSCOPE
2751 wakaba 1.52 unless (defined $i) {
2752 wakaba 1.79 !!!cp ('t165');
2753 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2754     text => $token->{tag_name},
2755     token => $token);
2756 wakaba 1.43 ## Ignore the token
2757     !!!next-token;
2758 wakaba 1.126 next B;
2759 wakaba 1.43 }
2760    
2761 wakaba 1.52 ## generate implied end tags
2762 wakaba 1.123 while ($self->{open_elements}->[-1]->[1]
2763     & END_TAG_OPTIONAL_EL) {
2764 wakaba 1.79 !!!cp ('t166');
2765 wakaba 1.86 pop @{$self->{open_elements}};
2766 wakaba 1.52 }
2767 wakaba 1.86
2768 wakaba 1.123 if ($self->{open_elements}->[-1]->[0]->manakai_local_name
2769     ne $token->{tag_name}) {
2770 wakaba 1.79 !!!cp ('t167');
2771 wakaba 1.122 !!!parse-error (type => 'not closed',
2772 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
2773 wakaba 1.122 ->manakai_local_name,
2774     token => $token);
2775 wakaba 1.79 } else {
2776     !!!cp ('t168');
2777 wakaba 1.52 }
2778    
2779     splice @{$self->{open_elements}}, $i;
2780    
2781     $clear_up_to_marker->();
2782    
2783 wakaba 1.54 $self->{insertion_mode} = IN_ROW_IM;
2784 wakaba 1.52
2785     !!!next-token;
2786 wakaba 1.126 next B;
2787 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_CAPTION_IM) {
2788 wakaba 1.79 !!!cp ('t169');
2789 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2790     text => $token->{tag_name}, token => $token);
2791 wakaba 1.52 ## Ignore the token
2792     !!!next-token;
2793 wakaba 1.126 next B;
2794 wakaba 1.52 } else {
2795 wakaba 1.79 !!!cp ('t170');
2796 wakaba 1.52 #
2797     }
2798     } elsif ($token->{tag_name} eq 'caption') {
2799 wakaba 1.54 if ($self->{insertion_mode} == IN_CAPTION_IM) {
2800 wakaba 1.43 ## have a table element in table scope
2801     my $i;
2802 wakaba 1.108 INSCOPE: {
2803     for (reverse 0..$#{$self->{open_elements}}) {
2804     my $node = $self->{open_elements}->[$_];
2805 wakaba 1.206 if ($node->[1] == CAPTION_EL) {
2806 wakaba 1.108 !!!cp ('t171');
2807     $i = $_;
2808     last INSCOPE;
2809 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
2810 wakaba 1.108 !!!cp ('t172');
2811     last;
2812     }
2813 wakaba 1.43 }
2814 wakaba 1.108
2815     !!!cp ('t173');
2816     !!!parse-error (type => 'unmatched end tag',
2817 wakaba 1.153 text => $token->{tag_name}, token => $token);
2818 wakaba 1.108 ## Ignore the token
2819     !!!next-token;
2820 wakaba 1.126 next B;
2821 wakaba 1.43 } # INSCOPE
2822    
2823     ## generate implied end tags
2824 wakaba 1.123 while ($self->{open_elements}->[-1]->[1]
2825     & END_TAG_OPTIONAL_EL) {
2826 wakaba 1.79 !!!cp ('t174');
2827 wakaba 1.86 pop @{$self->{open_elements}};
2828 wakaba 1.43 }
2829 wakaba 1.52
2830 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == CAPTION_EL) {
2831 wakaba 1.79 !!!cp ('t175');
2832 wakaba 1.122 !!!parse-error (type => 'not closed',
2833 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
2834 wakaba 1.122 ->manakai_local_name,
2835     token => $token);
2836 wakaba 1.79 } else {
2837     !!!cp ('t176');
2838 wakaba 1.52 }
2839    
2840     splice @{$self->{open_elements}}, $i;
2841    
2842     $clear_up_to_marker->();
2843    
2844 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
2845 wakaba 1.52
2846     !!!next-token;
2847 wakaba 1.126 next B;
2848 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_CELL_IM) {
2849 wakaba 1.79 !!!cp ('t177');
2850 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2851     text => $token->{tag_name}, token => $token);
2852 wakaba 1.52 ## Ignore the token
2853     !!!next-token;
2854 wakaba 1.126 next B;
2855 wakaba 1.52 } else {
2856 wakaba 1.79 !!!cp ('t178');
2857 wakaba 1.52 #
2858     }
2859     } elsif ({
2860     table => 1, tbody => 1, tfoot => 1,
2861     thead => 1, tr => 1,
2862     }->{$token->{tag_name}} and
2863 wakaba 1.54 $self->{insertion_mode} == IN_CELL_IM) {
2864 wakaba 1.52 ## have an element in table scope
2865     my $i;
2866     my $tn;
2867 wakaba 1.108 INSCOPE: {
2868     for (reverse 0..$#{$self->{open_elements}}) {
2869     my $node = $self->{open_elements}->[$_];
2870 wakaba 1.123 if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
2871 wakaba 1.108 !!!cp ('t179');
2872     $i = $_;
2873    
2874     ## Close the cell
2875 wakaba 1.125 !!!back-token; # </x>
2876 wakaba 1.114 $token = {type => END_TAG_TOKEN, tag_name => $tn,
2877     line => $token->{line},
2878     column => $token->{column}};
2879 wakaba 1.126 next B;
2880 wakaba 1.206 } elsif ($node->[1] == TABLE_CELL_EL) {
2881 wakaba 1.108 !!!cp ('t180');
2882 wakaba 1.123 $tn = $node->[0]->manakai_local_name;
2883 wakaba 1.108 ## NOTE: There is exactly one |td| or |th| element
2884     ## in scope in the stack of open elements by definition.
2885 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
2886 wakaba 1.108 ## ISSUE: Can this be reached?
2887     !!!cp ('t181');
2888     last;
2889     }
2890 wakaba 1.52 }
2891 wakaba 1.108
2892 wakaba 1.79 !!!cp ('t182');
2893 wakaba 1.108 !!!parse-error (type => 'unmatched end tag',
2894 wakaba 1.153 text => $token->{tag_name}, token => $token);
2895 wakaba 1.52 ## Ignore the token
2896     !!!next-token;
2897 wakaba 1.126 next B;
2898 wakaba 1.108 } # INSCOPE
2899 wakaba 1.52 } elsif ($token->{tag_name} eq 'table' and
2900 wakaba 1.54 $self->{insertion_mode} == IN_CAPTION_IM) {
2901 wakaba 1.153 !!!parse-error (type => 'not closed', text => 'caption',
2902     token => $token);
2903 wakaba 1.52
2904     ## As if </caption>
2905     ## have a table element in table scope
2906     my $i;
2907     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2908     my $node = $self->{open_elements}->[$_];
2909 wakaba 1.206 if ($node->[1] == CAPTION_EL) {
2910 wakaba 1.79 !!!cp ('t184');
2911 wakaba 1.52 $i = $_;
2912     last INSCOPE;
2913 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
2914 wakaba 1.79 !!!cp ('t185');
2915 wakaba 1.52 last INSCOPE;
2916     }
2917     } # INSCOPE
2918     unless (defined $i) {
2919 wakaba 1.79 !!!cp ('t186');
2920 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2921     text => 'caption', token => $token);
2922 wakaba 1.52 ## Ignore the token
2923     !!!next-token;
2924 wakaba 1.126 next B;
2925 wakaba 1.52 }
2926    
2927     ## generate implied end tags
2928 wakaba 1.123 while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
2929 wakaba 1.79 !!!cp ('t187');
2930 wakaba 1.86 pop @{$self->{open_elements}};
2931 wakaba 1.52 }
2932    
2933 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == CAPTION_EL) {
2934 wakaba 1.79 !!!cp ('t188');
2935 wakaba 1.122 !!!parse-error (type => 'not closed',
2936 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
2937 wakaba 1.122 ->manakai_local_name,
2938     token => $token);
2939 wakaba 1.79 } else {
2940     !!!cp ('t189');
2941 wakaba 1.52 }
2942    
2943     splice @{$self->{open_elements}}, $i;
2944    
2945     $clear_up_to_marker->();
2946    
2947 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
2948 wakaba 1.52
2949     ## reprocess
2950 wakaba 1.126 next B;
2951 wakaba 1.52 } elsif ({
2952     body => 1, col => 1, colgroup => 1, html => 1,
2953     }->{$token->{tag_name}}) {
2954 wakaba 1.56 if ($self->{insertion_mode} & BODY_TABLE_IMS) {
2955 wakaba 1.79 !!!cp ('t190');
2956 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2957     text => $token->{tag_name}, token => $token);
2958 wakaba 1.52 ## Ignore the token
2959     !!!next-token;
2960 wakaba 1.126 next B;
2961 wakaba 1.52 } else {
2962 wakaba 1.79 !!!cp ('t191');
2963 wakaba 1.52 #
2964     }
2965     } elsif ({
2966     tbody => 1, tfoot => 1,
2967     thead => 1, tr => 1,
2968     }->{$token->{tag_name}} and
2969 wakaba 1.54 $self->{insertion_mode} == IN_CAPTION_IM) {
2970 wakaba 1.79 !!!cp ('t192');
2971 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
2972     text => $token->{tag_name}, token => $token);
2973 wakaba 1.52 ## Ignore the token
2974     !!!next-token;
2975 wakaba 1.126 next B;
2976 wakaba 1.52 } else {
2977 wakaba 1.79 !!!cp ('t193');
2978 wakaba 1.52 #
2979     }
2980 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
2981     for my $entry (@{$self->{open_elements}}) {
2982 wakaba 1.123 unless ($entry->[1] & ALL_END_TAG_OPTIONAL_EL) {
2983 wakaba 1.104 !!!cp ('t75');
2984 wakaba 1.113 !!!parse-error (type => 'in body:#eof', token => $token);
2985 wakaba 1.104 last;
2986     }
2987     }
2988    
2989     ## Stop parsing.
2990     last B;
2991 wakaba 1.52 } else {
2992     die "$0: $token->{type}: Unknown token type";
2993     }
2994    
2995     $insert = $insert_to_current;
2996     #
2997 wakaba 1.56 } elsif ($self->{insertion_mode} & TABLE_IMS) {
2998 wakaba 1.58 if ($token->{type} == CHARACTER_TOKEN) {
2999 wakaba 1.95 if (not $open_tables->[-1]->[1] and # tainted
3000 wakaba 1.188 $token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
3001 wakaba 1.95 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3002 wakaba 1.52
3003 wakaba 1.95 unless (length $token->{data}) {
3004     !!!cp ('t194');
3005     !!!next-token;
3006 wakaba 1.126 next B;
3007 wakaba 1.95 } else {
3008     !!!cp ('t195');
3009     }
3010     }
3011 wakaba 1.52
3012 wakaba 1.153 !!!parse-error (type => 'in table:#text', token => $token);
3013 wakaba 1.52
3014 wakaba 1.202 ## NOTE: As if in body, but insert into the foster parent element.
3015     $reconstruct_active_formatting_elements->($insert_to_foster);
3016 wakaba 1.52
3017 wakaba 1.202 if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
3018     # MUST
3019     my $foster_parent_element;
3020     my $next_sibling;
3021     my $prev_sibling;
3022     OE: for (reverse 0..$#{$self->{open_elements}}) {
3023 wakaba 1.206 if ($self->{open_elements}->[$_]->[1] == TABLE_EL) {
3024 wakaba 1.202 my $parent = $self->{open_elements}->[$_]->[0]->parent_node;
3025     if (defined $parent and $parent->node_type == 1) {
3026     $foster_parent_element = $parent;
3027     !!!cp ('t196');
3028     $next_sibling = $self->{open_elements}->[$_]->[0];
3029     $prev_sibling = $next_sibling->previous_sibling;
3030     #
3031 wakaba 1.52 } else {
3032 wakaba 1.202 !!!cp ('t197');
3033     $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
3034     $prev_sibling = $foster_parent_element->last_child;
3035     #
3036 wakaba 1.52 }
3037 wakaba 1.202 last OE;
3038     }
3039     } # OE
3040     $foster_parent_element = $self->{open_elements}->[0]->[0] and
3041     $prev_sibling = $foster_parent_element->last_child
3042     unless defined $foster_parent_element;
3043     undef $prev_sibling unless $open_tables->[-1]->[2]; # ~node inserted
3044     if (defined $prev_sibling and
3045     $prev_sibling->node_type == 3) {
3046     !!!cp ('t198');
3047     $prev_sibling->manakai_append_text ($token->{data});
3048     } else {
3049     !!!cp ('t199');
3050     $foster_parent_element->insert_before
3051     ($self->{document}->create_text_node ($token->{data}),
3052     $next_sibling);
3053     }
3054 wakaba 1.95 $open_tables->[-1]->[1] = 1; # tainted
3055 wakaba 1.202 $open_tables->[-1]->[2] = 1; # ~node inserted
3056 wakaba 1.95 } else {
3057 wakaba 1.202 ## NOTE: Fragment case or in a foster parent'ed element
3058     ## (e.g. |<table><span>a|). In fragment case, whether the
3059     ## character is appended to existing node or a new node is
3060     ## created is irrelevant, since the foster parent'ed nodes
3061     ## are discarded and fragment parsing does not invoke any
3062     ## script.
3063 wakaba 1.95 !!!cp ('t200');
3064 wakaba 1.202 $self->{open_elements}->[-1]->[0]->manakai_append_text
3065     ($token->{data});
3066 wakaba 1.95 }
3067 wakaba 1.52
3068 wakaba 1.95 !!!next-token;
3069 wakaba 1.126 next B;
3070 wakaba 1.58 } elsif ($token->{type} == START_TAG_TOKEN) {
3071 wakaba 1.153 if ({
3072     tr => ($self->{insertion_mode} != IN_ROW_IM),
3073     th => 1, td => 1,
3074     }->{$token->{tag_name}}) {
3075     if ($self->{insertion_mode} == IN_TABLE_IM) {
3076     ## Clear back to table context
3077     while (not ($self->{open_elements}->[-1]->[1]
3078     & TABLE_SCOPING_EL)) {
3079     !!!cp ('t201');
3080     pop @{$self->{open_elements}};
3081     }
3082    
3083     !!!insert-element ('tbody',, $token);
3084     $self->{insertion_mode} = IN_TABLE_BODY_IM;
3085     ## reprocess in the "in table body" insertion mode...
3086     }
3087    
3088     if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
3089     unless ($token->{tag_name} eq 'tr') {
3090     !!!cp ('t202');
3091     !!!parse-error (type => 'missing start tag:tr', token => $token);
3092     }
3093 wakaba 1.43
3094 wakaba 1.153 ## Clear back to table body context
3095     while (not ($self->{open_elements}->[-1]->[1]
3096     & TABLE_ROWS_SCOPING_EL)) {
3097     !!!cp ('t203');
3098     ## ISSUE: Can this case be reached?
3099     pop @{$self->{open_elements}};
3100     }
3101 wakaba 1.43
3102 wakaba 1.202 $self->{insertion_mode} = IN_ROW_IM;
3103     if ($token->{tag_name} eq 'tr') {
3104     !!!cp ('t204');
3105     !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3106     $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3107     !!!nack ('t204');
3108     !!!next-token;
3109     next B;
3110     } else {
3111     !!!cp ('t205');
3112     !!!insert-element ('tr',, $token);
3113     ## reprocess in the "in row" insertion mode
3114     }
3115     } else {
3116     !!!cp ('t206');
3117     }
3118 wakaba 1.52
3119     ## Clear back to table row context
3120 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3121     & TABLE_ROW_SCOPING_EL)) {
3122 wakaba 1.79 !!!cp ('t207');
3123 wakaba 1.52 pop @{$self->{open_elements}};
3124 wakaba 1.43 }
3125 wakaba 1.52
3126 wakaba 1.202 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3127     $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3128     $self->{insertion_mode} = IN_CELL_IM;
3129 wakaba 1.52
3130 wakaba 1.202 push @$active_formatting_elements, ['#marker', ''];
3131 wakaba 1.52
3132 wakaba 1.202 !!!nack ('t207.1');
3133     !!!next-token;
3134     next B;
3135     } elsif ({
3136     caption => 1, col => 1, colgroup => 1,
3137     tbody => 1, tfoot => 1, thead => 1,
3138     tr => 1, # $self->{insertion_mode} == IN_ROW_IM
3139     }->{$token->{tag_name}}) {
3140     if ($self->{insertion_mode} == IN_ROW_IM) {
3141     ## As if </tr>
3142     ## have an element in table scope
3143     my $i;
3144     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3145     my $node = $self->{open_elements}->[$_];
3146 wakaba 1.206 if ($node->[1] == TABLE_ROW_EL) {
3147 wakaba 1.202 !!!cp ('t208');
3148     $i = $_;
3149     last INSCOPE;
3150     } elsif ($node->[1] & TABLE_SCOPING_EL) {
3151     !!!cp ('t209');
3152     last INSCOPE;
3153     }
3154     } # INSCOPE
3155     unless (defined $i) {
3156     !!!cp ('t210');
3157     ## TODO: This type is wrong.
3158     !!!parse-error (type => 'unmacthed end tag',
3159     text => $token->{tag_name}, token => $token);
3160     ## Ignore the token
3161     !!!nack ('t210.1');
3162 wakaba 1.52 !!!next-token;
3163 wakaba 1.126 next B;
3164 wakaba 1.202 }
3165 wakaba 1.43
3166 wakaba 1.52 ## Clear back to table row context
3167 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3168     & TABLE_ROW_SCOPING_EL)) {
3169 wakaba 1.79 !!!cp ('t211');
3170 wakaba 1.83 ## ISSUE: Can this case be reached?
3171 wakaba 1.52 pop @{$self->{open_elements}};
3172 wakaba 1.1 }
3173 wakaba 1.43
3174 wakaba 1.52 pop @{$self->{open_elements}}; # tr
3175 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_BODY_IM;
3176 wakaba 1.52 if ($token->{tag_name} eq 'tr') {
3177 wakaba 1.79 !!!cp ('t212');
3178 wakaba 1.52 ## reprocess
3179 wakaba 1.125 !!!ack-later;
3180 wakaba 1.126 next B;
3181 wakaba 1.52 } else {
3182 wakaba 1.79 !!!cp ('t213');
3183 wakaba 1.52 ## reprocess in the "in table body" insertion mode...
3184     }
3185 wakaba 1.1 }
3186 wakaba 1.52
3187 wakaba 1.54 if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
3188 wakaba 1.52 ## have an element in table scope
3189 wakaba 1.43 my $i;
3190     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3191     my $node = $self->{open_elements}->[$_];
3192 wakaba 1.206 if ($node->[1] == TABLE_ROW_GROUP_EL) {
3193 wakaba 1.79 !!!cp ('t214');
3194 wakaba 1.43 $i = $_;
3195     last INSCOPE;
3196 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3197 wakaba 1.79 !!!cp ('t215');
3198 wakaba 1.43 last INSCOPE;
3199     }
3200     } # INSCOPE
3201 wakaba 1.52 unless (defined $i) {
3202 wakaba 1.79 !!!cp ('t216');
3203 wakaba 1.153 ## TODO: This erorr type is wrong.
3204     !!!parse-error (type => 'unmatched end tag',
3205     text => $token->{tag_name}, token => $token);
3206 wakaba 1.52 ## Ignore the token
3207 wakaba 1.125 !!!nack ('t216.1');
3208 wakaba 1.52 !!!next-token;
3209 wakaba 1.126 next B;
3210 wakaba 1.43 }
3211 wakaba 1.52
3212     ## Clear back to table body context
3213 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3214     & TABLE_ROWS_SCOPING_EL)) {
3215 wakaba 1.79 !!!cp ('t217');
3216 wakaba 1.83 ## ISSUE: Can this state be reached?
3217 wakaba 1.52 pop @{$self->{open_elements}};
3218 wakaba 1.43 }
3219    
3220 wakaba 1.52 ## As if <{current node}>
3221     ## have an element in table scope
3222     ## true by definition
3223 wakaba 1.43
3224 wakaba 1.52 ## Clear back to table body context
3225     ## nop by definition
3226 wakaba 1.43
3227 wakaba 1.52 pop @{$self->{open_elements}};
3228 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
3229 wakaba 1.52 ## reprocess in "in table" insertion mode...
3230 wakaba 1.79 } else {
3231     !!!cp ('t218');
3232 wakaba 1.52 }
3233    
3234 wakaba 1.202 if ($token->{tag_name} eq 'col') {
3235     ## Clear back to table context
3236     while (not ($self->{open_elements}->[-1]->[1]
3237     & TABLE_SCOPING_EL)) {
3238     !!!cp ('t219');
3239     ## ISSUE: Can this state be reached?
3240     pop @{$self->{open_elements}};
3241     }
3242    
3243     !!!insert-element ('colgroup',, $token);
3244     $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
3245     ## reprocess
3246     $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3247     !!!ack-later;
3248     next B;
3249     } elsif ({
3250     caption => 1,
3251     colgroup => 1,
3252     tbody => 1, tfoot => 1, thead => 1,
3253     }->{$token->{tag_name}}) {
3254     ## Clear back to table context
3255 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3256     & TABLE_SCOPING_EL)) {
3257 wakaba 1.79 !!!cp ('t220');
3258 wakaba 1.83 ## ISSUE: Can this state be reached?
3259 wakaba 1.52 pop @{$self->{open_elements}};
3260 wakaba 1.1 }
3261 wakaba 1.52
3262 wakaba 1.202 push @$active_formatting_elements, ['#marker', '']
3263     if $token->{tag_name} eq 'caption';
3264 wakaba 1.52
3265 wakaba 1.202 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3266     $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3267     $self->{insertion_mode} = {
3268     caption => IN_CAPTION_IM,
3269     colgroup => IN_COLUMN_GROUP_IM,
3270     tbody => IN_TABLE_BODY_IM,
3271     tfoot => IN_TABLE_BODY_IM,
3272     thead => IN_TABLE_BODY_IM,
3273     }->{$token->{tag_name}};
3274     !!!next-token;
3275     !!!nack ('t220.1');
3276     next B;
3277     } else {
3278     die "$0: in table: <>: $token->{tag_name}";
3279     }
3280 wakaba 1.52 } elsif ($token->{tag_name} eq 'table') {
3281 wakaba 1.122 !!!parse-error (type => 'not closed',
3282 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
3283 wakaba 1.122 ->manakai_local_name,
3284     token => $token);
3285 wakaba 1.1
3286 wakaba 1.52 ## As if </table>
3287 wakaba 1.1 ## have a table element in table scope
3288     my $i;
3289 wakaba 1.3 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3290     my $node = $self->{open_elements}->[$_];
3291 wakaba 1.206 if ($node->[1] == TABLE_EL) {
3292 wakaba 1.79 !!!cp ('t221');
3293 wakaba 1.1 $i = $_;
3294     last INSCOPE;
3295 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3296 wakaba 1.79 !!!cp ('t222');
3297 wakaba 1.1 last INSCOPE;
3298     }
3299     } # INSCOPE
3300     unless (defined $i) {
3301 wakaba 1.79 !!!cp ('t223');
3302 wakaba 1.83 ## TODO: The following is wrong, maybe.
3303 wakaba 1.153 !!!parse-error (type => 'unmatched end tag', text => 'table',
3304     token => $token);
3305 wakaba 1.52 ## Ignore tokens </table><table>
3306 wakaba 1.125 !!!nack ('t223.1');
3307 wakaba 1.1 !!!next-token;
3308 wakaba 1.126 next B;
3309 wakaba 1.1 }
3310    
3311 wakaba 1.151 ## TODO: Followings are removed from the latest spec.
3312 wakaba 1.1 ## generate implied end tags
3313 wakaba 1.123 while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
3314 wakaba 1.79 !!!cp ('t224');
3315 wakaba 1.86 pop @{$self->{open_elements}};
3316 wakaba 1.1 }
3317    
3318 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == TABLE_EL) {
3319 wakaba 1.79 !!!cp ('t225');
3320 wakaba 1.122 ## NOTE: |<table><tr><table>|
3321     !!!parse-error (type => 'not closed',
3322 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
3323 wakaba 1.122 ->manakai_local_name,
3324     token => $token);
3325 wakaba 1.79 } else {
3326     !!!cp ('t226');
3327 wakaba 1.1 }
3328    
3329 wakaba 1.3 splice @{$self->{open_elements}}, $i;
3330 wakaba 1.95 pop @{$open_tables};
3331 wakaba 1.1
3332 wakaba 1.52 $self->_reset_insertion_mode;
3333 wakaba 1.1
3334 wakaba 1.125 ## reprocess
3335     !!!ack-later;
3336 wakaba 1.126 next B;
3337 wakaba 1.100 } elsif ($token->{tag_name} eq 'style') {
3338     if (not $open_tables->[-1]->[1]) { # tainted
3339     !!!cp ('t227.8');
3340     ## NOTE: This is a "as if in head" code clone.
3341     $parse_rcdata->(CDATA_CONTENT_MODEL);
3342 wakaba 1.202 $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3343 wakaba 1.126 next B;
3344 wakaba 1.100 } else {
3345     !!!cp ('t227.7');
3346     #
3347     }
3348     } elsif ($token->{tag_name} eq 'script') {
3349     if (not $open_tables->[-1]->[1]) { # tainted
3350     !!!cp ('t227.6');
3351     ## NOTE: This is a "as if in head" code clone.
3352     $script_start_tag->();
3353 wakaba 1.202 $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3354 wakaba 1.126 next B;
3355 wakaba 1.100 } else {
3356     !!!cp ('t227.5');
3357     #
3358     }
3359 wakaba 1.98 } elsif ($token->{tag_name} eq 'input') {
3360     if (not $open_tables->[-1]->[1]) { # tainted
3361     if ($token->{attributes}->{type}) { ## TODO: case
3362     my $type = lc $token->{attributes}->{type}->{value};
3363     if ($type eq 'hidden') {
3364     !!!cp ('t227.3');
3365 wakaba 1.153 !!!parse-error (type => 'in table',
3366     text => $token->{tag_name}, token => $token);
3367 wakaba 1.98
3368 wakaba 1.116 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3369 wakaba 1.202 $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3370 wakaba 1.98
3371     ## TODO: form element pointer
3372    
3373     pop @{$self->{open_elements}};
3374    
3375     !!!next-token;
3376 wakaba 1.125 !!!ack ('t227.2.1');
3377 wakaba 1.126 next B;
3378 wakaba 1.98 } else {
3379     !!!cp ('t227.2');
3380     #
3381     }
3382     } else {
3383     !!!cp ('t227.1');
3384     #
3385     }
3386     } else {
3387     !!!cp ('t227.4');
3388     #
3389     }
3390 wakaba 1.58 } else {
3391 wakaba 1.79 !!!cp ('t227');
3392 wakaba 1.58 #
3393     }
3394 wakaba 1.98
3395 wakaba 1.153 !!!parse-error (type => 'in table', text => $token->{tag_name},
3396     token => $token);
3397 wakaba 1.98
3398     $insert = $insert_to_foster;
3399     #
3400 wakaba 1.58 } elsif ($token->{type} == END_TAG_TOKEN) {
3401 wakaba 1.52 if ($token->{tag_name} eq 'tr' and
3402 wakaba 1.54 $self->{insertion_mode} == IN_ROW_IM) {
3403 wakaba 1.52 ## have an element in table scope
3404     my $i;
3405     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3406     my $node = $self->{open_elements}->[$_];
3407 wakaba 1.206 if ($node->[1] == TABLE_ROW_EL) {
3408 wakaba 1.79 !!!cp ('t228');
3409 wakaba 1.52 $i = $_;
3410     last INSCOPE;
3411 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3412 wakaba 1.79 !!!cp ('t229');
3413 wakaba 1.52 last INSCOPE;
3414     }
3415     } # INSCOPE
3416     unless (defined $i) {
3417 wakaba 1.79 !!!cp ('t230');
3418 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3419     text => $token->{tag_name}, token => $token);
3420 wakaba 1.52 ## Ignore the token
3421 wakaba 1.125 !!!nack ('t230.1');
3422 wakaba 1.42 !!!next-token;
3423 wakaba 1.126 next B;
3424 wakaba 1.79 } else {
3425     !!!cp ('t232');
3426 wakaba 1.42 }
3427    
3428 wakaba 1.52 ## Clear back to table row context
3429 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3430     & TABLE_ROW_SCOPING_EL)) {
3431 wakaba 1.79 !!!cp ('t231');
3432 wakaba 1.83 ## ISSUE: Can this state be reached?
3433 wakaba 1.52 pop @{$self->{open_elements}};
3434     }
3435 wakaba 1.42
3436 wakaba 1.52 pop @{$self->{open_elements}}; # tr
3437 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_BODY_IM;
3438 wakaba 1.52 !!!next-token;
3439 wakaba 1.125 !!!nack ('t231.1');
3440 wakaba 1.126 next B;
3441 wakaba 1.52 } elsif ($token->{tag_name} eq 'table') {
3442 wakaba 1.54 if ($self->{insertion_mode} == IN_ROW_IM) {
3443 wakaba 1.52 ## As if </tr>
3444     ## have an element in table scope
3445     my $i;
3446     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3447     my $node = $self->{open_elements}->[$_];
3448 wakaba 1.206 if ($node->[1] == TABLE_ROW_EL) {
3449 wakaba 1.79 !!!cp ('t233');
3450 wakaba 1.52 $i = $_;
3451     last INSCOPE;
3452 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3453 wakaba 1.79 !!!cp ('t234');
3454 wakaba 1.52 last INSCOPE;
3455 wakaba 1.42 }
3456 wakaba 1.52 } # INSCOPE
3457     unless (defined $i) {
3458 wakaba 1.79 !!!cp ('t235');
3459 wakaba 1.83 ## TODO: The following is wrong.
3460 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3461     text => $token->{type}, token => $token);
3462 wakaba 1.52 ## Ignore the token
3463 wakaba 1.125 !!!nack ('t236.1');
3464 wakaba 1.52 !!!next-token;
3465 wakaba 1.126 next B;
3466 wakaba 1.42 }
3467 wakaba 1.52
3468     ## Clear back to table row context
3469 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3470     & TABLE_ROW_SCOPING_EL)) {
3471 wakaba 1.79 !!!cp ('t236');
3472 wakaba 1.83 ## ISSUE: Can this state be reached?
3473 wakaba 1.46 pop @{$self->{open_elements}};
3474 wakaba 1.1 }
3475 wakaba 1.46
3476 wakaba 1.52 pop @{$self->{open_elements}}; # tr
3477 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_BODY_IM;
3478 wakaba 1.46 ## reprocess in the "in table body" insertion mode...
3479 wakaba 1.1 }
3480    
3481 wakaba 1.54 if ($self->{insertion_mode} == IN_TABLE_BODY_IM) {
3482 wakaba 1.52 ## have an element in table scope
3483     my $i;
3484     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3485     my $node = $self->{open_elements}->[$_];
3486 wakaba 1.206 if ($node->[1] == TABLE_ROW_GROUP_EL) {
3487 wakaba 1.79 !!!cp ('t237');
3488 wakaba 1.52 $i = $_;
3489     last INSCOPE;
3490 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3491 wakaba 1.79 !!!cp ('t238');
3492 wakaba 1.52 last INSCOPE;
3493     }
3494     } # INSCOPE
3495     unless (defined $i) {
3496 wakaba 1.79 !!!cp ('t239');
3497 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3498     text => $token->{tag_name}, token => $token);
3499 wakaba 1.52 ## Ignore the token
3500 wakaba 1.125 !!!nack ('t239.1');
3501 wakaba 1.52 !!!next-token;
3502 wakaba 1.126 next B;
3503 wakaba 1.47 }
3504    
3505     ## Clear back to table body context
3506 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3507     & TABLE_ROWS_SCOPING_EL)) {
3508 wakaba 1.79 !!!cp ('t240');
3509 wakaba 1.47 pop @{$self->{open_elements}};
3510     }
3511    
3512 wakaba 1.52 ## As if <{current node}>
3513     ## have an element in table scope
3514     ## true by definition
3515    
3516     ## Clear back to table body context
3517     ## nop by definition
3518    
3519     pop @{$self->{open_elements}};
3520 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
3521 wakaba 1.52 ## reprocess in the "in table" insertion mode...
3522     }
3523    
3524 wakaba 1.94 ## NOTE: </table> in the "in table" insertion mode.
3525     ## When you edit the code fragment below, please ensure that
3526     ## the code for <table> in the "in table" insertion mode
3527     ## is synced with it.
3528    
3529 wakaba 1.52 ## have a table element in table scope
3530     my $i;
3531     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3532     my $node = $self->{open_elements}->[$_];
3533 wakaba 1.206 if ($node->[1] == TABLE_EL) {
3534 wakaba 1.79 !!!cp ('t241');
3535 wakaba 1.52 $i = $_;
3536     last INSCOPE;
3537 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3538 wakaba 1.79 !!!cp ('t242');
3539 wakaba 1.52 last INSCOPE;
3540 wakaba 1.47 }
3541 wakaba 1.52 } # INSCOPE
3542     unless (defined $i) {
3543 wakaba 1.79 !!!cp ('t243');
3544 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3545     text => $token->{tag_name}, token => $token);
3546 wakaba 1.52 ## Ignore the token
3547 wakaba 1.125 !!!nack ('t243.1');
3548 wakaba 1.52 !!!next-token;
3549 wakaba 1.126 next B;
3550 wakaba 1.3 }
3551 wakaba 1.52
3552     splice @{$self->{open_elements}}, $i;
3553 wakaba 1.95 pop @{$open_tables};
3554 wakaba 1.1
3555 wakaba 1.52 $self->_reset_insertion_mode;
3556 wakaba 1.47
3557     !!!next-token;
3558 wakaba 1.126 next B;
3559 wakaba 1.47 } elsif ({
3560 wakaba 1.48 tbody => 1, tfoot => 1, thead => 1,
3561 wakaba 1.52 }->{$token->{tag_name}} and
3562 wakaba 1.56 $self->{insertion_mode} & ROW_IMS) {
3563 wakaba 1.54 if ($self->{insertion_mode} == IN_ROW_IM) {
3564 wakaba 1.52 ## have an element in table scope
3565     my $i;
3566     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3567     my $node = $self->{open_elements}->[$_];
3568 wakaba 1.123 if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
3569 wakaba 1.79 !!!cp ('t247');
3570 wakaba 1.52 $i = $_;
3571     last INSCOPE;
3572 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3573 wakaba 1.79 !!!cp ('t248');
3574 wakaba 1.52 last INSCOPE;
3575     }
3576     } # INSCOPE
3577     unless (defined $i) {
3578 wakaba 1.79 !!!cp ('t249');
3579 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3580     text => $token->{tag_name}, token => $token);
3581 wakaba 1.52 ## Ignore the token
3582 wakaba 1.125 !!!nack ('t249.1');
3583 wakaba 1.52 !!!next-token;
3584 wakaba 1.126 next B;
3585 wakaba 1.52 }
3586    
3587 wakaba 1.48 ## As if </tr>
3588     ## have an element in table scope
3589     my $i;
3590     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3591     my $node = $self->{open_elements}->[$_];
3592 wakaba 1.206 if ($node->[1] == TABLE_ROW_EL) {
3593 wakaba 1.79 !!!cp ('t250');
3594 wakaba 1.48 $i = $_;
3595     last INSCOPE;
3596 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3597 wakaba 1.79 !!!cp ('t251');
3598 wakaba 1.48 last INSCOPE;
3599     }
3600     } # INSCOPE
3601 wakaba 1.52 unless (defined $i) {
3602 wakaba 1.79 !!!cp ('t252');
3603 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3604     text => 'tr', token => $token);
3605 wakaba 1.52 ## Ignore the token
3606 wakaba 1.125 !!!nack ('t252.1');
3607 wakaba 1.52 !!!next-token;
3608 wakaba 1.126 next B;
3609 wakaba 1.52 }
3610 wakaba 1.48
3611     ## Clear back to table row context
3612 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3613     & TABLE_ROW_SCOPING_EL)) {
3614 wakaba 1.79 !!!cp ('t253');
3615 wakaba 1.83 ## ISSUE: Can this case be reached?
3616 wakaba 1.48 pop @{$self->{open_elements}};
3617     }
3618    
3619     pop @{$self->{open_elements}}; # tr
3620 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_BODY_IM;
3621 wakaba 1.52 ## reprocess in the "in table body" insertion mode...
3622     }
3623    
3624     ## have an element in table scope
3625     my $i;
3626     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3627     my $node = $self->{open_elements}->[$_];
3628 wakaba 1.123 if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
3629 wakaba 1.79 !!!cp ('t254');
3630 wakaba 1.52 $i = $_;
3631     last INSCOPE;
3632 wakaba 1.123 } elsif ($node->[1] & TABLE_SCOPING_EL) {
3633 wakaba 1.79 !!!cp ('t255');
3634 wakaba 1.52 last INSCOPE;
3635     }
3636     } # INSCOPE
3637     unless (defined $i) {
3638 wakaba 1.79 !!!cp ('t256');
3639 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3640     text => $token->{tag_name}, token => $token);
3641 wakaba 1.52 ## Ignore the token
3642 wakaba 1.125 !!!nack ('t256.1');
3643 wakaba 1.52 !!!next-token;
3644 wakaba 1.126 next B;
3645 wakaba 1.52 }
3646    
3647     ## Clear back to table body context
3648 wakaba 1.123 while (not ($self->{open_elements}->[-1]->[1]
3649     & TABLE_ROWS_SCOPING_EL)) {
3650 wakaba 1.79 !!!cp ('t257');
3651 wakaba 1.83 ## ISSUE: Can this case be reached?
3652 wakaba 1.52 pop @{$self->{open_elements}};
3653     }
3654    
3655     pop @{$self->{open_elements}};
3656 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
3657 wakaba 1.125 !!!nack ('t257.1');
3658 wakaba 1.52 !!!next-token;
3659 wakaba 1.126 next B;
3660 wakaba 1.52 } elsif ({
3661     body => 1, caption => 1, col => 1, colgroup => 1,
3662     html => 1, td => 1, th => 1,
3663 wakaba 1.54 tr => 1, # $self->{insertion_mode} == IN_ROW_IM
3664     tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
3665 wakaba 1.52 }->{$token->{tag_name}}) {
3666 wakaba 1.125 !!!cp ('t258');
3667 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3668     text => $token->{tag_name}, token => $token);
3669 wakaba 1.125 ## Ignore the token
3670     !!!nack ('t258.1');
3671     !!!next-token;
3672 wakaba 1.126 next B;
3673 wakaba 1.58 } else {
3674 wakaba 1.79 !!!cp ('t259');
3675 wakaba 1.153 !!!parse-error (type => 'in table:/',
3676     text => $token->{tag_name}, token => $token);
3677 wakaba 1.52
3678 wakaba 1.58 $insert = $insert_to_foster;
3679     #
3680     }
3681 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3682 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == HTML_EL and
3683 wakaba 1.104 @{$self->{open_elements}} == 1) { # redundant, maybe
3684 wakaba 1.113 !!!parse-error (type => 'in body:#eof', token => $token);
3685 wakaba 1.104 !!!cp ('t259.1');
3686 wakaba 1.105 #
3687 wakaba 1.104 } else {
3688     !!!cp ('t259.2');
3689 wakaba 1.105 #
3690 wakaba 1.104 }
3691    
3692     ## Stop parsing
3693     last B;
3694 wakaba 1.58 } else {
3695     die "$0: $token->{type}: Unknown token type";
3696     }
3697 wakaba 1.54 } elsif ($self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
3698 wakaba 1.55 if ($token->{type} == CHARACTER_TOKEN) {
3699 wakaba 1.188 if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
3700 wakaba 1.52 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3701     unless (length $token->{data}) {
3702 wakaba 1.79 !!!cp ('t260');
3703 wakaba 1.52 !!!next-token;
3704 wakaba 1.126 next B;
3705 wakaba 1.52 }
3706     }
3707    
3708 wakaba 1.79 !!!cp ('t261');
3709 wakaba 1.52 #
3710 wakaba 1.55 } elsif ($token->{type} == START_TAG_TOKEN) {
3711 wakaba 1.52 if ($token->{tag_name} eq 'col') {
3712 wakaba 1.79 !!!cp ('t262');
3713 wakaba 1.116 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3714 wakaba 1.52 pop @{$self->{open_elements}};
3715 wakaba 1.125 !!!ack ('t262.1');
3716 wakaba 1.52 !!!next-token;
3717 wakaba 1.126 next B;
3718 wakaba 1.52 } else {
3719 wakaba 1.79 !!!cp ('t263');
3720 wakaba 1.52 #
3721     }
3722 wakaba 1.55 } elsif ($token->{type} == END_TAG_TOKEN) {
3723 wakaba 1.52 if ($token->{tag_name} eq 'colgroup') {
3724 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == HTML_EL) {
3725 wakaba 1.79 !!!cp ('t264');
3726 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3727     text => 'colgroup', token => $token);
3728 wakaba 1.52 ## Ignore the token
3729     !!!next-token;
3730 wakaba 1.126 next B;
3731 wakaba 1.52 } else {
3732 wakaba 1.79 !!!cp ('t265');
3733 wakaba 1.52 pop @{$self->{open_elements}}; # colgroup
3734 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
3735 wakaba 1.52 !!!next-token;
3736 wakaba 1.126 next B;
3737 wakaba 1.52 }
3738     } elsif ($token->{tag_name} eq 'col') {
3739 wakaba 1.79 !!!cp ('t266');
3740 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3741     text => 'col', token => $token);
3742 wakaba 1.52 ## Ignore the token
3743     !!!next-token;
3744 wakaba 1.126 next B;
3745 wakaba 1.52 } else {
3746 wakaba 1.79 !!!cp ('t267');
3747 wakaba 1.52 #
3748     }
3749 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3750 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == HTML_EL and
3751 wakaba 1.104 @{$self->{open_elements}} == 1) { # redundant, maybe
3752     !!!cp ('t270.2');
3753     ## Stop parsing.
3754     last B;
3755     } else {
3756     ## NOTE: As if </colgroup>.
3757     !!!cp ('t270.1');
3758     pop @{$self->{open_elements}}; # colgroup
3759     $self->{insertion_mode} = IN_TABLE_IM;
3760     ## Reprocess.
3761 wakaba 1.126 next B;
3762 wakaba 1.104 }
3763     } else {
3764     die "$0: $token->{type}: Unknown token type";
3765     }
3766 wakaba 1.52
3767     ## As if </colgroup>
3768 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == HTML_EL) {
3769 wakaba 1.79 !!!cp ('t269');
3770 wakaba 1.104 ## TODO: Wrong error type?
3771 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3772     text => 'colgroup', token => $token);
3773 wakaba 1.52 ## Ignore the token
3774 wakaba 1.125 !!!nack ('t269.1');
3775 wakaba 1.52 !!!next-token;
3776 wakaba 1.126 next B;
3777 wakaba 1.52 } else {
3778 wakaba 1.79 !!!cp ('t270');
3779 wakaba 1.52 pop @{$self->{open_elements}}; # colgroup
3780 wakaba 1.54 $self->{insertion_mode} = IN_TABLE_IM;
3781 wakaba 1.125 !!!ack-later;
3782 wakaba 1.52 ## reprocess
3783 wakaba 1.126 next B;
3784 wakaba 1.52 }
3785 wakaba 1.101 } elsif ($self->{insertion_mode} & SELECT_IMS) {
3786 wakaba 1.58 if ($token->{type} == CHARACTER_TOKEN) {
3787 wakaba 1.79 !!!cp ('t271');
3788 wakaba 1.58 $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3789     !!!next-token;
3790 wakaba 1.126 next B;
3791 wakaba 1.58 } elsif ($token->{type} == START_TAG_TOKEN) {
3792 wakaba 1.123 if ($token->{tag_name} eq 'option') {
3793 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == OPTION_EL) {
3794 wakaba 1.123 !!!cp ('t272');
3795     ## As if </option>
3796     pop @{$self->{open_elements}};
3797     } else {
3798     !!!cp ('t273');
3799     }
3800 wakaba 1.52
3801 wakaba 1.123 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3802 wakaba 1.125 !!!nack ('t273.1');
3803 wakaba 1.123 !!!next-token;
3804 wakaba 1.126 next B;
3805 wakaba 1.123 } elsif ($token->{tag_name} eq 'optgroup') {
3806 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == OPTION_EL) {
3807 wakaba 1.123 !!!cp ('t274');
3808     ## As if </option>
3809     pop @{$self->{open_elements}};
3810     } else {
3811     !!!cp ('t275');
3812     }
3813 wakaba 1.52
3814 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == OPTGROUP_EL) {
3815 wakaba 1.123 !!!cp ('t276');
3816     ## As if </optgroup>
3817     pop @{$self->{open_elements}};
3818     } else {
3819     !!!cp ('t277');
3820     }
3821 wakaba 1.52
3822 wakaba 1.123 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3823 wakaba 1.125 !!!nack ('t277.1');
3824 wakaba 1.123 !!!next-token;
3825 wakaba 1.126 next B;
3826 wakaba 1.146 } elsif ({
3827     select => 1, input => 1, textarea => 1,
3828     }->{$token->{tag_name}} or
3829 wakaba 1.101 ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
3830     {
3831     caption => 1, table => 1,
3832     tbody => 1, tfoot => 1, thead => 1,
3833     tr => 1, td => 1, th => 1,
3834     }->{$token->{tag_name}})) {
3835     ## TODO: The type below is not good - <select> is replaced by </select>
3836 wakaba 1.153 !!!parse-error (type => 'not closed', text => 'select',
3837     token => $token);
3838 wakaba 1.101 ## NOTE: As if the token were </select> (<select> case) or
3839     ## as if there were </select> (otherwise).
3840 wakaba 1.123 ## have an element in table scope
3841     my $i;
3842     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3843     my $node = $self->{open_elements}->[$_];
3844 wakaba 1.206 if ($node->[1] == SELECT_EL) {
3845 wakaba 1.123 !!!cp ('t278');
3846     $i = $_;
3847     last INSCOPE;
3848     } elsif ($node->[1] & TABLE_SCOPING_EL) {
3849     !!!cp ('t279');
3850     last INSCOPE;
3851     }
3852     } # INSCOPE
3853     unless (defined $i) {
3854     !!!cp ('t280');
3855 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3856     text => 'select', token => $token);
3857 wakaba 1.123 ## Ignore the token
3858 wakaba 1.125 !!!nack ('t280.1');
3859 wakaba 1.123 !!!next-token;
3860 wakaba 1.126 next B;
3861 wakaba 1.123 }
3862 wakaba 1.52
3863 wakaba 1.123 !!!cp ('t281');
3864     splice @{$self->{open_elements}}, $i;
3865 wakaba 1.52
3866 wakaba 1.123 $self->_reset_insertion_mode;
3867 wakaba 1.47
3868 wakaba 1.101 if ($token->{tag_name} eq 'select') {
3869 wakaba 1.125 !!!nack ('t281.2');
3870 wakaba 1.101 !!!next-token;
3871 wakaba 1.126 next B;
3872 wakaba 1.101 } else {
3873     !!!cp ('t281.1');
3874 wakaba 1.125 !!!ack-later;
3875 wakaba 1.101 ## Reprocess the token.
3876 wakaba 1.126 next B;
3877 wakaba 1.101 }
3878 wakaba 1.58 } else {
3879 wakaba 1.79 !!!cp ('t282');
3880 wakaba 1.153 !!!parse-error (type => 'in select',
3881     text => $token->{tag_name}, token => $token);
3882 wakaba 1.58 ## Ignore the token
3883 wakaba 1.125 !!!nack ('t282.1');
3884 wakaba 1.58 !!!next-token;
3885 wakaba 1.126 next B;
3886 wakaba 1.58 }
3887     } elsif ($token->{type} == END_TAG_TOKEN) {
3888 wakaba 1.123 if ($token->{tag_name} eq 'optgroup') {
3889 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == OPTION_EL and
3890     $self->{open_elements}->[-2]->[1] == OPTGROUP_EL) {
3891 wakaba 1.123 !!!cp ('t283');
3892     ## As if </option>
3893     splice @{$self->{open_elements}}, -2;
3894 wakaba 1.206 } elsif ($self->{open_elements}->[-1]->[1] == OPTGROUP_EL) {
3895 wakaba 1.123 !!!cp ('t284');
3896     pop @{$self->{open_elements}};
3897     } else {
3898     !!!cp ('t285');
3899 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3900     text => $token->{tag_name}, token => $token);
3901 wakaba 1.123 ## Ignore the token
3902     }
3903 wakaba 1.125 !!!nack ('t285.1');
3904 wakaba 1.123 !!!next-token;
3905 wakaba 1.126 next B;
3906 wakaba 1.123 } elsif ($token->{tag_name} eq 'option') {
3907 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == OPTION_EL) {
3908 wakaba 1.123 !!!cp ('t286');
3909     pop @{$self->{open_elements}};
3910     } else {
3911     !!!cp ('t287');
3912 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3913     text => $token->{tag_name}, token => $token);
3914 wakaba 1.123 ## Ignore the token
3915     }
3916 wakaba 1.125 !!!nack ('t287.1');
3917 wakaba 1.123 !!!next-token;
3918 wakaba 1.126 next B;
3919 wakaba 1.123 } elsif ($token->{tag_name} eq 'select') {
3920     ## have an element in table scope
3921     my $i;
3922     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3923     my $node = $self->{open_elements}->[$_];
3924 wakaba 1.206 if ($node->[1] == SELECT_EL) {
3925 wakaba 1.123 !!!cp ('t288');
3926     $i = $_;
3927     last INSCOPE;
3928     } elsif ($node->[1] & TABLE_SCOPING_EL) {
3929     !!!cp ('t289');
3930     last INSCOPE;
3931     }
3932     } # INSCOPE
3933     unless (defined $i) {
3934     !!!cp ('t290');
3935 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3936     text => $token->{tag_name}, token => $token);
3937 wakaba 1.123 ## Ignore the token
3938 wakaba 1.125 !!!nack ('t290.1');
3939 wakaba 1.123 !!!next-token;
3940 wakaba 1.126 next B;
3941 wakaba 1.123 }
3942 wakaba 1.52
3943 wakaba 1.123 !!!cp ('t291');
3944     splice @{$self->{open_elements}}, $i;
3945 wakaba 1.52
3946 wakaba 1.123 $self->_reset_insertion_mode;
3947 wakaba 1.52
3948 wakaba 1.125 !!!nack ('t291.1');
3949 wakaba 1.123 !!!next-token;
3950 wakaba 1.126 next B;
3951 wakaba 1.101 } elsif ($self->{insertion_mode} == IN_SELECT_IN_TABLE_IM and
3952     {
3953     caption => 1, table => 1, tbody => 1,
3954     tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
3955     }->{$token->{tag_name}}) {
3956 wakaba 1.83 ## TODO: The following is wrong?
3957 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
3958     text => $token->{tag_name}, token => $token);
3959 wakaba 1.52
3960 wakaba 1.123 ## have an element in table scope
3961     my $i;
3962     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3963     my $node = $self->{open_elements}->[$_];
3964     if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
3965     !!!cp ('t292');
3966     $i = $_;
3967     last INSCOPE;
3968     } elsif ($node->[1] & TABLE_SCOPING_EL) {
3969     !!!cp ('t293');
3970     last INSCOPE;
3971     }
3972     } # INSCOPE
3973     unless (defined $i) {
3974     !!!cp ('t294');
3975     ## Ignore the token
3976 wakaba 1.125 !!!nack ('t294.1');
3977 wakaba 1.123 !!!next-token;
3978 wakaba 1.126 next B;
3979 wakaba 1.123 }
3980 wakaba 1.52
3981 wakaba 1.123 ## As if </select>
3982     ## have an element in table scope
3983     undef $i;
3984     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3985     my $node = $self->{open_elements}->[$_];
3986 wakaba 1.206 if ($node->[1] == SELECT_EL) {
3987 wakaba 1.123 !!!cp ('t295');
3988     $i = $_;
3989     last INSCOPE;
3990     } elsif ($node->[1] & TABLE_SCOPING_EL) {
3991 wakaba 1.83 ## ISSUE: Can this state be reached?
3992 wakaba 1.123 !!!cp ('t296');
3993     last INSCOPE;
3994     }
3995     } # INSCOPE
3996     unless (defined $i) {
3997     !!!cp ('t297');
3998 wakaba 1.83 ## TODO: The following error type is correct?
3999 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
4000     text => 'select', token => $token);
4001 wakaba 1.123 ## Ignore the </select> token
4002 wakaba 1.125 !!!nack ('t297.1');
4003 wakaba 1.123 !!!next-token; ## TODO: ok?
4004 wakaba 1.126 next B;
4005 wakaba 1.123 }
4006 wakaba 1.52
4007 wakaba 1.123 !!!cp ('t298');
4008     splice @{$self->{open_elements}}, $i;
4009 wakaba 1.52
4010 wakaba 1.123 $self->_reset_insertion_mode;
4011 wakaba 1.52
4012 wakaba 1.125 !!!ack-later;
4013 wakaba 1.123 ## reprocess
4014 wakaba 1.126 next B;
4015 wakaba 1.58 } else {
4016 wakaba 1.79 !!!cp ('t299');
4017 wakaba 1.153 !!!parse-error (type => 'in select:/',
4018     text => $token->{tag_name}, token => $token);
4019 wakaba 1.52 ## Ignore the token
4020 wakaba 1.125 !!!nack ('t299.3');
4021 wakaba 1.52 !!!next-token;
4022 wakaba 1.126 next B;
4023 wakaba 1.58 }
4024 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4025 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == HTML_EL and
4026 wakaba 1.104 @{$self->{open_elements}} == 1) { # redundant, maybe
4027     !!!cp ('t299.1');
4028 wakaba 1.113 !!!parse-error (type => 'in body:#eof', token => $token);
4029 wakaba 1.104 } else {
4030     !!!cp ('t299.2');
4031     }
4032    
4033     ## Stop parsing.
4034     last B;
4035 wakaba 1.58 } else {
4036     die "$0: $token->{type}: Unknown token type";
4037     }
4038 wakaba 1.56 } elsif ($self->{insertion_mode} & BODY_AFTER_IMS) {
4039 wakaba 1.55 if ($token->{type} == CHARACTER_TOKEN) {
4040 wakaba 1.188 if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
4041 wakaba 1.52 my $data = $1;
4042     ## As if in body
4043     $reconstruct_active_formatting_elements->($insert_to_current);
4044    
4045     $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4046    
4047     unless (length $token->{data}) {
4048 wakaba 1.79 !!!cp ('t300');
4049 wakaba 1.52 !!!next-token;
4050 wakaba 1.126 next B;
4051 wakaba 1.52 }
4052     }
4053    
4054 wakaba 1.54 if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4055 wakaba 1.79 !!!cp ('t301');
4056 wakaba 1.153 !!!parse-error (type => 'after html:#text', token => $token);
4057 wakaba 1.188 #
4058 wakaba 1.79 } else {
4059     !!!cp ('t302');
4060 wakaba 1.188 ## "after body" insertion mode
4061     !!!parse-error (type => 'after body:#text', token => $token);
4062     #
4063 wakaba 1.52 }
4064    
4065 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM;
4066 wakaba 1.52 ## reprocess
4067 wakaba 1.126 next B;
4068 wakaba 1.55 } elsif ($token->{type} == START_TAG_TOKEN) {
4069 wakaba 1.54 if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4070 wakaba 1.79 !!!cp ('t303');
4071 wakaba 1.153 !!!parse-error (type => 'after html',
4072     text => $token->{tag_name}, token => $token);
4073 wakaba 1.188 #
4074 wakaba 1.79 } else {
4075     !!!cp ('t304');
4076 wakaba 1.188 ## "after body" insertion mode
4077     !!!parse-error (type => 'after body',
4078     text => $token->{tag_name}, token => $token);
4079     #
4080 wakaba 1.52 }
4081    
4082 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM;
4083 wakaba 1.125 !!!ack-later;
4084 wakaba 1.52 ## reprocess
4085 wakaba 1.126 next B;
4086 wakaba 1.55 } elsif ($token->{type} == END_TAG_TOKEN) {
4087 wakaba 1.54 if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4088 wakaba 1.79 !!!cp ('t305');
4089 wakaba 1.153 !!!parse-error (type => 'after html:/',
4090     text => $token->{tag_name}, token => $token);
4091 wakaba 1.52
4092 wakaba 1.188 $self->{insertion_mode} = IN_BODY_IM;
4093     ## Reprocess.
4094     next B;
4095 wakaba 1.79 } else {
4096     !!!cp ('t306');
4097 wakaba 1.52 }
4098    
4099     ## "after body" insertion mode
4100     if ($token->{tag_name} eq 'html') {
4101     if (defined $self->{inner_html_node}) {
4102 wakaba 1.79 !!!cp ('t307');
4103 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
4104     text => 'html', token => $token);
4105 wakaba 1.52 ## Ignore the token
4106     !!!next-token;
4107 wakaba 1.126 next B;
4108 wakaba 1.52 } else {
4109 wakaba 1.79 !!!cp ('t308');
4110 wakaba 1.54 $self->{insertion_mode} = AFTER_HTML_BODY_IM;
4111 wakaba 1.52 !!!next-token;
4112 wakaba 1.126 next B;
4113 wakaba 1.52 }
4114     } else {
4115 wakaba 1.79 !!!cp ('t309');
4116 wakaba 1.153 !!!parse-error (type => 'after body:/',
4117     text => $token->{tag_name}, token => $token);
4118 wakaba 1.52
4119 wakaba 1.54 $self->{insertion_mode} = IN_BODY_IM;
4120 wakaba 1.52 ## reprocess
4121 wakaba 1.126 next B;
4122 wakaba 1.52 }
4123 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4124     !!!cp ('t309.2');
4125     ## Stop parsing
4126     last B;
4127 wakaba 1.52 } else {
4128     die "$0: $token->{type}: Unknown token type";
4129     }
4130 wakaba 1.56 } elsif ($self->{insertion_mode} & FRAME_IMS) {
4131 wakaba 1.55 if ($token->{type} == CHARACTER_TOKEN) {
4132 wakaba 1.188 if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
4133 wakaba 1.52 $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4134    
4135     unless (length $token->{data}) {
4136 wakaba 1.79 !!!cp ('t310');
4137 wakaba 1.52 !!!next-token;
4138 wakaba 1.126 next B;
4139 wakaba 1.52 }
4140     }
4141    
4142 wakaba 1.188 if ($token->{data} =~ s/^[^\x09\x0A\x0C\x20]+//) {
4143 wakaba 1.54 if ($self->{insertion_mode} == IN_FRAMESET_IM) {
4144 wakaba 1.79 !!!cp ('t311');
4145 wakaba 1.153 !!!parse-error (type => 'in frameset:#text', token => $token);
4146 wakaba 1.54 } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
4147 wakaba 1.79 !!!cp ('t312');
4148 wakaba 1.153 !!!parse-error (type => 'after frameset:#text', token => $token);
4149 wakaba 1.158 } else { # "after after frameset"
4150 wakaba 1.79 !!!cp ('t313');
4151 wakaba 1.153 !!!parse-error (type => 'after html:#text', token => $token);
4152 wakaba 1.52 }
4153    
4154     ## Ignore the token.
4155     if (length $token->{data}) {
4156 wakaba 1.79 !!!cp ('t314');
4157 wakaba 1.52 ## reprocess the rest of characters
4158     } else {
4159 wakaba 1.79 !!!cp ('t315');
4160 wakaba 1.52 !!!next-token;
4161     }
4162 wakaba 1.126 next B;
4163 wakaba 1.52 }
4164    
4165     die qq[$0: Character "$token->{data}"];
4166 wakaba 1.55 } elsif ($token->{type} == START_TAG_TOKEN) {
4167 wakaba 1.52 if ($token->{tag_name} eq 'frameset' and
4168 wakaba 1.54 $self->{insertion_mode} == IN_FRAMESET_IM) {
4169 wakaba 1.79 !!!cp ('t318');
4170 wakaba 1.116 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4171 wakaba 1.125 !!!nack ('t318.1');
4172 wakaba 1.52 !!!next-token;
4173 wakaba 1.126 next B;
4174 wakaba 1.52 } elsif ($token->{tag_name} eq 'frame' and
4175 wakaba 1.54 $self->{insertion_mode} == IN_FRAMESET_IM) {
4176 wakaba 1.79 !!!cp ('t319');
4177 wakaba 1.116 !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4178 wakaba 1.52 pop @{$self->{open_elements}};
4179 wakaba 1.125 !!!ack ('t319.1');
4180 wakaba 1.52 !!!next-token;
4181 wakaba 1.126 next B;
4182 wakaba 1.52 } elsif ($token->{tag_name} eq 'noframes') {
4183 wakaba 1.79 !!!cp ('t320');
4184 wakaba 1.148 ## NOTE: As if in head.
4185 wakaba 1.96 $parse_rcdata->(CDATA_CONTENT_MODEL);
4186 wakaba 1.126 next B;
4187 wakaba 1.158
4188     ## NOTE: |<!DOCTYPE HTML><frameset></frameset></html><noframes></noframes>|
4189     ## has no parse error.
4190 wakaba 1.52 } else {
4191 wakaba 1.54 if ($self->{insertion_mode} == IN_FRAMESET_IM) {
4192 wakaba 1.79 !!!cp ('t321');
4193 wakaba 1.153 !!!parse-error (type => 'in frameset',
4194     text => $token->{tag_name}, token => $token);
4195 wakaba 1.158 } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
4196 wakaba 1.79 !!!cp ('t322');
4197 wakaba 1.153 !!!parse-error (type => 'after frameset',
4198     text => $token->{tag_name}, token => $token);
4199 wakaba 1.158 } else { # "after after frameset"
4200     !!!cp ('t322.2');
4201     !!!parse-error (type => 'after after frameset',
4202     text => $token->{tag_name}, token => $token);
4203 wakaba 1.52 }
4204     ## Ignore the token
4205 wakaba 1.125 !!!nack ('t322.1');
4206 wakaba 1.52 !!!next-token;
4207 wakaba 1.126 next B;
4208 wakaba 1.52 }
4209 wakaba 1.55 } elsif ($token->{type} == END_TAG_TOKEN) {
4210 wakaba 1.52 if ($token->{tag_name} eq 'frameset' and
4211 wakaba 1.54 $self->{insertion_mode} == IN_FRAMESET_IM) {
4212 wakaba 1.206 if ($self->{open_elements}->[-1]->[1] == HTML_EL and
4213 wakaba 1.52 @{$self->{open_elements}} == 1) {
4214 wakaba 1.79 !!!cp ('t325');
4215 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
4216     text => $token->{tag_name}, token => $token);
4217 wakaba 1.52 ## Ignore the token
4218     !!!next-token;
4219     } else {
4220 wakaba 1.79 !!!cp ('t326');
4221 wakaba 1.52 pop @{$self->{open_elements}};
4222     !!!next-token;
4223     }
4224 wakaba 1.47
4225 wakaba 1.52 if (not defined $self->{inner_html_node} and
4226 wakaba 1.206 not ($self->{open_elements}->[-1]->[1] == FRAMESET_EL)) {
4227 wakaba 1.79 !!!cp ('t327');
4228 wakaba 1.54 $self->{insertion_mode} = AFTER_FRAMESET_IM;
4229 wakaba 1.79 } else {
4230     !!!cp ('t328');
4231 wakaba 1.52 }
4232 wakaba 1.126 next B;
4233 wakaba 1.52 } elsif ($token->{tag_name} eq 'html' and
4234 wakaba 1.54 $self->{insertion_mode} == AFTER_FRAMESET_IM) {
4235 wakaba 1.79 !!!cp ('t329');
4236 wakaba 1.54 $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
4237 wakaba 1.52 !!!next-token;
4238 wakaba 1.126 next B;
4239 wakaba 1.52 } else {
4240 wakaba 1.54 if ($self->{insertion_mode} == IN_FRAMESET_IM) {
4241 wakaba 1.79 !!!cp ('t330');
4242 wakaba 1.153 !!!parse-error (type => 'in frameset:/',
4243     text => $token->{tag_name}, token => $token);
4244 wakaba 1.158 } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
4245     !!!cp ('t330.1');
4246     !!!parse-error (type => 'after frameset:/',
4247     text => $token->{tag_name}, token => $token);
4248     } else { # "after after html"
4249 wakaba 1.79 !!!cp ('t331');
4250 wakaba 1.158 !!!parse-error (type => 'after after frameset:/',
4251 wakaba 1.153 text => $token->{tag_name}, token => $token);
4252 wakaba 1.52 }
4253     ## Ignore the token
4254     !!!next-token;
4255 wakaba 1.126 next B;
4256 wakaba 1.52 }
4257 wakaba 1.104 } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4258 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == HTML_EL and
4259 wakaba 1.104 @{$self->{open_elements}} == 1) { # redundant, maybe
4260     !!!cp ('t331.1');
4261 wakaba 1.113 !!!parse-error (type => 'in body:#eof', token => $token);
4262 wakaba 1.104 } else {
4263     !!!cp ('t331.2');
4264     }
4265    
4266     ## Stop parsing
4267     last B;
4268 wakaba 1.52 } else {
4269     die "$0: $token->{type}: Unknown token type";
4270     }
4271     } else {
4272     die "$0: $self->{insertion_mode}: Unknown insertion mode";
4273     }
4274 wakaba 1.47
4275 wakaba 1.52 ## "in body" insertion mode
4276 wakaba 1.55 if ($token->{type} == START_TAG_TOKEN) {
4277 wakaba 1.52 if ($token->{tag_name} eq 'script') {
4278 wakaba 1.79 !!!cp ('t332');
4279 wakaba 1.52 ## NOTE: This is an "as if in head" code clone
4280 wakaba 1.100 $script_start_tag->();
4281 wakaba 1.126 next B;
4282 wakaba 1.52 } elsif ($token->{tag_name} eq 'style') {
4283 wakaba 1.79 !!!cp ('t333');
4284 wakaba 1.52 ## NOTE: This is an "as if in head" code clone
4285 wakaba 1.96 $parse_rcdata->(CDATA_CONTENT_MODEL);
4286 wakaba 1.126 next B;
4287 wakaba 1.52 } elsif ({
4288 wakaba 1.194 base => 1, command => 1, eventsource => 1, link => 1,
4289 wakaba 1.52 }->{$token->{tag_name}}) {
4290 wakaba 1.79 !!!cp ('t334');
4291 wakaba 1.52 ## NOTE: This is an "as if in head" code clone, only "-t" differs
4292 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4293 wakaba 1.194 pop @{$self->{open_elements}};
4294 wakaba 1.125 !!!ack ('t334.1');
4295 wakaba 1.52 !!!next-token;
4296 wakaba 1.126 next B;
4297 wakaba 1.52 } elsif ($token->{tag_name} eq 'meta') {
4298     ## NOTE: This is an "as if in head" code clone, only "-t" differs
4299 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4300 wakaba 1.194 my $meta_el = pop @{$self->{open_elements}};
4301 wakaba 1.46
4302 wakaba 1.52 unless ($self->{confident}) {
4303 wakaba 1.134 if ($token->{attributes}->{charset}) {
4304 wakaba 1.79 !!!cp ('t335');
4305 wakaba 1.134 ## NOTE: Whether the encoding is supported or not is handled
4306     ## in the {change_encoding} callback.
4307 wakaba 1.63 $self->{change_encoding}
4308 wakaba 1.114 ->($self, $token->{attributes}->{charset}->{value}, $token);
4309 wakaba 1.66
4310     $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4311     ->set_user_data (manakai_has_reference =>
4312     $token->{attributes}->{charset}
4313     ->{has_reference});
4314 wakaba 1.63 } elsif ($token->{attributes}->{content}) {
4315     if ($token->{attributes}->{content}->{value}
4316 wakaba 1.144 =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4317 wakaba 1.189 [\x09\x0A\x0C\x0D\x20]*=
4318     [\x09\x0A\x0C\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4319     ([^"'\x09\x0A\x0C\x0D\x20][^\x09\x0A\x0C\x0D\x20\x3B]*))
4320     /x) {
4321 wakaba 1.79 !!!cp ('t336');
4322 wakaba 1.134 ## NOTE: Whether the encoding is supported or not is handled
4323     ## in the {change_encoding} callback.
4324 wakaba 1.63 $self->{change_encoding}
4325 wakaba 1.114 ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
4326 wakaba 1.68 $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4327     ->set_user_data (manakai_has_reference =>
4328     $token->{attributes}->{content}
4329     ->{has_reference});
4330 wakaba 1.63 }
4331 wakaba 1.52 }
4332 wakaba 1.66 } else {
4333     if ($token->{attributes}->{charset}) {
4334 wakaba 1.79 !!!cp ('t337');
4335 wakaba 1.66 $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4336     ->set_user_data (manakai_has_reference =>
4337     $token->{attributes}->{charset}
4338     ->{has_reference});
4339     }
4340 wakaba 1.68 if ($token->{attributes}->{content}) {
4341 wakaba 1.79 !!!cp ('t338');
4342 wakaba 1.68 $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4343     ->set_user_data (manakai_has_reference =>
4344     $token->{attributes}->{content}
4345     ->{has_reference});
4346     }
4347 wakaba 1.52 }
4348 wakaba 1.1
4349 wakaba 1.125 !!!ack ('t338.1');
4350 wakaba 1.52 !!!next-token;
4351 wakaba 1.126 next B;
4352 wakaba 1.52 } elsif ($token->{tag_name} eq 'title') {
4353 wakaba 1.79 !!!cp ('t341');
4354 wakaba 1.52 ## NOTE: This is an "as if in head" code clone
4355 wakaba 1.96 $parse_rcdata->(RCDATA_CONTENT_MODEL);
4356 wakaba 1.126 next B;
4357 wakaba 1.52 } elsif ($token->{tag_name} eq 'body') {
4358 wakaba 1.153 !!!parse-error (type => 'in body', text => 'body', token => $token);
4359 wakaba 1.46
4360 wakaba 1.52 if (@{$self->{open_elements}} == 1 or
4361 wakaba 1.206 not ($self->{open_elements}->[1]->[1] == BODY_EL)) {
4362 wakaba 1.79 !!!cp ('t342');
4363 wakaba 1.52 ## Ignore the token
4364     } else {
4365     my $body_el = $self->{open_elements}->[1]->[0];
4366     for my $attr_name (keys %{$token->{attributes}}) {
4367     unless ($body_el->has_attribute_ns (undef, $attr_name)) {
4368 wakaba 1.79 !!!cp ('t343');
4369 wakaba 1.52 $body_el->set_attribute_ns
4370     (undef, [undef, $attr_name],
4371     $token->{attributes}->{$attr_name}->{value});
4372     }
4373     }
4374     }
4375 wakaba 1.125 !!!nack ('t343.1');
4376 wakaba 1.52 !!!next-token;
4377 wakaba 1.126 next B;
4378 wakaba 1.52 } elsif ({
4379 wakaba 1.195 ## NOTE: Start tags for non-phrasing flow content elements
4380    
4381     ## NOTE: The normal one
4382     address => 1, article => 1, aside => 1, blockquote => 1,
4383     center => 1, datagrid => 1, details => 1, dialog => 1,
4384     dir => 1, div => 1, dl => 1, fieldset => 1, figure => 1,
4385     footer => 1, h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1,
4386     h6 => 1, header => 1, menu => 1, nav => 1, ol => 1, p => 1,
4387     section => 1, ul => 1,
4388     ## NOTE: As normal, but drops leading newline
4389 wakaba 1.97 pre => 1, listing => 1,
4390 wakaba 1.195 ## NOTE: As normal, but interacts with the form element pointer
4391 wakaba 1.109 form => 1,
4392 wakaba 1.195
4393 wakaba 1.109 table => 1,
4394     hr => 1,
4395 wakaba 1.52 }->{$token->{tag_name}}) {
4396 wakaba 1.109 if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
4397     !!!cp ('t350');
4398 wakaba 1.113 !!!parse-error (type => 'in form:form', token => $token);
4399 wakaba 1.109 ## Ignore the token
4400 wakaba 1.125 !!!nack ('t350.1');
4401 wakaba 1.109 !!!next-token;
4402 wakaba 1.126 next B;
4403 wakaba 1.109 }
4404    
4405 wakaba 1.52 ## has a p element in scope
4406     INSCOPE: for (reverse @{$self->{open_elements}}) {
4407 wakaba 1.206 if ($_->[1] == P_EL) {
4408 wakaba 1.79 !!!cp ('t344');
4409 wakaba 1.125 !!!back-token; # <form>
4410 wakaba 1.114 $token = {type => END_TAG_TOKEN, tag_name => 'p',
4411     line => $token->{line}, column => $token->{column}};
4412 wakaba 1.126 next B;
4413 wakaba 1.123 } elsif ($_->[1] & SCOPING_EL) {
4414 wakaba 1.79 !!!cp ('t345');
4415 wakaba 1.52 last INSCOPE;
4416     }
4417     } # INSCOPE
4418    
4419 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4420 wakaba 1.97 if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
4421 wakaba 1.125 !!!nack ('t346.1');
4422 wakaba 1.52 !!!next-token;
4423 wakaba 1.55 if ($token->{type} == CHARACTER_TOKEN) {
4424 wakaba 1.52 $token->{data} =~ s/^\x0A//;
4425     unless (length $token->{data}) {
4426 wakaba 1.79 !!!cp ('t346');
4427 wakaba 1.1 !!!next-token;
4428 wakaba 1.79 } else {
4429     !!!cp ('t349');
4430 wakaba 1.52 }
4431 wakaba 1.79 } else {
4432     !!!cp ('t348');
4433 wakaba 1.52 }
4434 wakaba 1.109 } elsif ($token->{tag_name} eq 'form') {
4435     !!!cp ('t347.1');
4436     $self->{form_element} = $self->{open_elements}->[-1]->[0];
4437    
4438 wakaba 1.125 !!!nack ('t347.2');
4439 wakaba 1.109 !!!next-token;
4440     } elsif ($token->{tag_name} eq 'table') {
4441     !!!cp ('t382');
4442     push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
4443    
4444     $self->{insertion_mode} = IN_TABLE_IM;
4445    
4446 wakaba 1.125 !!!nack ('t382.1');
4447 wakaba 1.109 !!!next-token;
4448     } elsif ($token->{tag_name} eq 'hr') {
4449     !!!cp ('t386');
4450     pop @{$self->{open_elements}};
4451    
4452 wakaba 1.125 !!!nack ('t386.1');
4453 wakaba 1.109 !!!next-token;
4454 wakaba 1.52 } else {
4455 wakaba 1.125 !!!nack ('t347.1');
4456 wakaba 1.52 !!!next-token;
4457     }
4458 wakaba 1.126 next B;
4459 wakaba 1.196 } elsif ($token->{tag_name} eq 'li') {
4460     ## NOTE: As normal, but imply </li> when there's another <li> ...
4461 wakaba 1.193
4462     ## NOTE: Special, Scope (<li><foo><li> == <li><foo><li/></foo></li>)
4463     ## Interpreted as <li><foo/></li><li/> (non-conforming)
4464     ## blockquote (O9.27), center (O), dd (Fx3, O, S3.1.2, IE7),
4465     ## dt (Fx, O, S, IE), dl (O), fieldset (O, S, IE), form (Fx, O, S),
4466     ## hn (O), pre (O), applet (O, S), button (O, S), marquee (Fx, O, S),
4467     ## object (Fx)
4468     ## Generate non-tree (non-conforming)
4469     ## basefont (IE7 (where basefont is non-void)), center (IE),
4470     ## form (IE), hn (IE)
4471     ## address, div, p (<li><foo><li> == <li><foo/></li><li/>)
4472     ## Interpreted as <li><foo><li/></foo></li> (non-conforming)
4473     ## div (Fx, S)
4474 wakaba 1.196
4475     my $non_optional;
4476 wakaba 1.52 my $i = -1;
4477 wakaba 1.196
4478     ## 1.
4479     for my $node (reverse @{$self->{open_elements}}) {
4480 wakaba 1.206 if ($node->[1] == LI_EL) {
4481 wakaba 1.196 ## 2. (a) As if </li>
4482     {
4483     ## If no </li> - not applied
4484     #
4485    
4486     ## Otherwise
4487    
4488     ## 1. generate implied end tags, except for </li>
4489     #
4490    
4491     ## 2. If current node != "li", parse error
4492     if ($non_optional) {
4493     !!!parse-error (type => 'not closed',
4494     text => $non_optional->[0]->manakai_local_name,
4495     token => $token);
4496     !!!cp ('t355');
4497     } else {
4498     !!!cp ('t356');
4499     }
4500    
4501     ## 3. Pop
4502     splice @{$self->{open_elements}}, $i;
4503 wakaba 1.52 }
4504 wakaba 1.196
4505     last; ## 2. (b) goto 5.
4506     } elsif (
4507     ## NOTE: not "formatting" and not "phrasing"
4508     ($node->[1] & SPECIAL_EL or
4509     $node->[1] & SCOPING_EL) and
4510     ## NOTE: "li", "dt", and "dd" are in |SPECIAL_EL|.
4511 wakaba 1.206 (not $node->[1] & ADDRESS_DIV_P_EL)
4512     ) {
4513 wakaba 1.196 ## 3.
4514 wakaba 1.79 !!!cp ('t357');
4515 wakaba 1.196 last; ## goto 5.
4516     } elsif ($node->[1] & END_TAG_OPTIONAL_EL) {
4517 wakaba 1.79 !!!cp ('t358');
4518 wakaba 1.196 #
4519     } else {
4520     !!!cp ('t359');
4521     $non_optional ||= $node;
4522     #
4523 wakaba 1.52 }
4524 wakaba 1.196 ## 4.
4525     ## goto 2.
4526 wakaba 1.52 $i--;
4527 wakaba 1.196 }
4528    
4529     ## 5. (a) has a |p| element in scope
4530     INSCOPE: for (reverse @{$self->{open_elements}}) {
4531 wakaba 1.206 if ($_->[1] == P_EL) {
4532 wakaba 1.196 !!!cp ('t353');
4533 wakaba 1.198
4534     ## NOTE: |<p><li>|, for example.
4535    
4536 wakaba 1.196 !!!back-token; # <x>
4537     $token = {type => END_TAG_TOKEN, tag_name => 'p',
4538     line => $token->{line}, column => $token->{column}};
4539     next B;
4540     } elsif ($_->[1] & SCOPING_EL) {
4541     !!!cp ('t354');
4542     last INSCOPE;
4543     }
4544     } # INSCOPE
4545    
4546     ## 5. (b) insert
4547 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4548 wakaba 1.125 !!!nack ('t359.1');
4549 wakaba 1.52 !!!next-token;
4550 wakaba 1.126 next B;
4551 wakaba 1.196 } elsif ($token->{tag_name} eq 'dt' or
4552     $token->{tag_name} eq 'dd') {
4553     ## NOTE: As normal, but imply </dt> or </dd> when ...
4554    
4555     my $non_optional;
4556     my $i = -1;
4557    
4558     ## 1.
4559     for my $node (reverse @{$self->{open_elements}}) {
4560 wakaba 1.207 if ($node->[1] == DTDD_EL) {
4561 wakaba 1.196 ## 2. (a) As if </li>
4562     {
4563     ## If no </li> - not applied
4564     #
4565    
4566     ## Otherwise
4567    
4568     ## 1. generate implied end tags, except for </dt> or </dd>
4569     #
4570    
4571     ## 2. If current node != "dt"|"dd", parse error
4572     if ($non_optional) {
4573     !!!parse-error (type => 'not closed',
4574     text => $non_optional->[0]->manakai_local_name,
4575     token => $token);
4576     !!!cp ('t355.1');
4577     } else {
4578     !!!cp ('t356.1');
4579     }
4580    
4581     ## 3. Pop
4582     splice @{$self->{open_elements}}, $i;
4583     }
4584    
4585     last; ## 2. (b) goto 5.
4586     } elsif (
4587     ## NOTE: not "formatting" and not "phrasing"
4588     ($node->[1] & SPECIAL_EL or
4589     $node->[1] & SCOPING_EL) and
4590     ## NOTE: "li", "dt", and "dd" are in |SPECIAL_EL|.
4591    
4592 wakaba 1.206 (not $node->[1] & ADDRESS_DIV_P_EL)
4593     ) {
4594 wakaba 1.196 ## 3.
4595     !!!cp ('t357.1');
4596     last; ## goto 5.
4597     } elsif ($node->[1] & END_TAG_OPTIONAL_EL) {
4598     !!!cp ('t358.1');
4599     #
4600     } else {
4601     !!!cp ('t359.1');
4602     $non_optional ||= $node;
4603     #
4604     }
4605     ## 4.
4606     ## goto 2.
4607     $i--;
4608     }
4609    
4610     ## 5. (a) has a |p| element in scope
4611     INSCOPE: for (reverse @{$self->{open_elements}}) {
4612 wakaba 1.206 if ($_->[1] == P_EL) {
4613 wakaba 1.196 !!!cp ('t353.1');
4614     !!!back-token; # <x>
4615     $token = {type => END_TAG_TOKEN, tag_name => 'p',
4616     line => $token->{line}, column => $token->{column}};
4617     next B;
4618     } elsif ($_->[1] & SCOPING_EL) {
4619     !!!cp ('t354.1');
4620     last INSCOPE;
4621     }
4622     } # INSCOPE
4623    
4624     ## 5. (b) insert
4625     !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4626     !!!nack ('t359.2');
4627     !!!next-token;
4628     next B;
4629 wakaba 1.52 } elsif ($token->{tag_name} eq 'plaintext') {
4630 wakaba 1.195 ## NOTE: As normal, but effectively ends parsing
4631    
4632 wakaba 1.52 ## has a p element in scope
4633     INSCOPE: for (reverse @{$self->{open_elements}}) {
4634 wakaba 1.206 if ($_->[1] == P_EL) {
4635 wakaba 1.79 !!!cp ('t367');
4636 wakaba 1.125 !!!back-token; # <plaintext>
4637 wakaba 1.114 $token = {type => END_TAG_TOKEN, tag_name => 'p',
4638     line => $token->{line}, column => $token->{column}};
4639 wakaba 1.126 next B;
4640 wakaba 1.123 } elsif ($_->[1] & SCOPING_EL) {
4641 wakaba 1.79 !!!cp ('t368');
4642 wakaba 1.52 last INSCOPE;
4643 wakaba 1.46 }
4644 wakaba 1.52 } # INSCOPE
4645    
4646 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4647 wakaba 1.52
4648     $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
4649    
4650 wakaba 1.125 !!!nack ('t368.1');
4651 wakaba 1.52 !!!next-token;
4652 wakaba 1.126 next B;
4653 wakaba 1.52 } elsif ($token->{tag_name} eq 'a') {
4654     AFE: for my $i (reverse 0..$#$active_formatting_elements) {
4655     my $node = $active_formatting_elements->[$i];
4656 wakaba 1.206 if ($node->[1] == A_EL) {
4657 wakaba 1.79 !!!cp ('t371');
4658 wakaba 1.113 !!!parse-error (type => 'in a:a', token => $token);
4659 wakaba 1.52
4660 wakaba 1.125 !!!back-token; # <a>
4661 wakaba 1.114 $token = {type => END_TAG_TOKEN, tag_name => 'a',
4662     line => $token->{line}, column => $token->{column}};
4663 wakaba 1.113 $formatting_end_tag->($token);
4664 wakaba 1.52
4665     AFE2: for (reverse 0..$#$active_formatting_elements) {
4666     if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
4667 wakaba 1.79 !!!cp ('t372');
4668 wakaba 1.52 splice @$active_formatting_elements, $_, 1;
4669     last AFE2;
4670 wakaba 1.1 }
4671 wakaba 1.52 } # AFE2
4672     OE: for (reverse 0..$#{$self->{open_elements}}) {
4673     if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
4674 wakaba 1.79 !!!cp ('t373');
4675 wakaba 1.52 splice @{$self->{open_elements}}, $_, 1;
4676     last OE;
4677 wakaba 1.1 }
4678 wakaba 1.52 } # OE
4679     last AFE;
4680     } elsif ($node->[0] eq '#marker') {
4681 wakaba 1.79 !!!cp ('t374');
4682 wakaba 1.52 last AFE;
4683     }
4684     } # AFE
4685    
4686     $reconstruct_active_formatting_elements->($insert_to_current);
4687 wakaba 1.1
4688 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4689 wakaba 1.52 push @$active_formatting_elements, $self->{open_elements}->[-1];
4690 wakaba 1.1
4691 wakaba 1.125 !!!nack ('t374.1');
4692 wakaba 1.52 !!!next-token;
4693 wakaba 1.126 next B;
4694 wakaba 1.52 } elsif ($token->{tag_name} eq 'nobr') {
4695     $reconstruct_active_formatting_elements->($insert_to_current);
4696 wakaba 1.1
4697 wakaba 1.52 ## has a |nobr| element in scope
4698     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4699     my $node = $self->{open_elements}->[$_];
4700 wakaba 1.206 if ($node->[1] == NOBR_EL) {
4701 wakaba 1.79 !!!cp ('t376');
4702 wakaba 1.113 !!!parse-error (type => 'in nobr:nobr', token => $token);
4703 wakaba 1.125 !!!back-token; # <nobr>
4704 wakaba 1.114 $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
4705     line => $token->{line}, column => $token->{column}};
4706 wakaba 1.126 next B;
4707 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
4708 wakaba 1.79 !!!cp ('t377');
4709 wakaba 1.52 last INSCOPE;
4710     }
4711     } # INSCOPE
4712    
4713 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4714 wakaba 1.52 push @$active_formatting_elements, $self->{open_elements}->[-1];
4715    
4716 wakaba 1.125 !!!nack ('t377.1');
4717 wakaba 1.52 !!!next-token;
4718 wakaba 1.126 next B;
4719 wakaba 1.52 } elsif ($token->{tag_name} eq 'button') {
4720     ## has a button element in scope
4721     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4722     my $node = $self->{open_elements}->[$_];
4723 wakaba 1.206 if ($node->[1] == BUTTON_EL) {
4724 wakaba 1.79 !!!cp ('t378');
4725 wakaba 1.113 !!!parse-error (type => 'in button:button', token => $token);
4726 wakaba 1.125 !!!back-token; # <button>
4727 wakaba 1.114 $token = {type => END_TAG_TOKEN, tag_name => 'button',
4728     line => $token->{line}, column => $token->{column}};
4729 wakaba 1.126 next B;
4730 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
4731 wakaba 1.79 !!!cp ('t379');
4732 wakaba 1.52 last INSCOPE;
4733     }
4734     } # INSCOPE
4735    
4736     $reconstruct_active_formatting_elements->($insert_to_current);
4737    
4738 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4739 wakaba 1.85
4740     ## TODO: associate with $self->{form_element} if defined
4741    
4742 wakaba 1.52 push @$active_formatting_elements, ['#marker', ''];
4743 wakaba 1.1
4744 wakaba 1.125 !!!nack ('t379.1');
4745 wakaba 1.52 !!!next-token;
4746 wakaba 1.126 next B;
4747 wakaba 1.103 } elsif ({
4748 wakaba 1.109 xmp => 1,
4749     iframe => 1,
4750     noembed => 1,
4751 wakaba 1.148 noframes => 1, ## NOTE: This is an "as if in head" code clone.
4752 wakaba 1.109 noscript => 0, ## TODO: 1 if scripting is enabled
4753 wakaba 1.103 }->{$token->{tag_name}}) {
4754 wakaba 1.109 if ($token->{tag_name} eq 'xmp') {
4755     !!!cp ('t381');
4756     $reconstruct_active_formatting_elements->($insert_to_current);
4757     } else {
4758     !!!cp ('t399');
4759     }
4760     ## NOTE: There is an "as if in body" code clone.
4761 wakaba 1.96 $parse_rcdata->(CDATA_CONTENT_MODEL);
4762 wakaba 1.126 next B;
4763 wakaba 1.52 } elsif ($token->{tag_name} eq 'isindex') {
4764 wakaba 1.113 !!!parse-error (type => 'isindex', token => $token);
4765 wakaba 1.52
4766     if (defined $self->{form_element}) {
4767 wakaba 1.79 !!!cp ('t389');
4768 wakaba 1.52 ## Ignore the token
4769 wakaba 1.125 !!!nack ('t389'); ## NOTE: Not acknowledged.
4770 wakaba 1.52 !!!next-token;
4771 wakaba 1.126 next B;
4772 wakaba 1.52 } else {
4773 wakaba 1.147 !!!ack ('t391.1');
4774    
4775 wakaba 1.52 my $at = $token->{attributes};
4776     my $form_attrs;
4777     $form_attrs->{action} = $at->{action} if $at->{action};
4778     my $prompt_attr = $at->{prompt};
4779     $at->{name} = {name => 'name', value => 'isindex'};
4780     delete $at->{action};
4781     delete $at->{prompt};
4782     my @tokens = (
4783 wakaba 1.55 {type => START_TAG_TOKEN, tag_name => 'form',
4784 wakaba 1.114 attributes => $form_attrs,
4785     line => $token->{line}, column => $token->{column}},
4786     {type => START_TAG_TOKEN, tag_name => 'hr',
4787     line => $token->{line}, column => $token->{column}},
4788     {type => START_TAG_TOKEN, tag_name => 'p',
4789     line => $token->{line}, column => $token->{column}},
4790     {type => START_TAG_TOKEN, tag_name => 'label',
4791     line => $token->{line}, column => $token->{column}},
4792 wakaba 1.52 );
4793     if ($prompt_attr) {
4794 wakaba 1.79 !!!cp ('t390');
4795 wakaba 1.114 push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
4796 wakaba 1.118 #line => $token->{line}, column => $token->{column},
4797     };
4798 wakaba 1.1 } else {
4799 wakaba 1.79 !!!cp ('t391');
4800 wakaba 1.55 push @tokens, {type => CHARACTER_TOKEN,
4801 wakaba 1.114 data => 'This is a searchable index. Insert your search keywords here: ',
4802 wakaba 1.118 #line => $token->{line}, column => $token->{column},
4803     }; # SHOULD
4804 wakaba 1.52 ## TODO: make this configurable
4805 wakaba 1.1 }
4806 wakaba 1.52 push @tokens,
4807 wakaba 1.114 {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at,
4808     line => $token->{line}, column => $token->{column}},
4809 wakaba 1.55 #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
4810 wakaba 1.114 {type => END_TAG_TOKEN, tag_name => 'label',
4811     line => $token->{line}, column => $token->{column}},
4812     {type => END_TAG_TOKEN, tag_name => 'p',
4813     line => $token->{line}, column => $token->{column}},
4814     {type => START_TAG_TOKEN, tag_name => 'hr',
4815     line => $token->{line}, column => $token->{column}},
4816     {type => END_TAG_TOKEN, tag_name => 'form',
4817     line => $token->{line}, column => $token->{column}};
4818 wakaba 1.52 !!!back-token (@tokens);
4819 wakaba 1.125 !!!next-token;
4820 wakaba 1.126 next B;
4821 wakaba 1.52 }
4822     } elsif ($token->{tag_name} eq 'textarea') {
4823 wakaba 1.205 ## Step 1
4824     !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4825 wakaba 1.52
4826 wakaba 1.205 ## Step 2
4827 wakaba 1.52 ## TODO: $self->{form_element} if defined
4828 wakaba 1.205
4829     ## Step 3
4830     $self->{ignore_newline} = 1;
4831    
4832     ## Step 4
4833     ## ISSUE: This step is wrong. (r2302 enbugged)
4834    
4835     ## Step 5
4836 wakaba 1.52 $self->{content_model} = RCDATA_CONTENT_MODEL;
4837     delete $self->{escape}; # MUST
4838 wakaba 1.205
4839     ## Step 6-7
4840     $self->{insertion_mode} |= IN_CDATA_RCDATA_IM;
4841    
4842 wakaba 1.125 !!!nack ('t392.1');
4843 wakaba 1.52 !!!next-token;
4844 wakaba 1.126 next B;
4845 wakaba 1.201 } elsif ($token->{tag_name} eq 'optgroup' or
4846     $token->{tag_name} eq 'option') {
4847     ## has an |option| element in scope
4848     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4849     my $node = $self->{open_elements}->[$_];
4850 wakaba 1.206 if ($node->[1] == OPTION_EL) {
4851 wakaba 1.201 !!!cp ('t397.1');
4852     ## NOTE: As if </option>
4853     !!!back-token; # <option> or <optgroup>
4854     $token = {type => END_TAG_TOKEN, tag_name => 'option',
4855     line => $token->{line}, column => $token->{column}};
4856     next B;
4857     } elsif ($node->[1] & SCOPING_EL) {
4858     !!!cp ('t397.2');
4859     last INSCOPE;
4860     }
4861     } # INSCOPE
4862    
4863     $reconstruct_active_formatting_elements->($insert_to_current);
4864    
4865     !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4866    
4867     !!!nack ('t397.3');
4868     !!!next-token;
4869     redo B;
4870 wakaba 1.151 } elsif ($token->{tag_name} eq 'rt' or
4871     $token->{tag_name} eq 'rp') {
4872     ## has a |ruby| element in scope
4873     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4874     my $node = $self->{open_elements}->[$_];
4875 wakaba 1.206 if ($node->[1] == RUBY_EL) {
4876 wakaba 1.151 !!!cp ('t398.1');
4877     ## generate implied end tags
4878     while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
4879     !!!cp ('t398.2');
4880     pop @{$self->{open_elements}};
4881     }
4882 wakaba 1.206 unless ($self->{open_elements}->[-1]->[1] == RUBY_EL) {
4883 wakaba 1.151 !!!cp ('t398.3');
4884     !!!parse-error (type => 'not closed',
4885 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
4886 wakaba 1.151 ->manakai_local_name,
4887     token => $token);
4888     pop @{$self->{open_elements}}
4889 wakaba 1.206 while not $self->{open_elements}->[-1]->[1] == RUBY_EL;
4890 wakaba 1.151 }
4891     last INSCOPE;
4892     } elsif ($node->[1] & SCOPING_EL) {
4893     !!!cp ('t398.4');
4894     last INSCOPE;
4895     }
4896     } # INSCOPE
4897    
4898     !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4899    
4900     !!!nack ('t398.5');
4901     !!!next-token;
4902     redo B;
4903 wakaba 1.126 } elsif ($token->{tag_name} eq 'math' or
4904     $token->{tag_name} eq 'svg') {
4905     $reconstruct_active_formatting_elements->($insert_to_current);
4906 wakaba 1.131
4907 wakaba 1.155 ## "Adjust MathML attributes" ('math' only) - done in insert-element-f
4908    
4909 wakaba 1.131 ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
4910    
4911     ## "adjust foreign attributes" - done in insert-element-f
4912 wakaba 1.126
4913 wakaba 1.131 !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
4914 wakaba 1.126
4915     if ($self->{self_closing}) {
4916     pop @{$self->{open_elements}};
4917 wakaba 1.201 !!!ack ('t398.6');
4918 wakaba 1.126 } else {
4919 wakaba 1.201 !!!cp ('t398.7');
4920 wakaba 1.126 $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
4921     ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
4922     ## mode, "in body" (not "in foreign content") secondary insertion
4923     ## mode, maybe.
4924     }
4925    
4926     !!!next-token;
4927     next B;
4928 wakaba 1.52 } elsif ({
4929     caption => 1, col => 1, colgroup => 1, frame => 1,
4930 wakaba 1.201 frameset => 1, head => 1,
4931 wakaba 1.52 tbody => 1, td => 1, tfoot => 1, th => 1,
4932     thead => 1, tr => 1,
4933     }->{$token->{tag_name}}) {
4934 wakaba 1.79 !!!cp ('t401');
4935 wakaba 1.153 !!!parse-error (type => 'in body',
4936     text => $token->{tag_name}, token => $token);
4937 wakaba 1.52 ## Ignore the token
4938 wakaba 1.125 !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
4939 wakaba 1.52 !!!next-token;
4940 wakaba 1.126 next B;
4941 wakaba 1.198 } elsif ($token->{tag_name} eq 'param' or
4942     $token->{tag_name} eq 'source') {
4943     !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4944     pop @{$self->{open_elements}};
4945    
4946     !!!ack ('t398.5');
4947     !!!next-token;
4948     redo B;
4949 wakaba 1.52 } else {
4950 wakaba 1.110 if ($token->{tag_name} eq 'image') {
4951     !!!cp ('t384');
4952 wakaba 1.113 !!!parse-error (type => 'image', token => $token);
4953 wakaba 1.110 $token->{tag_name} = 'img';
4954     } else {
4955     !!!cp ('t385');
4956     }
4957    
4958     ## NOTE: There is an "as if <br>" code clone.
4959 wakaba 1.52 $reconstruct_active_formatting_elements->($insert_to_current);
4960    
4961 wakaba 1.116 !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4962 wakaba 1.109
4963 wakaba 1.110 if ({
4964     applet => 1, marquee => 1, object => 1,
4965     }->{$token->{tag_name}}) {
4966     !!!cp ('t380');
4967     push @$active_formatting_elements, ['#marker', ''];
4968 wakaba 1.125 !!!nack ('t380.1');
4969 wakaba 1.110 } elsif ({
4970     b => 1, big => 1, em => 1, font => 1, i => 1,
4971 wakaba 1.193 s => 1, small => 1, strike => 1,
4972 wakaba 1.110 strong => 1, tt => 1, u => 1,
4973     }->{$token->{tag_name}}) {
4974     !!!cp ('t375');
4975     push @$active_formatting_elements, $self->{open_elements}->[-1];
4976 wakaba 1.125 !!!nack ('t375.1');
4977 wakaba 1.110 } elsif ($token->{tag_name} eq 'input') {
4978     !!!cp ('t388');
4979     ## TODO: associate with $self->{form_element} if defined
4980     pop @{$self->{open_elements}};
4981 wakaba 1.125 !!!ack ('t388.2');
4982 wakaba 1.110 } elsif ({
4983     area => 1, basefont => 1, bgsound => 1, br => 1,
4984 wakaba 1.198 embed => 1, img => 1, spacer => 1, wbr => 1,
4985 wakaba 1.110 }->{$token->{tag_name}}) {
4986     !!!cp ('t388.1');
4987     pop @{$self->{open_elements}};
4988 wakaba 1.125 !!!ack ('t388.3');
4989 wakaba 1.110 } elsif ($token->{tag_name} eq 'select') {
4990 wakaba 1.109 ## TODO: associate with $self->{form_element} if defined
4991    
4992     if ($self->{insertion_mode} & TABLE_IMS or
4993     $self->{insertion_mode} & BODY_TABLE_IMS or
4994     $self->{insertion_mode} == IN_COLUMN_GROUP_IM) {
4995     !!!cp ('t400.1');
4996     $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
4997     } else {
4998     !!!cp ('t400.2');
4999     $self->{insertion_mode} = IN_SELECT_IM;
5000     }
5001 wakaba 1.125 !!!nack ('t400.3');
5002 wakaba 1.110 } else {
5003 wakaba 1.125 !!!nack ('t402');
5004 wakaba 1.109 }
5005 wakaba 1.51
5006 wakaba 1.52 !!!next-token;
5007 wakaba 1.126 next B;
5008 wakaba 1.52 }
5009 wakaba 1.55 } elsif ($token->{type} == END_TAG_TOKEN) {
5010 wakaba 1.52 if ($token->{tag_name} eq 'body') {
5011 wakaba 1.107 ## has a |body| element in scope
5012     my $i;
5013 wakaba 1.111 INSCOPE: {
5014     for (reverse @{$self->{open_elements}}) {
5015 wakaba 1.206 if ($_->[1] == BODY_EL) {
5016 wakaba 1.111 !!!cp ('t405');
5017     $i = $_;
5018     last INSCOPE;
5019 wakaba 1.123 } elsif ($_->[1] & SCOPING_EL) {
5020 wakaba 1.111 !!!cp ('t405.1');
5021     last;
5022     }
5023 wakaba 1.52 }
5024 wakaba 1.111
5025 wakaba 1.200 ## NOTE: |<marquee></body>|, |<svg><foreignobject></body>|
5026    
5027     !!!parse-error (type => 'unmatched end tag',
5028 wakaba 1.153 text => $token->{tag_name}, token => $token);
5029 wakaba 1.107 ## NOTE: Ignore the token.
5030 wakaba 1.52 !!!next-token;
5031 wakaba 1.126 next B;
5032 wakaba 1.111 } # INSCOPE
5033 wakaba 1.107
5034     for (@{$self->{open_elements}}) {
5035 wakaba 1.123 unless ($_->[1] & ALL_END_TAG_OPTIONAL_EL) {
5036 wakaba 1.107 !!!cp ('t403');
5037 wakaba 1.122 !!!parse-error (type => 'not closed',
5038 wakaba 1.153 text => $_->[0]->manakai_local_name,
5039 wakaba 1.122 token => $token);
5040 wakaba 1.107 last;
5041     } else {
5042     !!!cp ('t404');
5043     }
5044     }
5045    
5046     $self->{insertion_mode} = AFTER_BODY_IM;
5047     !!!next-token;
5048 wakaba 1.126 next B;
5049 wakaba 1.52 } elsif ($token->{tag_name} eq 'html') {
5050 wakaba 1.122 ## TODO: Update this code. It seems that the code below is not
5051     ## up-to-date, though it has same effect as speced.
5052 wakaba 1.123 if (@{$self->{open_elements}} > 1 and
5053 wakaba 1.206 $self->{open_elements}->[1]->[1] == BODY_EL) {
5054     unless ($self->{open_elements}->[-1]->[1] == BODY_EL) {
5055 wakaba 1.79 !!!cp ('t406');
5056 wakaba 1.122 !!!parse-error (type => 'not closed',
5057 wakaba 1.153 text => $self->{open_elements}->[1]->[0]
5058 wakaba 1.122 ->manakai_local_name,
5059     token => $token);
5060 wakaba 1.79 } else {
5061     !!!cp ('t407');
5062 wakaba 1.1 }
5063 wakaba 1.54 $self->{insertion_mode} = AFTER_BODY_IM;
5064 wakaba 1.52 ## reprocess
5065 wakaba 1.126 next B;
5066 wakaba 1.51 } else {
5067 wakaba 1.79 !!!cp ('t408');
5068 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5069     text => $token->{tag_name}, token => $token);
5070 wakaba 1.52 ## Ignore the token
5071     !!!next-token;
5072 wakaba 1.126 next B;
5073 wakaba 1.51 }
5074 wakaba 1.52 } elsif ({
5075 wakaba 1.195 ## NOTE: End tags for non-phrasing flow content elements
5076    
5077     ## NOTE: The normal ones
5078     address => 1, article => 1, aside => 1, blockquote => 1,
5079     center => 1, datagrid => 1, details => 1, dialog => 1,
5080     dir => 1, div => 1, dl => 1, fieldset => 1, figure => 1,
5081     footer => 1, header => 1, listing => 1, menu => 1, nav => 1,
5082     ol => 1, pre => 1, section => 1, ul => 1,
5083    
5084     ## NOTE: As normal, but ... optional tags
5085 wakaba 1.52 dd => 1, dt => 1, li => 1,
5086 wakaba 1.195
5087 wakaba 1.103 applet => 1, button => 1, marquee => 1, object => 1,
5088 wakaba 1.52 }->{$token->{tag_name}}) {
5089 wakaba 1.197 ## NOTE: Code for <li> start tags includes "as if </li>" code.
5090     ## Code for <dt> or <dd> start tags includes "as if </dt> or
5091     ## </dd>" code.
5092    
5093 wakaba 1.52 ## has an element in scope
5094     my $i;
5095     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5096     my $node = $self->{open_elements}->[$_];
5097 wakaba 1.123 if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5098 wakaba 1.79 !!!cp ('t410');
5099 wakaba 1.52 $i = $_;
5100 wakaba 1.87 last INSCOPE;
5101 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
5102 wakaba 1.79 !!!cp ('t411');
5103 wakaba 1.52 last INSCOPE;
5104 wakaba 1.51 }
5105 wakaba 1.52 } # INSCOPE
5106 wakaba 1.89
5107     unless (defined $i) { # has an element in scope
5108     !!!cp ('t413');
5109 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5110     text => $token->{tag_name}, token => $token);
5111 wakaba 1.157 ## NOTE: Ignore the token.
5112 wakaba 1.89 } else {
5113     ## Step 1. generate implied end tags
5114     while ({
5115 wakaba 1.151 ## END_TAG_OPTIONAL_EL
5116 wakaba 1.89 dd => ($token->{tag_name} ne 'dd'),
5117     dt => ($token->{tag_name} ne 'dt'),
5118     li => ($token->{tag_name} ne 'li'),
5119 wakaba 1.194 option => 1,
5120     optgroup => 1,
5121 wakaba 1.89 p => 1,
5122 wakaba 1.151 rt => 1,
5123     rp => 1,
5124 wakaba 1.123 }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
5125 wakaba 1.89 !!!cp ('t409');
5126     pop @{$self->{open_elements}};
5127     }
5128    
5129     ## Step 2.
5130 wakaba 1.123 if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5131     ne $token->{tag_name}) {
5132 wakaba 1.79 !!!cp ('t412');
5133 wakaba 1.122 !!!parse-error (type => 'not closed',
5134 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
5135 wakaba 1.122 ->manakai_local_name,
5136     token => $token);
5137 wakaba 1.51 } else {
5138 wakaba 1.89 !!!cp ('t414');
5139 wakaba 1.51 }
5140 wakaba 1.89
5141     ## Step 3.
5142 wakaba 1.52 splice @{$self->{open_elements}}, $i;
5143 wakaba 1.89
5144     ## Step 4.
5145     $clear_up_to_marker->()
5146     if {
5147 wakaba 1.103 applet => 1, button => 1, marquee => 1, object => 1,
5148 wakaba 1.89 }->{$token->{tag_name}};
5149 wakaba 1.51 }
5150 wakaba 1.52 !!!next-token;
5151 wakaba 1.126 next B;
5152 wakaba 1.52 } elsif ($token->{tag_name} eq 'form') {
5153 wakaba 1.195 ## NOTE: As normal, but interacts with the form element pointer
5154    
5155 wakaba 1.92 undef $self->{form_element};
5156    
5157 wakaba 1.52 ## has an element in scope
5158 wakaba 1.92 my $i;
5159 wakaba 1.52 INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5160     my $node = $self->{open_elements}->[$_];
5161 wakaba 1.206 if ($node->[1] == FORM_EL) {
5162 wakaba 1.79 !!!cp ('t418');
5163 wakaba 1.92 $i = $_;
5164 wakaba 1.52 last INSCOPE;
5165 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
5166 wakaba 1.79 !!!cp ('t419');
5167 wakaba 1.52 last INSCOPE;
5168     }
5169     } # INSCOPE
5170 wakaba 1.92
5171     unless (defined $i) { # has an element in scope
5172 wakaba 1.79 !!!cp ('t421');
5173 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5174     text => $token->{tag_name}, token => $token);
5175 wakaba 1.157 ## NOTE: Ignore the token.
5176 wakaba 1.92 } else {
5177     ## Step 1. generate implied end tags
5178 wakaba 1.123 while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5179 wakaba 1.92 !!!cp ('t417');
5180     pop @{$self->{open_elements}};
5181     }
5182    
5183     ## Step 2.
5184 wakaba 1.123 if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5185     ne $token->{tag_name}) {
5186 wakaba 1.92 !!!cp ('t417.1');
5187 wakaba 1.122 !!!parse-error (type => 'not closed',
5188 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
5189 wakaba 1.122 ->manakai_local_name,
5190     token => $token);
5191 wakaba 1.92 } else {
5192     !!!cp ('t420');
5193     }
5194    
5195     ## Step 3.
5196     splice @{$self->{open_elements}}, $i;
5197 wakaba 1.52 }
5198    
5199     !!!next-token;
5200 wakaba 1.126 next B;
5201 wakaba 1.52 } elsif ({
5202 wakaba 1.195 ## NOTE: As normal, except acts as a closer for any ...
5203 wakaba 1.52 h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
5204     }->{$token->{tag_name}}) {
5205     ## has an element in scope
5206     my $i;
5207     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5208     my $node = $self->{open_elements}->[$_];
5209 wakaba 1.206 if ($node->[1] == HEADING_EL) {
5210 wakaba 1.79 !!!cp ('t423');
5211 wakaba 1.52 $i = $_;
5212     last INSCOPE;
5213 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
5214 wakaba 1.79 !!!cp ('t424');
5215 wakaba 1.52 last INSCOPE;
5216 wakaba 1.51 }
5217 wakaba 1.52 } # INSCOPE
5218 wakaba 1.93
5219     unless (defined $i) { # has an element in scope
5220     !!!cp ('t425.1');
5221 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5222     text => $token->{tag_name}, token => $token);
5223 wakaba 1.157 ## NOTE: Ignore the token.
5224 wakaba 1.79 } else {
5225 wakaba 1.93 ## Step 1. generate implied end tags
5226 wakaba 1.123 while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5227 wakaba 1.93 !!!cp ('t422');
5228     pop @{$self->{open_elements}};
5229     }
5230    
5231     ## Step 2.
5232 wakaba 1.123 if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5233     ne $token->{tag_name}) {
5234 wakaba 1.93 !!!cp ('t425');
5235 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5236     text => $token->{tag_name}, token => $token);
5237 wakaba 1.93 } else {
5238     !!!cp ('t426');
5239     }
5240    
5241     ## Step 3.
5242     splice @{$self->{open_elements}}, $i;
5243 wakaba 1.36 }
5244 wakaba 1.52
5245     !!!next-token;
5246 wakaba 1.126 next B;
5247 wakaba 1.87 } elsif ($token->{tag_name} eq 'p') {
5248 wakaba 1.195 ## NOTE: As normal, except </p> implies <p> and ...
5249    
5250 wakaba 1.87 ## has an element in scope
5251 wakaba 1.197 my $non_optional;
5252 wakaba 1.87 my $i;
5253     INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5254     my $node = $self->{open_elements}->[$_];
5255 wakaba 1.206 if ($node->[1] == P_EL) {
5256 wakaba 1.87 !!!cp ('t410.1');
5257     $i = $_;
5258 wakaba 1.88 last INSCOPE;
5259 wakaba 1.123 } elsif ($node->[1] & SCOPING_EL) {
5260 wakaba 1.87 !!!cp ('t411.1');
5261     last INSCOPE;
5262 wakaba 1.197 } elsif ($node->[1] & END_TAG_OPTIONAL_EL) {
5263     ## NOTE: |END_TAG_OPTIONAL_EL| includes "p"
5264     !!!cp ('t411.2');
5265     #
5266     } else {
5267     !!!cp ('t411.3');
5268     $non_optional ||= $node;
5269     #
5270 wakaba 1.87 }
5271     } # INSCOPE
5272 wakaba 1.91
5273     if (defined $i) {
5274 wakaba 1.197 ## 1. Generate implied end tags
5275     #
5276    
5277     ## 2. If current node != "p", parse error
5278     if ($non_optional) {
5279 wakaba 1.87 !!!cp ('t412.1');
5280 wakaba 1.122 !!!parse-error (type => 'not closed',
5281 wakaba 1.197 text => $non_optional->[0]->manakai_local_name,
5282 wakaba 1.122 token => $token);
5283 wakaba 1.87 } else {
5284 wakaba 1.91 !!!cp ('t414.1');
5285 wakaba 1.87 }
5286 wakaba 1.91
5287 wakaba 1.197 ## 3. Pop
5288 wakaba 1.87 splice @{$self->{open_elements}}, $i;
5289     } else {
5290 wakaba 1.91 !!!cp ('t413.1');
5291 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5292     text => $token->{tag_name}, token => $token);
5293 wakaba 1.91
5294 wakaba 1.87 !!!cp ('t415.1');
5295     ## As if <p>, then reprocess the current token
5296     my $el;
5297 wakaba 1.126 !!!create-element ($el, $HTML_NS, 'p',, $token);
5298 wakaba 1.87 $insert->($el);
5299 wakaba 1.91 ## NOTE: Not inserted into |$self->{open_elements}|.
5300 wakaba 1.87 }
5301 wakaba 1.91
5302 wakaba 1.87 !!!next-token;
5303 wakaba 1.126 next B;
5304 wakaba 1.52 } elsif ({
5305     a => 1,
5306     b => 1, big => 1, em => 1, font => 1, i => 1,
5307 wakaba 1.193 nobr => 1, s => 1, small => 1, strike => 1,
5308 wakaba 1.52 strong => 1, tt => 1, u => 1,
5309     }->{$token->{tag_name}}) {
5310 wakaba 1.79 !!!cp ('t427');
5311 wakaba 1.113 $formatting_end_tag->($token);
5312 wakaba 1.126 next B;
5313 wakaba 1.52 } elsif ($token->{tag_name} eq 'br') {
5314 wakaba 1.79 !!!cp ('t428');
5315 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5316     text => 'br', token => $token);
5317 wakaba 1.52
5318     ## As if <br>
5319     $reconstruct_active_formatting_elements->($insert_to_current);
5320    
5321     my $el;
5322 wakaba 1.126 !!!create-element ($el, $HTML_NS, 'br',, $token);
5323 wakaba 1.52 $insert->($el);
5324    
5325     ## Ignore the token.
5326     !!!next-token;
5327 wakaba 1.126 next B;
5328 wakaba 1.52 } else {
5329 wakaba 1.195 if ($token->{tag_name} eq 'sarcasm') {
5330     sleep 0.001; # take a deep breath
5331     }
5332    
5333 wakaba 1.52 ## Step 1
5334     my $node_i = -1;
5335     my $node = $self->{open_elements}->[$node_i];
5336 wakaba 1.51
5337 wakaba 1.52 ## Step 2
5338     S2: {
5339 wakaba 1.200 my $node_tag_name = $node->[0]->manakai_local_name;
5340     $node_tag_name =~ tr/A-Z/a-z/; # for SVG camelCase tag names
5341     if ($node_tag_name eq $token->{tag_name}) {
5342 wakaba 1.52 ## Step 1
5343     ## generate implied end tags
5344 wakaba 1.123 while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5345 wakaba 1.79 !!!cp ('t430');
5346 wakaba 1.151 ## NOTE: |<ruby><rt></ruby>|.
5347     ## ISSUE: <ruby><rt></rt> will also take this code path,
5348     ## which seems wrong.
5349 wakaba 1.86 pop @{$self->{open_elements}};
5350 wakaba 1.151 $node_i++;
5351 wakaba 1.52 }
5352    
5353     ## Step 2
5354 wakaba 1.200 my $current_tag_name
5355     = $self->{open_elements}->[-1]->[0]->manakai_local_name;
5356     $current_tag_name =~ tr/A-Z/a-z/;
5357     if ($current_tag_name ne $token->{tag_name}) {
5358 wakaba 1.79 !!!cp ('t431');
5359 wakaba 1.58 ## NOTE: <x><y></x>
5360 wakaba 1.122 !!!parse-error (type => 'not closed',
5361 wakaba 1.153 text => $self->{open_elements}->[-1]->[0]
5362 wakaba 1.122 ->manakai_local_name,
5363     token => $token);
5364 wakaba 1.79 } else {
5365     !!!cp ('t432');
5366 wakaba 1.52 }
5367    
5368     ## Step 3
5369 wakaba 1.151 splice @{$self->{open_elements}}, $node_i if $node_i < 0;
5370 wakaba 1.51
5371 wakaba 1.1 !!!next-token;
5372 wakaba 1.52 last S2;
5373 wakaba 1.1 } else {
5374 wakaba 1.52 ## Step 3
5375 wakaba 1.123 if (not ($node->[1] & FORMATTING_EL) and
5376 wakaba 1.52 #not $phrasing_category->{$node->[1]} and
5377 wakaba 1.123 ($node->[1] & SPECIAL_EL or
5378     $node->[1] & SCOPING_EL)) {
5379 wakaba 1.79 !!!cp ('t433');
5380 wakaba 1.153 !!!parse-error (type => 'unmatched end tag',
5381     text => $token->{tag_name}, token => $token);
5382 wakaba 1.52 ## Ignore the token
5383     !!!next-token;
5384     last S2;
5385 wakaba 1.193
5386     ## NOTE: |<span><dd></span>a|: In Safari 3.1.2 and Opera
5387     ## 9.27, "a" is a child of <dd> (conforming). In
5388     ## Firefox 3.0.2, "a" is a child of <body>. In WinIE 7,
5389     ## "a" is a child of both <body> and <dd>.
5390 wakaba 1.52 }
5391 wakaba 1.193
5392 wakaba 1.79 !!!cp ('t434');
5393 wakaba 1.1 }
5394 wakaba 1.52
5395     ## Step 4
5396     $node_i--;
5397     $node = $self->{open_elements}->[$node_i];
5398    
5399     ## Step 5;
5400     redo S2;
5401     } # S2
5402 wakaba 1.126 next B;
5403 wakaba 1.1 }
5404     }
5405 wakaba 1.126 next B;
5406     } continue { # B
5407     if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
5408     ## NOTE: The code below is executed in cases where it does not have
5409     ## to be, but it it is harmless even in those cases.
5410     ## has an element in scope
5411     INSCOPE: {
5412     for (reverse 0..$#{$self->{open_elements}}) {
5413     my $node = $self->{open_elements}->[$_];
5414     if ($node->[1] & FOREIGN_EL) {
5415     last INSCOPE;
5416     } elsif ($node->[1] & SCOPING_EL) {
5417     last;
5418     }
5419     }
5420    
5421     ## NOTE: No foreign element in scope.
5422     $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
5423     } # INSCOPE
5424     }
5425 wakaba 1.1 } # B
5426    
5427     ## Stop parsing # MUST
5428    
5429     ## TODO: script stuffs
5430 wakaba 1.3 } # _tree_construct_main
5431    
5432 wakaba 1.177 sub set_inner_html ($$$$;$) {
5433 wakaba 1.3 my $class = shift;
5434     my $node = shift;
5435 wakaba 1.177 #my $s = \$_[0];
5436 wakaba 1.3 my $onerror = $_[1];
5437 wakaba 1.162 my $get_wrapper = $_[2] || sub ($) { return $_[0] };
5438 wakaba 1.3
5439 wakaba 1.63 ## ISSUE: Should {confident} be true?
5440    
5441 wakaba 1.3 my $nt = $node->node_type;
5442     if ($nt == 9) {
5443     # MUST
5444    
5445     ## Step 1 # MUST
5446     ## TODO: If the document has an active parser, ...
5447     ## ISSUE: There is an issue in the spec.
5448    
5449     ## Step 2 # MUST
5450     my @cn = @{$node->child_nodes};
5451     for (@cn) {
5452     $node->remove_child ($_);
5453     }
5454    
5455     ## Step 3, 4, 5 # MUST
5456 wakaba 1.177 $class->parse_char_string ($_[0] => $node, $onerror, $get_wrapper);
5457 wakaba 1.3 } elsif ($nt == 1) {
5458     ## TODO: If non-html element
5459    
5460     ## NOTE: Most of this code is copied from |parse_string|
5461    
5462 wakaba 1.162 ## TODO: Support for $get_wrapper
5463    
5464 wakaba 1.3 ## Step 1 # MUST
5465 wakaba 1.14 my $this_doc = $node->owner_document;
5466     my $doc = $this_doc->implementation->create_document;
5467 wakaba 1.18 $doc->manakai_is_html (1);
5468 wakaba 1.3 my $p = $class->new;
5469     $p->{document} = $doc;
5470    
5471 wakaba 1.84 ## Step 8 # MUST
5472 wakaba 1.3 my $i = 0;
5473 wakaba 1.121 $p->{line_prev} = $p->{line} = 1;
5474     $p->{column_prev} = $p->{column} = 0;
5475 wakaba 1.177 require Whatpm::Charset::DecodeHandle;
5476     my $input = Whatpm::Charset::DecodeHandle::CharString->new (\($_[0]));
5477     $input = $get_wrapper->($input);
5478 wakaba 1.183 $p->{set_nc} = sub {
5479 wakaba 1.3 my $self = shift;
5480 wakaba 1.14
5481 wakaba 1.178 my $char = '';
5482 wakaba 1.183 if (defined $self->{next_nc}) {
5483     $char = $self->{next_nc};
5484     delete $self->{next_nc};
5485     $self->{nc} = ord $char;
5486 wakaba 1.177 } else {
5487 wakaba 1.180 $self->{char_buffer} = '';
5488     $self->{char_buffer_pos} = 0;
5489    
5490     my $count = $input->manakai_read_until
5491 wakaba 1.182 ($self->{char_buffer}, qr/[^\x00\x0A\x0D]/,
5492     $self->{char_buffer_pos});
5493 wakaba 1.180 if ($count) {
5494     $self->{line_prev} = $self->{line};
5495     $self->{column_prev} = $self->{column};
5496     $self->{column}++;
5497 wakaba 1.183 $self->{nc}
5498 wakaba 1.180 = ord substr ($self->{char_buffer},
5499     $self->{char_buffer_pos}++, 1);
5500     return;
5501     }
5502    
5503 wakaba 1.178 if ($input->read ($char, 1)) {
5504 wakaba 1.183 $self->{nc} = ord $char;
5505 wakaba 1.178 } else {
5506 wakaba 1.183 $self->{nc} = -1;
5507 wakaba 1.178 return;
5508     }
5509 wakaba 1.177 }
5510 wakaba 1.121
5511     ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
5512     $p->{column}++;
5513 wakaba 1.4
5514 wakaba 1.183 if ($self->{nc} == 0x000A) { # LF
5515 wakaba 1.121 $p->{line}++;
5516     $p->{column} = 0;
5517 wakaba 1.79 !!!cp ('i1');
5518 wakaba 1.183 } elsif ($self->{nc} == 0x000D) { # CR
5519 wakaba 1.177 ## TODO: support for abort/streaming
5520 wakaba 1.178 my $next = '';
5521     if ($input->read ($next, 1) and $next ne "\x0A") {
5522 wakaba 1.183 $self->{next_nc} = $next;
5523 wakaba 1.177 }
5524 wakaba 1.183 $self->{nc} = 0x000A; # LF # MUST
5525 wakaba 1.121 $p->{line}++;
5526     $p->{column} = 0;
5527 wakaba 1.79 !!!cp ('i2');
5528 wakaba 1.183 } elsif ($self->{nc} == 0x0000) { # NULL
5529 wakaba 1.79 !!!cp ('i4');
5530 wakaba 1.14 !!!parse-error (type => 'NULL');
5531 wakaba 1.183 $self->{nc} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
5532 wakaba 1.3 }
5533     };
5534 wakaba 1.171
5535 wakaba 1.172 $p->{read_until} = sub {
5536 wakaba 1.177 #my ($scalar, $specials_range, $offset) = @_;
5537 wakaba 1.183 return 0 if defined $p->{next_nc};
5538 wakaba 1.180
5539 wakaba 1.182 my $pattern = qr/[^$_[1]\x00\x0A\x0D]/;
5540 wakaba 1.180 my $offset = $_[2] || 0;
5541    
5542     if ($p->{char_buffer_pos} < length $p->{char_buffer}) {
5543     pos ($p->{char_buffer}) = $p->{char_buffer_pos};
5544     if ($p->{char_buffer} =~ /\G(?>$pattern)+/) {
5545     substr ($_[0], $offset)
5546     = substr ($p->{char_buffer}, $-[0], $+[0] - $-[0]);
5547     my $count = $+[0] - $-[0];
5548     if ($count) {
5549     $p->{column} += $count;
5550     $p->{char_buffer_pos} += $count;
5551     $p->{line_prev} = $p->{line};
5552     $p->{column_prev} = $p->{column} - 1;
5553 wakaba 1.183 $p->{nc} = -1;
5554 wakaba 1.180 }
5555     return $count;
5556     } else {
5557     return 0;
5558     }
5559     } else {
5560     my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
5561     if ($count) {
5562     $p->{column} += $count;
5563     $p->{column_prev} += $count;
5564 wakaba 1.183 $p->{nc} = -1;
5565 wakaba 1.180 }
5566     return $count;
5567 wakaba 1.177 }
5568     }; # $p->{read_until}
5569 wakaba 1.171
5570 wakaba 1.3 my $ponerror = $onerror || sub {
5571     my (%opt) = @_;
5572 wakaba 1.121 my $line = $opt{line};
5573     my $column = $opt{column};
5574     if (defined $opt{token} and defined $opt{token}->{line}) {
5575     $line = $opt{token}->{line};
5576     $column = $opt{token}->{column};
5577     }
5578     warn "Parse error ($opt{type}) at line $line column $column\n";
5579 wakaba 1.3 };
5580     $p->{parse_error} = sub {
5581 wakaba 1.121 $ponerror->(line => $p->{line}, column => $p->{column}, @_);
5582 wakaba 1.3 };
5583    
5584 wakaba 1.178 my $char_onerror = sub {
5585     my (undef, $type, %opt) = @_;
5586     $ponerror->(layer => 'encode',
5587     line => $p->{line}, column => $p->{column} + 1,
5588     %opt, type => $type);
5589     }; # $char_onerror
5590     $input->onerror ($char_onerror);
5591    
5592 wakaba 1.3 $p->_initialize_tokenizer;
5593     $p->_initialize_tree_constructor;
5594    
5595     ## Step 2
5596 wakaba 1.71 my $node_ln = $node->manakai_local_name;
5597 wakaba 1.40 $p->{content_model} = {
5598     title => RCDATA_CONTENT_MODEL,
5599     textarea => RCDATA_CONTENT_MODEL,
5600     style => CDATA_CONTENT_MODEL,
5601     script => CDATA_CONTENT_MODEL,
5602     xmp => CDATA_CONTENT_MODEL,
5603     iframe => CDATA_CONTENT_MODEL,
5604     noembed => CDATA_CONTENT_MODEL,
5605     noframes => CDATA_CONTENT_MODEL,
5606     noscript => CDATA_CONTENT_MODEL,
5607     plaintext => PLAINTEXT_CONTENT_MODEL,
5608     }->{$node_ln};
5609     $p->{content_model} = PCDATA_CONTENT_MODEL
5610     unless defined $p->{content_model};
5611     ## ISSUE: What is "the name of the element"? local name?
5612 wakaba 1.3
5613 wakaba 1.123 $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
5614     ## TODO: Foreign element OK?
5615 wakaba 1.3
5616 wakaba 1.84 ## Step 3
5617 wakaba 1.3 my $root = $doc->create_element_ns
5618     ('http://www.w3.org/1999/xhtml', [undef, 'html']);
5619    
5620 wakaba 1.84 ## Step 4 # MUST
5621 wakaba 1.3 $doc->append_child ($root);
5622    
5623 wakaba 1.84 ## Step 5 # MUST
5624 wakaba 1.123 push @{$p->{open_elements}}, [$root, $el_category->{html}];
5625 wakaba 1.3
5626     undef $p->{head_element};
5627 wakaba 1.202 undef $p->{head_element_inserted};
5628 wakaba 1.3
5629 wakaba 1.84 ## Step 6 # MUST
5630 wakaba 1.3 $p->_reset_insertion_mode;
5631    
5632 wakaba 1.84 ## Step 7 # MUST
5633 wakaba 1.3 my $anode = $node;
5634     AN: while (defined $anode) {
5635     if ($anode->node_type == 1) {
5636     my $nsuri = $anode->namespace_uri;
5637     if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
5638 wakaba 1.71 if ($anode->manakai_local_name eq 'form') {
5639 wakaba 1.79 !!!cp ('i5');
5640 wakaba 1.3 $p->{form_element} = $anode;
5641     last AN;
5642     }
5643     }
5644     }
5645     $anode = $anode->parent_node;
5646     } # AN
5647    
5648 wakaba 1.84 ## Step 9 # MUST
5649 wakaba 1.3 {
5650     my $self = $p;
5651     !!!next-token;
5652     }
5653     $p->_tree_construction_main;
5654    
5655 wakaba 1.84 ## Step 10 # MUST
5656 wakaba 1.3 my @cn = @{$node->child_nodes};
5657     for (@cn) {
5658     $node->remove_child ($_);
5659     }
5660     ## ISSUE: mutation events? read-only?
5661    
5662 wakaba 1.84 ## Step 11 # MUST
5663 wakaba 1.3 @cn = @{$root->child_nodes};
5664     for (@cn) {
5665 wakaba 1.14 $this_doc->adopt_node ($_);
5666 wakaba 1.3 $node->append_child ($_);
5667     }
5668 wakaba 1.14 ## ISSUE: mutation events?
5669 wakaba 1.3
5670     $p->_terminate_tree_constructor;
5671 wakaba 1.121
5672     delete $p->{parse_error}; # delete loop
5673 wakaba 1.3 } else {
5674     die "$0: |set_inner_html| is not defined for node of type $nt";
5675     }
5676     } # set_inner_html
5677    
5678     } # tree construction stage
5679 wakaba 1.1
5680 wakaba 1.63 package Whatpm::HTML::RestartParser;
5681     push our @ISA, 'Error';
5682    
5683 wakaba 1.1 1;
5684 wakaba 1.208 # $Date: 2008/10/13 08:27:44 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24