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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.13 by wakaba, Sat Jun 23 05:29:48 2007 UTC revision 1.242 by wakaba, Sun Sep 6 13:02:21 2009 UTC
# Line 1  Line 1 
1  package Whatpm::HTML;  package Whatpm::HTML;
2  use strict;  use strict;
3  our $VERSION=do{my @r=(q$Revision$=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};  our $VERSION=do{my @r=(q$Revision$=~/\d+/g);sprintf "%d."."%02d" x $#r,@r};
4    use Error qw(:try);
5    
6  ## This is an early version of an HTML parser.  use Whatpm::HTML::Tokenizer;
7    
8  my $permitted_slash_tag_name = {  ## NOTE: This module don't check all HTML5 parse errors; character
9    base => 1,  ## encoding related parse errors are expected to be handled by relevant
10    link => 1,  ## modules.
11    meta => 1,  ## Parse errors for control characters that are not allowed in HTML5
12    hr => 1,  ## documents, for surrogate code points, and for noncharacter code
13    br => 1,  ## points, as well as U+FFFD substitions for characters whose code points
14    img=> 1,  ## is higher than U+10FFFF may be detected by combining the parser with
15    embed => 1,  ## the checker implemented by Whatpm::Charset::UnicodeChecker (for its
16    param => 1,  ## usage example, see |t/HTML-tree.t| in the Whatpm package or the
17    area => 1,  ## WebHACC::Language::HTML module in the WebHACC package).
18    col => 1,  
19    input => 1,  ## ISSUE:
20    ## var doc = implementation.createDocument (null, null, null);
21    ## doc.write ('');
22    ## alert (doc.compatMode);
23    
24    require IO::Handle;
25    
26    ## Namespace URLs
27    
28    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    ## Element categories
36    
37    ## 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    #sub FOREIGN_EL () { 0b1_00000000000 } # see Whatpm::HTML::Tokenizer
45    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    
60    ## NOTE: Used in "generate implied end tags" algorithm.
61    ## 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    ## 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    sub DTDD_EL () {
80      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    }
98    
99    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    }
113    
114    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    }
125    sub TABLE_EL () {
126      SCOPING_EL |
127      TABLE_ROWS_EL |
128      TABLE_SCOPING_EL |
129      0b001
130    }
131    sub TABLE_CELL_EL () {
132      SCOPING_EL |
133      TABLE_ROW_SCOPING_EL |
134      ALL_END_TAG_OPTIONAL_EL |
135      0b001
136    }
137    
138    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    
149    sub MML_AXML_EL () { PHRASING_EL | FOREIGN_EL | 0b001 }
150    
151    my $el_category = {
152      a => A_EL,
153      address => ADDRESS_DIV_EL,
154      applet => MISC_SCOPING_EL,
155      area => MISC_SPECIAL_EL,
156      article => MISC_SPECIAL_EL,
157      aside => MISC_SPECIAL_EL,
158      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      command => MISC_SPECIAL_EL,
172      datagrid => MISC_SPECIAL_EL,
173      dd => DTDD_EL,
174      details => MISC_SPECIAL_EL,
175      dialog => MISC_SPECIAL_EL,
176      dir => MISC_SPECIAL_EL,
177      div => ADDRESS_DIV_EL,
178      dl => MISC_SPECIAL_EL,
179      dt => DTDD_EL,
180      em => FORMATTING_EL,
181      embed => MISC_SPECIAL_EL,
182      fieldset => MISC_SPECIAL_EL,
183      figure => MISC_SPECIAL_EL,
184      font => FORMATTING_EL,
185      footer => MISC_SPECIAL_EL,
186      form => FORM_EL,
187      frame => MISC_SPECIAL_EL,
188      frameset => FRAMESET_EL,
189      h1 => HEADING_EL,
190      h2 => HEADING_EL,
191      h3 => HEADING_EL,
192      h4 => HEADING_EL,
193      h5 => HEADING_EL,
194      h6 => HEADING_EL,
195      head => MISC_SPECIAL_EL,
196      header => MISC_SPECIAL_EL,
197      hgroup => MISC_SPECIAL_EL,
198      hr => MISC_SPECIAL_EL,
199      html => HTML_EL,
200      i => FORMATTING_EL,
201      iframe => MISC_SPECIAL_EL,
202      img => MISC_SPECIAL_EL,
203      #image => MISC_SPECIAL_EL, ## NOTE: Commented out in the spec.
204      input => MISC_SPECIAL_EL,
205      isindex => MISC_SPECIAL_EL,
206      ## XXX keygen? (Whether a void element is in Special or not does not
207      ## affect to the processing, however.)
208      li => LI_EL,
209      link => MISC_SPECIAL_EL,
210      listing => MISC_SPECIAL_EL,
211      marquee => MISC_SCOPING_EL,
212      menu => MISC_SPECIAL_EL,
213      meta => MISC_SPECIAL_EL,
214      nav => MISC_SPECIAL_EL,
215      nobr => NOBR_EL,
216      noembed => MISC_SPECIAL_EL,
217      noframes => MISC_SPECIAL_EL,
218      noscript => MISC_SPECIAL_EL,
219      object => MISC_SCOPING_EL,
220      ol => MISC_SPECIAL_EL,
221      optgroup => OPTGROUP_EL,
222      option => OPTION_EL,
223      p => P_EL,
224      param => MISC_SPECIAL_EL,
225      plaintext => MISC_SPECIAL_EL,
226      pre => MISC_SPECIAL_EL,
227      rp => RUBY_COMPONENT_EL,
228      rt => RUBY_COMPONENT_EL,
229      ruby => RUBY_EL,
230      s => FORMATTING_EL,
231      script => MISC_SPECIAL_EL,
232      select => SELECT_EL,
233      section => MISC_SPECIAL_EL,
234      small => FORMATTING_EL,
235      spacer => MISC_SPECIAL_EL,
236      strike => FORMATTING_EL,
237      strong => FORMATTING_EL,
238      style => MISC_SPECIAL_EL,
239      table => TABLE_EL,
240      tbody => TABLE_ROW_GROUP_EL,
241      td => TABLE_CELL_EL,
242      textarea => MISC_SPECIAL_EL,
243      tfoot => TABLE_ROW_GROUP_EL,
244      th => TABLE_CELL_EL,
245      thead => TABLE_ROW_GROUP_EL,
246      title => MISC_SPECIAL_EL,
247      tr => TABLE_ROW_EL,
248      tt => FORMATTING_EL,
249      u => FORMATTING_EL,
250      ul => MISC_SPECIAL_EL,
251      wbr => MISC_SPECIAL_EL,
252      xmp => MISC_SPECIAL_EL,
253  };  };
254    
255  my $entity_char = {  my $el_category_f = {
256    AElig => "\x{00C6}",    $MML_NS => {
257    Aacute => "\x{00C1}",      'annotation-xml' => MML_AXML_EL,
258    Acirc => "\x{00C2}",      mi => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
259    Agrave => "\x{00C0}",      mo => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
260    Alpha => "\x{0391}",      mn => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
261    Aring => "\x{00C5}",      ms => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
262    Atilde => "\x{00C3}",      mtext => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
263    Auml => "\x{00C4}",    },
264    Beta => "\x{0392}",    $SVG_NS => {
265    Ccedil => "\x{00C7}",      foreignObject => SCOPING_EL | FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
266    Chi => "\x{03A7}",      desc => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
267    Dagger => "\x{2021}",      title => FOREIGN_EL | FOREIGN_FLOW_CONTENT_EL,
268    Delta => "\x{0394}",    },
269    ETH => "\x{00D0}",    ## NOTE: In addition, FOREIGN_EL is set to non-HTML elements.
   Eacute => "\x{00C9}",  
   Ecirc => "\x{00CA}",  
   Egrave => "\x{00C8}",  
   Epsilon => "\x{0395}",  
   Eta => "\x{0397}",  
   Euml => "\x{00CB}",  
   Gamma => "\x{0393}",  
   Iacute => "\x{00CD}",  
   Icirc => "\x{00CE}",  
   Igrave => "\x{00CC}",  
   Iota => "\x{0399}",  
   Iuml => "\x{00CF}",  
   Kappa => "\x{039A}",  
   Lambda => "\x{039B}",  
   Mu => "\x{039C}",  
   Ntilde => "\x{00D1}",  
   Nu => "\x{039D}",  
   OElig => "\x{0152}",  
   Oacute => "\x{00D3}",  
   Ocirc => "\x{00D4}",  
   Ograve => "\x{00D2}",  
   Omega => "\x{03A9}",  
   Omicron => "\x{039F}",  
   Oslash => "\x{00D8}",  
   Otilde => "\x{00D5}",  
   Ouml => "\x{00D6}",  
   Phi => "\x{03A6}",  
   Pi => "\x{03A0}",  
   Prime => "\x{2033}",  
   Psi => "\x{03A8}",  
   Rho => "\x{03A1}",  
   Scaron => "\x{0160}",  
   Sigma => "\x{03A3}",  
   THORN => "\x{00DE}",  
   Tau => "\x{03A4}",  
   Theta => "\x{0398}",  
   Uacute => "\x{00DA}",  
   Ucirc => "\x{00DB}",  
   Ugrave => "\x{00D9}",  
   Upsilon => "\x{03A5}",  
   Uuml => "\x{00DC}",  
   Xi => "\x{039E}",  
   Yacute => "\x{00DD}",  
   Yuml => "\x{0178}",  
   Zeta => "\x{0396}",  
   aacute => "\x{00E1}",  
   acirc => "\x{00E2}",  
   acute => "\x{00B4}",  
   aelig => "\x{00E6}",  
   agrave => "\x{00E0}",  
   alefsym => "\x{2135}",  
   alpha => "\x{03B1}",  
   amp => "\x{0026}",  
   AMP => "\x{0026}",  
   and => "\x{2227}",  
   ang => "\x{2220}",  
   apos => "\x{0027}",  
   aring => "\x{00E5}",  
   asymp => "\x{2248}",  
   atilde => "\x{00E3}",  
   auml => "\x{00E4}",  
   bdquo => "\x{201E}",  
   beta => "\x{03B2}",  
   brvbar => "\x{00A6}",  
   bull => "\x{2022}",  
   cap => "\x{2229}",  
   ccedil => "\x{00E7}",  
   cedil => "\x{00B8}",  
   cent => "\x{00A2}",  
   chi => "\x{03C7}",  
   circ => "\x{02C6}",  
   clubs => "\x{2663}",  
   cong => "\x{2245}",  
   copy => "\x{00A9}",  
   COPY => "\x{00A9}",  
   crarr => "\x{21B5}",  
   cup => "\x{222A}",  
   curren => "\x{00A4}",  
   dArr => "\x{21D3}",  
   dagger => "\x{2020}",  
   darr => "\x{2193}",  
   deg => "\x{00B0}",  
   delta => "\x{03B4}",  
   diams => "\x{2666}",  
   divide => "\x{00F7}",  
   eacute => "\x{00E9}",  
   ecirc => "\x{00EA}",  
   egrave => "\x{00E8}",  
   empty => "\x{2205}",  
   emsp => "\x{2003}",  
   ensp => "\x{2002}",  
   epsilon => "\x{03B5}",  
   equiv => "\x{2261}",  
   eta => "\x{03B7}",  
   eth => "\x{00F0}",  
   euml => "\x{00EB}",  
   euro => "\x{20AC}",  
   exist => "\x{2203}",  
   fnof => "\x{0192}",  
   forall => "\x{2200}",  
   frac12 => "\x{00BD}",  
   frac14 => "\x{00BC}",  
   frac34 => "\x{00BE}",  
   frasl => "\x{2044}",  
   gamma => "\x{03B3}",  
   ge => "\x{2265}",  
   gt => "\x{003E}",  
   GT => "\x{003E}",  
   hArr => "\x{21D4}",  
   harr => "\x{2194}",  
   hearts => "\x{2665}",  
   hellip => "\x{2026}",  
   iacute => "\x{00ED}",  
   icirc => "\x{00EE}",  
   iexcl => "\x{00A1}",  
   igrave => "\x{00EC}",  
   image => "\x{2111}",  
   infin => "\x{221E}",  
   int => "\x{222B}",  
   iota => "\x{03B9}",  
   iquest => "\x{00BF}",  
   isin => "\x{2208}",  
   iuml => "\x{00EF}",  
   kappa => "\x{03BA}",  
   lArr => "\x{21D0}",  
   lambda => "\x{03BB}",  
   lang => "\x{2329}",  
   laquo => "\x{00AB}",  
   larr => "\x{2190}",  
   lceil => "\x{2308}",  
   ldquo => "\x{201C}",  
   le => "\x{2264}",  
   lfloor => "\x{230A}",  
   lowast => "\x{2217}",  
   loz => "\x{25CA}",  
   lrm => "\x{200E}",  
   lsaquo => "\x{2039}",  
   lsquo => "\x{2018}",  
   lt => "\x{003C}",  
   LT => "\x{003C}",  
   macr => "\x{00AF}",  
   mdash => "\x{2014}",  
   micro => "\x{00B5}",  
   middot => "\x{00B7}",  
   minus => "\x{2212}",  
   mu => "\x{03BC}",  
   nabla => "\x{2207}",  
   nbsp => "\x{00A0}",  
   ndash => "\x{2013}",  
   ne => "\x{2260}",  
   ni => "\x{220B}",  
   not => "\x{00AC}",  
   notin => "\x{2209}",  
   nsub => "\x{2284}",  
   ntilde => "\x{00F1}",  
   nu => "\x{03BD}",  
   oacute => "\x{00F3}",  
   ocirc => "\x{00F4}",  
   oelig => "\x{0153}",  
   ograve => "\x{00F2}",  
   oline => "\x{203E}",  
   omega => "\x{03C9}",  
   omicron => "\x{03BF}",  
   oplus => "\x{2295}",  
   or => "\x{2228}",  
   ordf => "\x{00AA}",  
   ordm => "\x{00BA}",  
   oslash => "\x{00F8}",  
   otilde => "\x{00F5}",  
   otimes => "\x{2297}",  
   ouml => "\x{00F6}",  
   para => "\x{00B6}",  
   part => "\x{2202}",  
   permil => "\x{2030}",  
   perp => "\x{22A5}",  
   phi => "\x{03C6}",  
   pi => "\x{03C0}",  
   piv => "\x{03D6}",  
   plusmn => "\x{00B1}",  
   pound => "\x{00A3}",  
   prime => "\x{2032}",  
   prod => "\x{220F}",  
   prop => "\x{221D}",  
   psi => "\x{03C8}",  
   quot => "\x{0022}",  
   QUOT => "\x{0022}",  
   rArr => "\x{21D2}",  
   radic => "\x{221A}",  
   rang => "\x{232A}",  
   raquo => "\x{00BB}",  
   rarr => "\x{2192}",  
   rceil => "\x{2309}",  
   rdquo => "\x{201D}",  
   real => "\x{211C}",  
   reg => "\x{00AE}",  
   REG => "\x{00AE}",  
   rfloor => "\x{230B}",  
   rho => "\x{03C1}",  
   rlm => "\x{200F}",  
   rsaquo => "\x{203A}",  
   rsquo => "\x{2019}",  
   sbquo => "\x{201A}",  
   scaron => "\x{0161}",  
   sdot => "\x{22C5}",  
   sect => "\x{00A7}",  
   shy => "\x{00AD}",  
   sigma => "\x{03C3}",  
   sigmaf => "\x{03C2}",  
   sim => "\x{223C}",  
   spades => "\x{2660}",  
   sub => "\x{2282}",  
   sube => "\x{2286}",  
   sum => "\x{2211}",  
   sup => "\x{2283}",  
   sup1 => "\x{00B9}",  
   sup2 => "\x{00B2}",  
   sup3 => "\x{00B3}",  
   supe => "\x{2287}",  
   szlig => "\x{00DF}",  
   tau => "\x{03C4}",  
   there4 => "\x{2234}",  
   theta => "\x{03B8}",  
   thetasym => "\x{03D1}",  
   thinsp => "\x{2009}",  
   thorn => "\x{00FE}",  
   tilde => "\x{02DC}",  
   times => "\x{00D7}",  
   trade => "\x{2122}",  
   uArr => "\x{21D1}",  
   uacute => "\x{00FA}",  
   uarr => "\x{2191}",  
   ucirc => "\x{00FB}",  
   ugrave => "\x{00F9}",  
   uml => "\x{00A8}",  
   upsih => "\x{03D2}",  
   upsilon => "\x{03C5}",  
   uuml => "\x{00FC}",  
   weierp => "\x{2118}",  
   xi => "\x{03BE}",  
   yacute => "\x{00FD}",  
   yen => "\x{00A5}",  
   yuml => "\x{00FF}",  
   zeta => "\x{03B6}",  
   zwj => "\x{200D}",  
   zwnj => "\x{200C}",  
 }; # $entity_char  
   
 my $c1_entity_char = {  
   0x80 => 0x20AC,  
   0x81 => 0xFFFD,  
   0x82 => 0x201A,  
   0x83 => 0x0192,  
   0x84 => 0x201E,  
   0x85 => 0x2026,  
   0x86 => 0x2020,  
   0x87 => 0x2021,  
   0x88 => 0x02C6,  
   0x89 => 0x2030,  
   0x8A => 0x0160,  
   0x8B => 0x2039,  
   0x8C => 0x0152,  
   0x8D => 0xFFFD,  
   0x8E => 0x017D,  
   0x8F => 0xFFFD,  
   0x90 => 0xFFFD,  
   0x91 => 0x2018,  
   0x92 => 0x2019,  
   0x93 => 0x201C,  
   0x94 => 0x201D,  
   0x95 => 0x2022,  
   0x96 => 0x2013,  
   0x97 => 0x2014,  
   0x98 => 0x02DC,  
   0x99 => 0x2122,  
   0x9A => 0x0161,  
   0x9B => 0x203A,  
   0x9C => 0x0153,  
   0x9D => 0xFFFD,  
   0x9E => 0x017E,  
   0x9F => 0x0178,  
 }; # $c1_entity_char  
   
 my $special_category = {  
   address => 1, area => 1, base => 1, basefont => 1, bgsound => 1,  
   blockquote => 1, body => 1, br => 1, center => 1, col => 1, colgroup => 1,  
   dd => 1, dir => 1, div => 1, dl => 1, dt => 1, embed => 1, fieldset => 1,  
   form => 1, frame => 1, frameset => 1, h1 => 1, h2 => 1, h3 => 1,  
   h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, iframe => 1, image => 1,  
   img => 1, input => 1, isindex => 1, li => 1, link => 1, listing => 1,  
   menu => 1, meta => 1, noembed => 1, noframes => 1, noscript => 1,  
   ol => 1, optgroup => 1, option => 1, p => 1, param => 1, plaintext => 1,  
   pre => 1, script => 1, select => 1, spacer => 1, style => 1, tbody => 1,  
   textarea => 1, tfoot => 1, thead => 1, title => 1, tr => 1, ul => 1, wbr => 1,  
270  };  };
 my $scoping_category = {  
   button => 1, caption => 1, html => 1, marquee => 1, object => 1,  
   table => 1, td => 1, th => 1,  
 };  
 my $formatting_category = {  
   a => 1, b => 1, big => 1, em => 1, font => 1, i => 1, nobr => 1,  
   s => 1, small => 1, strile => 1, strong => 1, tt => 1, u => 1,  
 };  
 # $phrasing_category: all other elements  
271    
272  sub parse_string ($$$;$) {  my $svg_attr_name = {
273    my $self = shift->new;    attributename => 'attributeName',
274    my $s = \$_[0];    attributetype => 'attributeType',
275    $self->{document} = $_[1];    basefrequency => 'baseFrequency',
276      baseprofile => 'baseProfile',
277      calcmode => 'calcMode',
278      clippathunits => 'clipPathUnits',
279      contentscripttype => 'contentScriptType',
280      contentstyletype => 'contentStyleType',
281      diffuseconstant => 'diffuseConstant',
282      edgemode => 'edgeMode',
283      externalresourcesrequired => 'externalResourcesRequired',
284      filterres => 'filterRes',
285      filterunits => 'filterUnits',
286      glyphref => 'glyphRef',
287      gradienttransform => 'gradientTransform',
288      gradientunits => 'gradientUnits',
289      kernelmatrix => 'kernelMatrix',
290      kernelunitlength => 'kernelUnitLength',
291      keypoints => 'keyPoints',
292      keysplines => 'keySplines',
293      keytimes => 'keyTimes',
294      lengthadjust => 'lengthAdjust',
295      limitingconeangle => 'limitingConeAngle',
296      markerheight => 'markerHeight',
297      markerunits => 'markerUnits',
298      markerwidth => 'markerWidth',
299      maskcontentunits => 'maskContentUnits',
300      maskunits => 'maskUnits',
301      numoctaves => 'numOctaves',
302      pathlength => 'pathLength',
303      patterncontentunits => 'patternContentUnits',
304      patterntransform => 'patternTransform',
305      patternunits => 'patternUnits',
306      pointsatx => 'pointsAtX',
307      pointsaty => 'pointsAtY',
308      pointsatz => 'pointsAtZ',
309      preservealpha => 'preserveAlpha',
310      preserveaspectratio => 'preserveAspectRatio',
311      primitiveunits => 'primitiveUnits',
312      refx => 'refX',
313      refy => 'refY',
314      repeatcount => 'repeatCount',
315      repeatdur => 'repeatDur',
316      requiredextensions => 'requiredExtensions',
317      requiredfeatures => 'requiredFeatures',
318      specularconstant => 'specularConstant',
319      specularexponent => 'specularExponent',
320      spreadmethod => 'spreadMethod',
321      startoffset => 'startOffset',
322      stddeviation => 'stdDeviation',
323      stitchtiles => 'stitchTiles',
324      surfacescale => 'surfaceScale',
325      systemlanguage => 'systemLanguage',
326      tablevalues => 'tableValues',
327      targetx => 'targetX',
328      targety => 'targetY',
329      textlength => 'textLength',
330      viewbox => 'viewBox',
331      viewtarget => 'viewTarget',
332      xchannelselector => 'xChannelSelector',
333      ychannelselector => 'yChannelSelector',
334      zoomandpan => 'zoomAndPan',
335    };
336    
337    ## NOTE: |set_inner_html| copies most of this method's code  my $foreign_attr_xname = {
338      'xlink:actuate' => [$XLINK_NS, ['xlink', 'actuate']],
339      'xlink:arcrole' => [$XLINK_NS, ['xlink', 'arcrole']],
340      'xlink:href' => [$XLINK_NS, ['xlink', 'href']],
341      'xlink:role' => [$XLINK_NS, ['xlink', 'role']],
342      'xlink:show' => [$XLINK_NS, ['xlink', 'show']],
343      'xlink:title' => [$XLINK_NS, ['xlink', 'title']],
344      'xlink:type' => [$XLINK_NS, ['xlink', 'type']],
345      'xml:base' => [$XML_NS, ['xml', 'base']],
346      'xml:lang' => [$XML_NS, ['xml', 'lang']],
347      'xml:space' => [$XML_NS, ['xml', 'space']],
348      'xmlns' => [$XMLNS_NS, [undef, 'xmlns']],
349      'xmlns:xlink' => [$XMLNS_NS, ['xmlns', 'xlink']],
350    };
351    
352    my $i = 0;  ## ISSUE: xmlns:xlink="non-xlink-ns" is not an error.
   my $line = 1;  
   my $column = 0;  
   $self->{set_next_input_character} = sub {  
     my $self = shift;  
353    
354      pop @{$self->{prev_input_character}};  ## TODO: Invoke the reset algorithm when a resettable element is
355      unshift @{$self->{prev_input_character}}, $self->{next_input_character};  ## created (cf. HTML5 revision 2259).
356    
357      $self->{next_input_character} = -1 and return if $i >= length $$s;  sub parse_byte_string ($$$$;$) {
358      $self->{next_input_character} = ord substr $$s, $i++, 1;    my $self = shift;
359      $column++;    my $charset_name = shift;
360          open my $input, '<', ref $_[0] ? $_[0] : \($_[0]);
361      if ($self->{next_input_character} == 0x000A) { # LF    return $self->parse_byte_stream ($charset_name, $input, @_[1..$#_]);
362        $line++;  } # parse_byte_string
363        $column = 0;  
364      } elsif ($self->{next_input_character} == 0x000D) { # CR  sub parse_byte_stream ($$$$;$$) {
365        if ($i >= length $$s) {    # my ($self, $charset_name, $byte_stream, $doc, $onerror, $get_wrapper) = @_;
366          #    my $self = ref $_[0] ? shift : shift->new;
367        } else {    my $charset_name = shift;
368          my $next_char = ord substr $$s, $i++, 1;    my $byte_stream = $_[0];
         if ($next_char == 0x000A) { # LF  
           #  
         } else {  
           push @{$self->{char}}, $next_char;  
         }  
       }  
       $self->{next_input_character} = 0x000A; # LF # MUST  
       $line++;  
       $column = 0;  
     } elsif ($self->{next_input_character} > 0x10FFFF) {  
       $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST  
     } elsif ($self->{next_input_character} == 0x0000) { # NULL  
       !!!parse-error (type => 'NULL');  
       $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST  
     }  
   };  
   $self->{prev_input_character} = [-1, -1, -1];  
   $self->{next_input_character} = -1;  
369    
370    my $onerror = $_[2] || sub {    my $onerror = $_[2] || sub {
371      my (%opt) = @_;      my (%opt) = @_;
372      warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";      warn "Parse error ($opt{type})\n";
   };  
   $self->{parse_error} = sub {  
     $onerror->(@_, line => $line, column => $column);  
373    };    };
374      $self->{parse_error} = $onerror; # updated later by parse_char_string
375    
376    $self->_initialize_tokenizer;    my $get_wrapper = $_[3] || sub ($) {
377    $self->_initialize_tree_constructor;      return $_[0]; # $_[0] = byte stream handle, returned = arg to char handle
   $self->_construct_tree;  
   $self->_terminate_tree_constructor;  
   
   return $self->{document};  
 } # parse_string  
   
 sub new ($) {  
   my $class = shift;  
   my $self = bless {}, $class;  
   $self->{set_next_input_character} = sub {  
     $self->{next_input_character} = -1;  
378    };    };
   $self->{parse_error} = sub {  
     #  
   };  
   return $self;  
 } # new  
   
 ## Implementations MUST act as if state machine in the spec  
   
 sub _initialize_tokenizer ($) {  
   my $self = shift;  
   $self->{state} = 'data'; # MUST  
   $self->{content_model_flag} = 'PCDATA'; # be  
   undef $self->{current_token}; # start tag, end tag, comment, or DOCTYPE  
   undef $self->{current_attribute};  
   undef $self->{last_emitted_start_tag_name};  
   undef $self->{last_attribute_value_state};  
   $self->{char} = [];  
   # $self->{next_input_character}  
   !!!next-input-character;  
   $self->{token} = [];  
 } # _initialize_tokenizer  
   
 ## A token has:  
 ##   ->{type} eq 'DOCTYPE', 'start tag', 'end tag', 'comment',  
 ##       'character', or 'end-of-file'  
 ##   ->{name} (DOCTYPE, start tag (tagname), end tag (tagname))  
     ## ISSUE: the spec need s/tagname/tag name/  
 ##   ->{error} == 1 or 0 (DOCTYPE)  
 ##   ->{attributes} isa HASH (start tag, end tag)  
 ##   ->{data} (comment, character)  
   
 ## Macros  
 ##   Macros MUST be preceded by three EXCLAMATION MARKs.  
 ##   emit ($token)  
 ##     Emits the specified token.  
   
 ## Emitted token MUST immediately be handled by the tree construction state.  
   
 ## Before each step, UA MAY check to see if either one of the scripts in  
 ## "list of scripts that will execute as soon as possible" or the first  
 ## script in the "list of scripts that will execute asynchronously",  
 ## has completed loading.  If one has, then it MUST be executed  
 ## and removed from the list.  
   
 sub _get_next_token ($) {  
   my $self = shift;  
   if (@{$self->{token}}) {  
     return shift @{$self->{token}};  
   }  
   
   A: {  
     if ($self->{state} eq 'data') {  
       if ($self->{next_input_character} == 0x0026) { # &  
         if ($self->{content_model_flag} eq 'PCDATA' or  
             $self->{content_model_flag} eq 'RCDATA') {  
           $self->{state} = 'entity data';  
           !!!next-input-character;  
           redo A;  
         } else {  
           #  
         }  
       } elsif ($self->{next_input_character} == 0x002D) { # -  
         if ($self->{content_model_flag} eq 'RCDATA' or  
             $self->{content_model_flag} eq 'CDATA') {  
           unless ($self->{escape}) {  
             if ($self->{prev_input_character}->[0] == 0x002D and # -  
                 $self->{prev_input_character}->[1] == 0x0021 and # !  
                 $self->{prev_input_character}->[2] == 0x003C) { # <  
               $self->{escape} = 1;  
             }  
           }  
         }  
           
         #  
       } elsif ($self->{next_input_character} == 0x003C) { # <  
         if ($self->{content_model_flag} eq 'PCDATA' or  
             (($self->{content_model_flag} eq 'CDATA' or  
               $self->{content_model_flag} eq 'RCDATA') and  
              not $self->{escape})) {  
           $self->{state} = 'tag open';  
           !!!next-input-character;  
           redo A;  
         } else {  
           #  
         }  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         if ($self->{escape} and  
             ($self->{content_model_flag} eq 'RCDATA' or  
              $self->{content_model_flag} eq 'CDATA')) {  
           if ($self->{prev_input_character}->[0] == 0x002D and # -  
               $self->{prev_input_character}->[1] == 0x002D) { # -  
             delete $self->{escape};  
           }  
         }  
           
         #  
       } elsif ($self->{next_input_character} == -1) {  
         !!!emit ({type => 'end-of-file'});  
         last A; ## TODO: ok?  
       }  
       # Anything else  
       my $token = {type => 'character',  
                    data => chr $self->{next_input_character}};  
       ## Stay in the data state  
       !!!next-input-character;  
   
       !!!emit ($token);  
   
       redo A;  
     } elsif ($self->{state} eq 'entity data') {  
       ## (cannot happen in CDATA state)  
         
       my $token = $self->_tokenize_attempt_to_consume_an_entity;  
379    
380        $self->{state} = 'data';    ## HTML5 encoding sniffing algorithm
381        # next-input-character is already done    require Message::Charset::Info;
382      my $charset;
383      my $buffer;
384      my ($char_stream, $e_status);
385    
386      SNIFFING: {
387        ## NOTE: By setting |allow_fallback| option true when the
388        ## |get_decode_handle| method is invoked, we ignore what the HTML5
389        ## spec requires, i.e. unsupported encoding should be ignored.
390          ## TODO: We should not do this unless the parser is invoked
391          ## in the conformance checking mode, in which this behavior
392          ## would be useful.
393    
394        unless (defined $token) {      ## Step 1
395          !!!emit ({type => 'character', data => '&'});      if (defined $charset_name) {
396          $charset = Message::Charset::Info->get_by_html_name ($charset_name);
397              ## TODO: Is this ok?  Transfer protocol's parameter should be
398              ## interpreted in its semantics?
399    
400          ($char_stream, $e_status) = $charset->get_decode_handle
401              ($byte_stream, allow_error_reporting => 1,
402               allow_fallback => 1);
403          if ($char_stream) {
404            $self->{confident} = 1;
405            last SNIFFING;
406        } else {        } else {
407          !!!emit ($token);          !!!parse-error (type => 'charset:not supported',
408                            layer => 'encode',
409                            line => 1, column => 1,
410                            value => $charset_name,
411                            level => $self->{level}->{uncertain});
412        }        }
413        }
414    
415        redo A;      ## Step 2
416      } elsif ($self->{state} eq 'tag open') {      my $byte_buffer = '';
417        if ($self->{content_model_flag} eq 'RCDATA' or      for (1..1024) {
418            $self->{content_model_flag} eq 'CDATA') {        my $char = $byte_stream->getc;
419          if ($self->{next_input_character} == 0x002F) { # /        last unless defined $char;
420            !!!next-input-character;        $byte_buffer .= $char;
421            $self->{state} = 'close tag open';      } ## TODO: timeout
           redo A;  
         } else {  
           ## reconsume  
           $self->{state} = 'data';  
   
           !!!emit ({type => 'character', data => '<'});  
   
           redo A;  
         }  
       } elsif ($self->{content_model_flag} eq 'PCDATA') {  
         if ($self->{next_input_character} == 0x0021) { # !  
           $self->{state} = 'markup declaration open';  
           !!!next-input-character;  
           redo A;  
         } elsif ($self->{next_input_character} == 0x002F) { # /  
           $self->{state} = 'close tag open';  
           !!!next-input-character;  
           redo A;  
         } elsif (0x0041 <= $self->{next_input_character} and  
                  $self->{next_input_character} <= 0x005A) { # A..Z  
           $self->{current_token}  
             = {type => 'start tag',  
                tag_name => chr ($self->{next_input_character} + 0x0020)};  
           $self->{state} = 'tag name';  
           !!!next-input-character;  
           redo A;  
         } elsif (0x0061 <= $self->{next_input_character} and  
                  $self->{next_input_character} <= 0x007A) { # a..z  
           $self->{current_token} = {type => 'start tag',  
                             tag_name => chr ($self->{next_input_character})};  
           $self->{state} = 'tag name';  
           !!!next-input-character;  
           redo A;  
         } elsif ($self->{next_input_character} == 0x003E) { # >  
           !!!parse-error (type => 'empty start tag');  
           $self->{state} = 'data';  
           !!!next-input-character;  
   
           !!!emit ({type => 'character', data => '<>'});  
   
           redo A;  
         } elsif ($self->{next_input_character} == 0x003F) { # ?  
           !!!parse-error (type => 'pio');  
           $self->{state} = 'bogus comment';  
           ## $self->{next_input_character} is intentionally left as is  
           redo A;  
         } else {  
           !!!parse-error (type => 'bare stago');  
           $self->{state} = 'data';  
           ## reconsume  
422    
423            !!!emit ({type => 'character', data => '<'});      ## Step 3
424        if ($byte_buffer =~ /^\xFE\xFF/) {
425          $charset = Message::Charset::Info->get_by_html_name ('utf-16be');
426          ($char_stream, $e_status) = $charset->get_decode_handle
427              ($byte_stream, allow_error_reporting => 1,
428               allow_fallback => 1, byte_buffer => \$byte_buffer);
429          $self->{confident} = 1;
430          last SNIFFING;
431        } elsif ($byte_buffer =~ /^\xFF\xFE/) {
432          $charset = Message::Charset::Info->get_by_html_name ('utf-16le');
433          ($char_stream, $e_status) = $charset->get_decode_handle
434              ($byte_stream, allow_error_reporting => 1,
435               allow_fallback => 1, byte_buffer => \$byte_buffer);
436          $self->{confident} = 1;
437          last SNIFFING;
438        } elsif ($byte_buffer =~ /^\xEF\xBB\xBF/) {
439          $charset = Message::Charset::Info->get_by_html_name ('utf-8');
440          ($char_stream, $e_status) = $charset->get_decode_handle
441              ($byte_stream, allow_error_reporting => 1,
442               allow_fallback => 1, byte_buffer => \$byte_buffer);
443          $self->{confident} = 1;
444          last SNIFFING;
445        }
446    
447            redo A;      ## Step 4
448          }      ## TODO: <meta charset>
       } else {  
         die "$0: $self->{content_model_flag}: Unknown content model flag";  
       }  
     } elsif ($self->{state} eq 'close tag open') {  
       if ($self->{content_model_flag} eq 'RCDATA' or  
           $self->{content_model_flag} eq 'CDATA') {  
         my @next_char;  
         TAGNAME: for (my $i = 0; $i < length $self->{last_emitted_start_tag_name}; $i++) {  
           push @next_char, $self->{next_input_character};  
           my $c = ord substr ($self->{last_emitted_start_tag_name}, $i, 1);  
           my $C = 0x0061 <= $c && $c <= 0x007A ? $c - 0x0020 : $c;  
           if ($self->{next_input_character} == $c or $self->{next_input_character} == $C) {  
             !!!next-input-character;  
             next TAGNAME;  
           } else {  
             !!!parse-error (type => 'unmatched end tag');  
             $self->{next_input_character} = shift @next_char; # reconsume  
             !!!back-next-input-character (@next_char);  
             $self->{state} = 'data';  
449    
450              !!!emit ({type => 'character', data => '</'});      ## Step 5
451        ## TODO: from history
452    
453              redo A;      ## Step 6
454            }      require Whatpm::Charset::UniversalCharDet;
455          }      $charset_name = Whatpm::Charset::UniversalCharDet->detect_byte_string
456          push @next_char, $self->{next_input_character};          ($byte_buffer);
457            if (defined $charset_name) {
458          unless ($self->{next_input_character} == 0x0009 or # HT        $charset = Message::Charset::Info->get_by_html_name ($charset_name);
459                  $self->{next_input_character} == 0x000A or # LF  
460                  $self->{next_input_character} == 0x000B or # VT        require Whatpm::Charset::DecodeHandle;
461                  $self->{next_input_character} == 0x000C or # FF        $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
462                  $self->{next_input_character} == 0x0020 or # SP            ($byte_stream);
463                  $self->{next_input_character} == 0x003E or # >        ($char_stream, $e_status) = $charset->get_decode_handle
464                  $self->{next_input_character} == 0x002F or # /            ($buffer, allow_error_reporting => 1,
465                  $self->{next_input_character} == 0x003C or # <             allow_fallback => 1, byte_buffer => \$byte_buffer);
466                  $self->{next_input_character} == -1) {        if ($char_stream) {
467            !!!parse-error (type => 'unmatched end tag');          $buffer->{buffer} = $byte_buffer;
468            $self->{next_input_character} = shift @next_char; # reconsume          !!!parse-error (type => 'sniffing:chardet',
469            !!!back-next-input-character (@next_char);                          text => $charset_name,
470            $self->{state} = 'data';                          level => $self->{level}->{info},
471                            layer => 'encode',
472            !!!emit ({type => 'character', data => '</'});                          line => 1, column => 1);
473            $self->{confident} = 0;
474            redo A;          last SNIFFING;
         } else {  
           $self->{next_input_character} = shift @next_char;  
           !!!back-next-input-character (@next_char);  
           # and consume...  
         }  
475        }        }
476              }
       if (0x0041 <= $self->{next_input_character} and  
           $self->{next_input_character} <= 0x005A) { # A..Z  
         $self->{current_token} = {type => 'end tag',  
                           tag_name => chr ($self->{next_input_character} + 0x0020)};  
         $self->{state} = 'tag name';  
         !!!next-input-character;  
         redo A;  
       } elsif (0x0061 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x007A) { # a..z  
         $self->{current_token} = {type => 'end tag',  
                           tag_name => chr ($self->{next_input_character})};  
         $self->{state} = 'tag name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         !!!parse-error (type => 'empty end tag');  
         $self->{state} = 'data';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'bare etago');  
         $self->{state} = 'data';  
         # reconsume  
   
         !!!emit ({type => 'character', data => '</'});  
   
         redo A;  
       } else {  
         !!!parse-error (type => 'bogus end tag');  
         $self->{state} = 'bogus comment';  
         ## $self->{next_input_character} is intentionally left as is  
         redo A;  
       }  
     } elsif ($self->{state} eq 'tag name') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         $self->{state} = 'before attribute name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } elsif (0x0041 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x005A) { # A..Z  
         $self->{current_token}->{tag_name} .= chr ($self->{next_input_character} + 0x0020);  
           # start tag or end tag  
         ## Stay in this state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003C or # <  
                $self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed tag');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         # reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } elsif ($self->{next_input_character} == 0x002F) { # /  
         !!!next-input-character;  
         if ($self->{next_input_character} == 0x003E and # >  
             $self->{current_token}->{type} eq 'start tag' and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           #  
         } else {  
           !!!parse-error (type => 'nestc');  
         }  
         $self->{state} = 'before attribute name';  
         # next-input-character is already done  
         redo A;  
       } else {  
         $self->{current_token}->{tag_name} .= chr $self->{next_input_character};  
           # start tag or end tag  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'before attribute name') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } elsif (0x0041 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x005A) { # A..Z  
         $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),  
                               value => ''};  
         $self->{state} = 'attribute name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x002F) { # /  
         !!!next-input-character;  
         if ($self->{next_input_character} == 0x003E and # >  
             $self->{current_token}->{type} eq 'start tag' and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           #  
         } else {  
           !!!parse-error (type => 'nestc');  
         }  
         ## Stay in the state  
         # next-input-character is already done  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003C or # <  
                $self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed tag');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         # reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } else {  
         $self->{current_attribute} = {name => chr ($self->{next_input_character}),  
                               value => ''};  
         $self->{state} = 'attribute name';  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'attribute name') {  
       my $before_leave = sub {  
         if (exists $self->{current_token}->{attributes} # start tag or end tag  
             ->{$self->{current_attribute}->{name}}) { # MUST  
           !!!parse-error (type => 'dupulicate attribute');  
           ## Discard $self->{current_attribute} # MUST  
         } else {  
           $self->{current_token}->{attributes}->{$self->{current_attribute}->{name}}  
             = $self->{current_attribute};  
         }  
       }; # $before_leave  
   
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         $before_leave->();  
         $self->{state} = 'after attribute name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003D) { # =  
         $before_leave->();  
         $self->{state} = 'before attribute value';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         $before_leave->();  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } elsif (0x0041 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x005A) { # A..Z  
         $self->{current_attribute}->{name} .= chr ($self->{next_input_character} + 0x0020);  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x002F) { # /  
         $before_leave->();  
         !!!next-input-character;  
         if ($self->{next_input_character} == 0x003E and # >  
             $self->{current_token}->{type} eq 'start tag' and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           #  
         } else {  
           !!!parse-error (type => 'nestc');  
         }  
         $self->{state} = 'before attribute name';  
         # next-input-character is already done  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003C or # <  
                $self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed tag');  
         $before_leave->();  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         # reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } else {  
         $self->{current_attribute}->{name} .= chr ($self->{next_input_character});  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'after attribute name') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003D) { # =  
         $self->{state} = 'before attribute value';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } elsif (0x0041 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x005A) { # A..Z  
         $self->{current_attribute} = {name => chr ($self->{next_input_character} + 0x0020),  
                               value => ''};  
         $self->{state} = 'attribute name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x002F) { # /  
         !!!next-input-character;  
         if ($self->{next_input_character} == 0x003E and # >  
             $self->{current_token}->{type} eq 'start tag' and  
             $permitted_slash_tag_name->{$self->{current_token}->{tag_name}}) {  
           # permitted slash  
           #  
         } else {  
           !!!parse-error (type => 'nestc');  
         }  
         $self->{state} = 'before attribute name';  
         # next-input-character is already done  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003C or # <  
                $self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed tag');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         # reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } else {  
         $self->{current_attribute} = {name => chr ($self->{next_input_character}),  
                               value => ''};  
         $self->{state} = 'attribute name';  
         !!!next-input-character;  
         redo A;          
       }  
     } elsif ($self->{state} eq 'before attribute value') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP        
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x0022) { # "  
         $self->{state} = 'attribute value (double-quoted)';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x0026) { # &  
         $self->{state} = 'attribute value (unquoted)';  
         ## reconsume  
         redo A;  
       } elsif ($self->{next_input_character} == 0x0027) { # '  
         $self->{state} = 'attribute value (single-quoted)';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } elsif ($self->{next_input_character} == 0x003C or # <  
                $self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed tag');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         ## reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } else {  
         $self->{current_attribute}->{value} .= chr ($self->{next_input_character});  
         $self->{state} = 'attribute value (unquoted)';  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'attribute value (double-quoted)') {  
       if ($self->{next_input_character} == 0x0022) { # "  
         $self->{state} = 'before attribute name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x0026) { # &  
         $self->{last_attribute_value_state} = 'attribute value (double-quoted)';  
         $self->{state} = 'entity in attribute value';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed attribute value');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         ## reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
   
         redo A;  
       } else {  
         $self->{current_attribute}->{value} .= chr ($self->{next_input_character});  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'attribute value (single-quoted)') {  
       if ($self->{next_input_character} == 0x0027) { # '  
         $self->{state} = 'before attribute name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x0026) { # &  
         $self->{last_attribute_value_state} = 'attribute value (single-quoted)';  
         $self->{state} = 'entity in attribute value';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed attribute value');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         ## reconsume  
   
         !!!emit ($self->{current_token}); # start tag or end tag  
         undef $self->{current_token};  
477    
478          redo A;      ## Step 7: default
479        } else {      ## TODO: Make this configurable.
480          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});      $charset = Message::Charset::Info->get_by_html_name ('windows-1252');
481          ## Stay in the state          ## NOTE: We choose |windows-1252| here, since |utf-8| should be
482          !!!next-input-character;          ## detectable in the step 6.
483          redo A;      require Whatpm::Charset::DecodeHandle;
484        }      $buffer = Whatpm::Charset::DecodeHandle::ByteBuffer->new
485      } elsif ($self->{state} eq 'attribute value (unquoted)') {          ($byte_stream);
486        if ($self->{next_input_character} == 0x0009 or # HT      ($char_stream, $e_status)
487            $self->{next_input_character} == 0x000A or # LF          = $charset->get_decode_handle ($buffer,
488            $self->{next_input_character} == 0x000B or # HT                                         allow_error_reporting => 1,
489            $self->{next_input_character} == 0x000C or # FF                                         allow_fallback => 1,
490            $self->{next_input_character} == 0x0020) { # SP                                         byte_buffer => \$byte_buffer);
491          $self->{state} = 'before attribute name';      $buffer->{buffer} = $byte_buffer;
492          !!!next-input-character;      !!!parse-error (type => 'sniffing:default',
493          redo A;                      text => 'windows-1252',
494        } elsif ($self->{next_input_character} == 0x0026) { # &                      level => $self->{level}->{info},
495          $self->{last_attribute_value_state} = 'attribute value (unquoted)';                      line => 1, column => 1,
496          $self->{state} = 'entity in attribute value';                      layer => 'encode');
497          !!!next-input-character;      $self->{confident} = 0;
498          redo A;    } # SNIFFING
499        } elsif ($self->{next_input_character} == 0x003E) { # >  
500          if ($self->{current_token}->{type} eq 'start tag') {    if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
501            $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};      $self->{input_encoding} = $charset->get_iana_name; ## TODO: Should we set actual charset decoder's encoding name?
502          } elsif ($self->{current_token}->{type} eq 'end tag') {      !!!parse-error (type => 'chardecode:fallback',
503            $self->{content_model_flag} = 'PCDATA'; # MUST                      #text => $self->{input_encoding},
504            if ($self->{current_token}->{attributes}) {                      level => $self->{level}->{uncertain},
505              !!!parse-error (type => 'end tag attribute');                      line => 1, column => 1,
506            }                      layer => 'encode');
507          } else {    } elsif (not ($e_status &
508            die "$0: $self->{current_token}->{type}: Unknown token type";                  Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL ())) {
509          }      $self->{input_encoding} = $charset->get_iana_name;
510          $self->{state} = 'data';      !!!parse-error (type => 'chardecode:no error',
511          !!!next-input-character;                      text => $self->{input_encoding},
512                        level => $self->{level}->{uncertain},
513          !!!emit ($self->{current_token}); # start tag or end tag                      line => 1, column => 1,
514          undef $self->{current_token};                      layer => 'encode');
515      } else {
516          redo A;      $self->{input_encoding} = $charset->get_iana_name;
517        } elsif ($self->{next_input_character} == 0x003C or # <    }
                $self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed tag');  
         if ($self->{current_token}->{type} eq 'start tag') {  
           $self->{last_emitted_start_tag_name} = $self->{current_token}->{tag_name};  
         } elsif ($self->{current_token}->{type} eq 'end tag') {  
           $self->{content_model_flag} = 'PCDATA'; # MUST  
           if ($self->{current_token}->{attributes}) {  
             !!!parse-error (type => 'end tag attribute');  
           }  
         } else {  
           die "$0: $self->{current_token}->{type}: Unknown token type";  
         }  
         $self->{state} = 'data';  
         ## reconsume  
518    
519          !!!emit ($self->{current_token}); # start tag or end tag    $self->{change_encoding} = sub {
520          undef $self->{current_token};      my $self = shift;
521        $charset_name = shift;
522        my $token = shift;
523    
524          redo A;      $charset = Message::Charset::Info->get_by_html_name ($charset_name);
525        } else {      ($char_stream, $e_status) = $charset->get_decode_handle
526          $self->{current_attribute}->{value} .= chr ($self->{next_input_character});          ($byte_stream, allow_error_reporting => 1, allow_fallback => 1,
527          ## Stay in the state           byte_buffer => \ $buffer->{buffer});
528          !!!next-input-character;      
529          redo A;      if ($char_stream) { # if supported
530          ## "Change the encoding" algorithm:
531          
532          ## Step 1
533          if (defined $self->{input_encoding} and
534              $self->{input_encoding} eq $charset_name) {
535            !!!parse-error (type => 'charset label:matching',
536                            text => $charset_name,
537                            level => $self->{level}->{info});
538            $self->{confident} = 1;
539            return;
540        }        }
     } elsif ($self->{state} eq 'entity in attribute value') {  
       my $token = $self->_tokenize_attempt_to_consume_an_entity;  
541    
542        unless (defined $token) {        ## Step 2 (HTML5 revision 3205)
543          $self->{current_attribute}->{value} .= '&';        if (defined $self->{input_encoding} and
544        } else {            Message::Charset::Info->get_by_html_name ($self->{input_encoding})
545          $self->{current_attribute}->{value} .= $token->{data};            ->{category} & Message::Charset::Info::CHARSET_CATEGORY_UTF16 ()) {
546          ## ISSUE: spec says "append the returned character token to the current attribute's value"          $self->{confident} = 1;
547            return;
548        }        }
549    
550        $self->{state} = $self->{last_attribute_value_state};        ## Step 3
551        # next-input-character is already done        if ($charset->{category} &
552        redo A;            Message::Charset::Info::CHARSET_CATEGORY_UTF16 ()) {
553      } elsif ($self->{state} eq 'bogus comment') {          $charset = Message::Charset::Info->get_by_html_name ('utf-8');
554        ## (only happen if PCDATA state)          ($char_stream, $e_status) = $charset->get_decode_handle
555                      ($byte_stream,
556        my $token = {type => 'comment', data => ''};               byte_buffer => \ $buffer->{buffer});
557          }
558        BC: {        $charset_name = $charset->get_iana_name;
559          if ($self->{next_input_character} == 0x003E) { # >  
560            $self->{state} = 'data';        !!!parse-error (type => 'charset label detected',
561            !!!next-input-character;                        text => $self->{input_encoding},
562                          value => $charset_name,
563            !!!emit ($token);                        level => $self->{level}->{warn},
564                          token => $token);
           redo A;  
         } elsif ($self->{next_input_character} == -1) {  
           $self->{state} = 'data';  
           ## reconsume  
   
           !!!emit ($token);  
   
           redo A;  
         } else {  
           $token->{data} .= chr ($self->{next_input_character});  
           !!!next-input-character;  
           redo BC;  
         }  
       } # BC  
     } elsif ($self->{state} eq 'markup declaration open') {  
       ## (only happen if PCDATA state)  
   
       my @next_char;  
       push @next_char, $self->{next_input_character};  
565                
566        if ($self->{next_input_character} == 0x002D) { # -        ## Step 4
567          !!!next-input-character;        # if (can) {
568          push @next_char, $self->{next_input_character};          ## change the encoding on the fly.
569          if ($self->{next_input_character} == 0x002D) { # -          #$self->{confident} = 1;
570            $self->{current_token} = {type => 'comment', data => ''};          #return;
571            $self->{state} = 'comment';        # }
           !!!next-input-character;  
           redo A;  
         }  
       } elsif ($self->{next_input_character} == 0x0044 or # D  
                $self->{next_input_character} == 0x0064) { # d  
         !!!next-input-character;  
         push @next_char, $self->{next_input_character};  
         if ($self->{next_input_character} == 0x004F or # O  
             $self->{next_input_character} == 0x006F) { # o  
           !!!next-input-character;  
           push @next_char, $self->{next_input_character};  
           if ($self->{next_input_character} == 0x0043 or # C  
               $self->{next_input_character} == 0x0063) { # c  
             !!!next-input-character;  
             push @next_char, $self->{next_input_character};  
             if ($self->{next_input_character} == 0x0054 or # T  
                 $self->{next_input_character} == 0x0074) { # t  
               !!!next-input-character;  
               push @next_char, $self->{next_input_character};  
               if ($self->{next_input_character} == 0x0059 or # Y  
                   $self->{next_input_character} == 0x0079) { # y  
                 !!!next-input-character;  
                 push @next_char, $self->{next_input_character};  
                 if ($self->{next_input_character} == 0x0050 or # P  
                     $self->{next_input_character} == 0x0070) { # p  
                   !!!next-input-character;  
                   push @next_char, $self->{next_input_character};  
                   if ($self->{next_input_character} == 0x0045 or # E  
                       $self->{next_input_character} == 0x0065) { # e  
                     ## ISSUE: What a stupid code this is!  
                     $self->{state} = 'DOCTYPE';  
                     !!!next-input-character;  
                     redo A;  
                   }  
                 }  
               }  
             }  
           }  
         }  
       }  
   
       !!!parse-error (type => 'bogus comment open');  
       $self->{next_input_character} = shift @next_char;  
       !!!back-next-input-character (@next_char);  
       $self->{state} = 'bogus comment';  
       redo A;  
572                
573        ## ISSUE: typos in spec: chacacters, is is a parse error        ## Step 5
574        ## ISSUE: spec is somewhat unclear on "is the first character that will be in the comment"; what is "that will be in the comment" is what the algorithm defines, isn't it?        throw Whatpm::HTML::RestartParser ();
575      } elsif ($self->{state} eq 'comment') {      }
576        if ($self->{next_input_character} == 0x002D) { # -    }; # $self->{change_encoding}
         $self->{state} = 'comment dash';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed comment');  
         $self->{state} = 'data';  
         ## reconsume  
   
         !!!emit ($self->{current_token}); # comment  
         undef $self->{current_token};  
577    
578          redo A;    my $char_onerror = sub {
579        } else {      my (undef, $type, %opt) = @_;
580          $self->{current_token}->{data} .= chr ($self->{next_input_character}); # comment      !!!parse-error (layer => 'encode',
581          ## Stay in the state                      line => $self->{line}, column => $self->{column} + 1,
582          !!!next-input-character;                      %opt, type => $type);
583          redo A;      if ($opt{octets}) {
584        }        ${$opt{octets}} = "\x{FFFD}"; # relacement character
585      } elsif ($self->{state} eq 'comment dash') {      }
586        if ($self->{next_input_character} == 0x002D) { # -    };
         $self->{state} = 'comment end';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed comment');  
         $self->{state} = 'data';  
         ## reconsume  
587    
588          !!!emit ($self->{current_token}); # comment    my $wrapped_char_stream = $get_wrapper->($char_stream);
589          undef $self->{current_token};    $wrapped_char_stream->onerror ($char_onerror);
590    
591          redo A;    my @args = ($_[1], $_[2]); # $doc, $onerror - $get_wrapper = undef;
592        } else {    my $return;
593          $self->{current_token}->{data} .= '-' . chr ($self->{next_input_character}); # comment    try {
594          $self->{state} = 'comment';      $return = $self->parse_char_stream ($wrapped_char_stream, @args);  
595          !!!next-input-character;    } catch Whatpm::HTML::RestartParser with {
596          redo A;      ## NOTE: Invoked after {change_encoding}.
597        }  
598      } elsif ($self->{state} eq 'comment end') {      if ($e_status & Message::Charset::Info::FALLBACK_ENCODING_IMPL ()) {
599        if ($self->{next_input_character} == 0x003E) { # >        $self->{input_encoding} = $charset->get_iana_name; ## TODO: Should we set actual charset decoder's encoding name?
600          $self->{state} = 'data';        !!!parse-error (type => 'chardecode:fallback',
601          !!!next-input-character;                        level => $self->{level}->{uncertain},
602                          #text => $self->{input_encoding},
603          !!!emit ($self->{current_token}); # comment                        line => 1, column => 1,
604          undef $self->{current_token};                        layer => 'encode');
605        } elsif (not ($e_status &
606          redo A;                    Message::Charset::Info::ERROR_REPORTING_ENCODING_IMPL ())) {
607        } elsif ($self->{next_input_character} == 0x002D) { # -        $self->{input_encoding} = $charset->get_iana_name;
608          !!!parse-error (type => 'dash in comment');        !!!parse-error (type => 'chardecode:no error',
609          $self->{current_token}->{data} .= '-'; # comment                        text => $self->{input_encoding},
610          ## Stay in the state                        level => $self->{level}->{uncertain},
611          !!!next-input-character;                        line => 1, column => 1,
612          redo A;                        layer => 'encode');
613        } elsif ($self->{next_input_character} == -1) {      } else {
614          !!!parse-error (type => 'unclosed comment');        $self->{input_encoding} = $charset->get_iana_name;
615          $self->{state} = 'data';      }
616          ## reconsume      $self->{confident} = 1;
617    
618          !!!emit ($self->{current_token}); # comment      $wrapped_char_stream = $get_wrapper->($char_stream);
619          undef $self->{current_token};      $wrapped_char_stream->onerror ($char_onerror);
620    
621          redo A;      $return = $self->parse_char_stream ($wrapped_char_stream, @args);
622        } else {    };
623          !!!parse-error (type => 'dash in comment');    return $return;
624          $self->{current_token}->{data} .= '--' . chr ($self->{next_input_character}); # comment  } # parse_byte_stream
         $self->{state} = 'comment';  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'DOCTYPE') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         $self->{state} = 'before DOCTYPE name';  
         !!!next-input-character;  
         redo A;  
       } else {  
         !!!parse-error (type => 'no space before DOCTYPE name');  
         $self->{state} = 'before DOCTYPE name';  
         ## reconsume  
         redo A;  
       }  
     } elsif ($self->{state} eq 'before DOCTYPE name') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif (0x0061 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x007A) { # a..z  
 ## ISSUE: "Set the token's name name to the" in the spec  
         $self->{current_token} = {type => 'DOCTYPE',  
                           name => chr ($self->{next_input_character} - 0x0020),  
                           error => 1};  
         $self->{state} = 'DOCTYPE name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         !!!parse-error (type => 'no DOCTYPE name');  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ({type => 'DOCTYPE', name => '', error => 1});  
   
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'no DOCTYPE name');  
         $self->{state} = 'data';  
         ## reconsume  
625    
626          !!!emit ({type => 'DOCTYPE', name => '', error => 1});  ## NOTE: HTML5 spec says that the encoding layer MUST NOT strip BOM
627    ## and the HTML layer MUST ignore it.  However, we does strip BOM in
628    ## the encoding layer and the HTML layer does not ignore any U+FEFF,
629    ## because the core part of our HTML parser expects a string of character,
630    ## not a string of bytes or code units or anything which might contain a BOM.
631    ## Therefore, any parser interface that accepts a string of bytes,
632    ## such as |parse_byte_string| in this module, must ensure that it does
633    ## strip the BOM and never strip any ZWNBSP.
634    
635          redo A;  sub parse_char_string ($$$;$$) {
636        } else {    #my ($self, $s, $doc, $onerror, $get_wrapper) = @_;
637          $self->{current_token} = {type => 'DOCTYPE',    my $self = shift;
638                            name => chr ($self->{next_input_character}),    my $s = ref $_[0] ? $_[0] : \($_[0]);
639                            error => 1};    require Whatpm::Charset::DecodeHandle;
640  ## ISSUE: "Set the token's name name to the" in the spec    my $input = Whatpm::Charset::DecodeHandle::CharString->new ($s);
641          $self->{state} = 'DOCTYPE name';    return $self->parse_char_stream ($input, @_[1..$#_]);
642          !!!next-input-character;  } # parse_char_string
643          redo A;  *parse_string = \&parse_char_string; ## NOTE: Alias for backward compatibility.
644        }  
645      } elsif ($self->{state} eq 'DOCTYPE name') {  sub parse_char_stream ($$$;$$) {
646        if ($self->{next_input_character} == 0x0009 or # HT    my $self = ref $_[0] ? shift : shift->new;
647            $self->{next_input_character} == 0x000A or # LF    my $input = $_[0];
648            $self->{next_input_character} == 0x000B or # VT    $self->{document} = $_[1];
649            $self->{next_input_character} == 0x000C or # FF    @{$self->{document}->child_nodes} = ();
           $self->{next_input_character} == 0x0020) { # SP  
         $self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML'); # DOCTYPE  
         $self->{state} = 'after DOCTYPE name';  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         $self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML'); # DOCTYPE  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # DOCTYPE  
         undef $self->{current_token};  
   
         redo A;  
       } elsif (0x0061 <= $self->{next_input_character} and  
                $self->{next_input_character} <= 0x007A) { # a..z  
         $self->{current_token}->{name} .= chr ($self->{next_input_character} - 0x0020); # DOCTYPE  
         #$self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML');  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed DOCTYPE');  
         $self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML'); # DOCTYPE  
         $self->{state} = 'data';  
         ## reconsume  
650    
651          !!!emit ($self->{current_token});    ## NOTE: |set_inner_html| copies most of this method's code
         undef $self->{current_token};  
652    
653          redo A;    ## Confidence: irrelevant.
654        } else {    $self->{confident} = 1 unless exists $self->{confident};
         $self->{current_token}->{name}  
           .= chr ($self->{next_input_character}); # DOCTYPE  
         #$self->{current_token}->{error} = ($self->{current_token}->{name} ne 'HTML');  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       }  
     } elsif ($self->{state} eq 'after DOCTYPE name') {  
       if ($self->{next_input_character} == 0x0009 or # HT  
           $self->{next_input_character} == 0x000A or # LF  
           $self->{next_input_character} == 0x000B or # VT  
           $self->{next_input_character} == 0x000C or # FF  
           $self->{next_input_character} == 0x0020) { # SP  
         ## Stay in the state  
         !!!next-input-character;  
         redo A;  
       } elsif ($self->{next_input_character} == 0x003E) { # >  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # DOCTYPE  
         undef $self->{current_token};  
   
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed DOCTYPE');  
         $self->{state} = 'data';  
         ## reconsume  
655    
656          !!!emit ($self->{current_token}); # DOCTYPE    $self->{document}->input_encoding ($self->{input_encoding})
657          undef $self->{current_token};        if defined $self->{input_encoding};
658    ## TODO: |{input_encoding}| is needless?
659    
660      $self->{line_prev} = $self->{line} = 1;
661      $self->{column_prev} = -1;
662      $self->{column} = 0;
663      $self->{set_nc} = sub {
664        my $self = shift;
665    
666          redo A;      my $char = '';
667        } else {      if (defined $self->{next_nc}) {
668          !!!parse-error (type => 'string after DOCTYPE name');        $char = $self->{next_nc};
669          $self->{current_token}->{error} = 1; # DOCTYPE        delete $self->{next_nc};
670          $self->{state} = 'bogus DOCTYPE';        $self->{nc} = ord $char;
671          !!!next-input-character;      } else {
672          redo A;        $self->{char_buffer} = '';
673        }        $self->{char_buffer_pos} = 0;
     } elsif ($self->{state} eq 'bogus DOCTYPE') {  
       if ($self->{next_input_character} == 0x003E) { # >  
         $self->{state} = 'data';  
         !!!next-input-character;  
   
         !!!emit ($self->{current_token}); # DOCTYPE  
         undef $self->{current_token};  
   
         redo A;  
       } elsif ($self->{next_input_character} == -1) {  
         !!!parse-error (type => 'unclosed DOCTYPE');  
         $self->{state} = 'data';  
         ## reconsume  
674    
675          !!!emit ($self->{current_token}); # DOCTYPE        my $count = $input->manakai_read_until
676          undef $self->{current_token};           ($self->{char_buffer}, qr/[^\x00\x0A\x0D]/, $self->{char_buffer_pos});
677          if ($count) {
678            $self->{line_prev} = $self->{line};
679            $self->{column_prev} = $self->{column};
680            $self->{column}++;
681            $self->{nc}
682                = ord substr ($self->{char_buffer}, $self->{char_buffer_pos}++, 1);
683            return;
684          }
685    
686          redo A;        if ($input->read ($char, 1)) {
687            $self->{nc} = ord $char;
688        } else {        } else {
689          ## Stay in the state          $self->{nc} = -1;
690          !!!next-input-character;          return;
         redo A;  
691        }        }
     } else {  
       die "$0: $self->{state}: Unknown state";  
692      }      }
   } # A    
   
   die "$0: _get_next_token: unexpected case";  
 } # _get_next_token  
693    
694  sub _tokenize_attempt_to_consume_an_entity ($) {      ($self->{line_prev}, $self->{column_prev})
695    my $self = shift;          = ($self->{line}, $self->{column});
696          $self->{column}++;
697    if ($self->{next_input_character} == 0x0023) { # #      
698      !!!next-input-character;      if ($self->{nc} == 0x000A) { # LF
699      if ($self->{next_input_character} == 0x0078 or # x        !!!cp ('j1');
700          $self->{next_input_character} == 0x0058) { # X        $self->{line}++;
701        my $num;        $self->{column} = 0;
702        X: {      } elsif ($self->{nc} == 0x000D) { # CR
703          my $x_char = $self->{next_input_character};        !!!cp ('j2');
704          !!!next-input-character;  ## TODO: support for abort/streaming
705          if (0x0030 <= $self->{next_input_character} and        my $next = '';
706              $self->{next_input_character} <= 0x0039) { # 0..9        if ($input->read ($next, 1) and $next ne "\x0A") {
707            $num ||= 0;          $self->{next_nc} = $next;
708            $num *= 0x10;        }
709            $num += $self->{next_input_character} - 0x0030;        $self->{nc} = 0x000A; # LF # MUST
710            redo X;        $self->{line}++;
711          } elsif (0x0061 <= $self->{next_input_character} and        $self->{column} = 0;
712                   $self->{next_input_character} <= 0x0066) { # a..f      } elsif ($self->{nc} == 0x0000) { # NULL
713            ## ISSUE: the spec says U+0078, which is apparently incorrect        !!!cp ('j4');
714            $num ||= 0;        !!!parse-error (type => 'NULL');
715            $num *= 0x10;        $self->{nc} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
716            $num += $self->{next_input_character} - 0x0060 + 9;      }
717            redo X;    };
         } elsif (0x0041 <= $self->{next_input_character} and  
                  $self->{next_input_character} <= 0x0046) { # A..F  
           ## ISSUE: the spec says U+0058, which is apparently incorrect  
           $num ||= 0;  
           $num *= 0x10;  
           $num += $self->{next_input_character} - 0x0040 + 9;  
           redo X;  
         } elsif (not defined $num) { # no hexadecimal digit  
           !!!parse-error (type => 'bare hcro');  
           $self->{next_input_character} = 0x0023; # #  
           !!!back-next-input-character ($x_char);  
           return undef;  
         } elsif ($self->{next_input_character} == 0x003B) { # ;  
           !!!next-input-character;  
         } else {  
           !!!parse-error (type => 'no refc');  
         }  
   
         ## TODO: check the definition for |a valid Unicode character|.  
         ## <http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2006-December/thread.html#8189>  
         if ($num > 1114111 or $num == 0) {  
           $num = 0xFFFD; # REPLACEMENT CHARACTER  
           ## ISSUE: Why this is not an error?  
         } elsif (0x80 <= $num and $num <= 0x9F) {  
           !!!parse-error (type => sprintf 'c1 entity:U+%04X', $num);  
           $num = $c1_entity_char->{$num};  
         }  
   
         return {type => 'character', data => chr $num};  
       } # X  
     } elsif (0x0030 <= $self->{next_input_character} and  
              $self->{next_input_character} <= 0x0039) { # 0..9  
       my $code = $self->{next_input_character} - 0x0030;  
       !!!next-input-character;  
         
       while (0x0030 <= $self->{next_input_character} and  
                 $self->{next_input_character} <= 0x0039) { # 0..9  
         $code *= 10;  
         $code += $self->{next_input_character} - 0x0030;  
           
         !!!next-input-character;  
       }  
718    
719        if ($self->{next_input_character} == 0x003B) { # ;    $self->{read_until} = sub {
720          !!!next-input-character;      #my ($scalar, $specials_range, $offset) = @_;
721        return 0 if defined $self->{next_nc};
722    
723        my $pattern = qr/[^$_[1]\x00\x0A\x0D]/;
724        my $offset = $_[2] || 0;
725    
726        if ($self->{char_buffer_pos} < length $self->{char_buffer}) {
727          pos ($self->{char_buffer}) = $self->{char_buffer_pos};
728          if ($self->{char_buffer} =~ /\G(?>$pattern)+/) {
729            substr ($_[0], $offset)
730                = substr ($self->{char_buffer}, $-[0], $+[0] - $-[0]);
731            my $count = $+[0] - $-[0];
732            if ($count) {
733              $self->{column} += $count;
734              $self->{char_buffer_pos} += $count;
735              $self->{line_prev} = $self->{line};
736              $self->{column_prev} = $self->{column} - 1;
737              $self->{nc} = -1;
738            }
739            return $count;
740        } else {        } else {
741          !!!parse-error (type => 'no refc');          return 0;
       }  
   
       ## TODO: check the definition for |a valid Unicode character|.  
       if ($code > 1114111 or $code == 0) {  
         $code = 0xFFFD; # REPLACEMENT CHARACTER  
         ## ISSUE: Why this is not an error?  
       } elsif (0x80 <= $code and $code <= 0x9F) {  
         !!!parse-error (type => sprintf 'c1 entity:U+%04X', $code);  
         $code = $c1_entity_char->{$code};  
742        }        }
         
       return {type => 'character', data => chr $code};  
743      } else {      } else {
744        !!!parse-error (type => 'bare nero');        my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
745        !!!back-next-input-character ($self->{next_input_character});        if ($count) {
746        $self->{next_input_character} = 0x0023; # #          $self->{column} += $count;
747        return undef;          $self->{line_prev} = $self->{line};
748      }          $self->{column_prev} = $self->{column} - 1;
749    } elsif ((0x0041 <= $self->{next_input_character} and          $self->{nc} = -1;
             $self->{next_input_character} <= 0x005A) or  
            (0x0061 <= $self->{next_input_character} and  
             $self->{next_input_character} <= 0x007A)) {  
     my $entity_name = chr $self->{next_input_character};  
     !!!next-input-character;  
   
     my $value = $entity_name;  
     my $match;  
   
     while (length $entity_name < 10 and  
            ## NOTE: Some number greater than the maximum length of entity name  
            ((0x0041 <= $self->{next_input_character} and  
              $self->{next_input_character} <= 0x005A) or  
             (0x0061 <= $self->{next_input_character} and  
              $self->{next_input_character} <= 0x007A) or  
             (0x0030 <= $self->{next_input_character} and  
              $self->{next_input_character} <= 0x0039))) {  
       $entity_name .= chr $self->{next_input_character};  
       if (defined $entity_char->{$entity_name}) {  
         $value = $entity_char->{$entity_name};  
         $match = 1;  
       } else {  
         $value .= chr $self->{next_input_character};  
750        }        }
751        !!!next-input-character;        return $count;
752      }      }
753          }; # $self->{read_until}
     if ($match) {  
       if ($self->{next_input_character} == 0x003B) { # ;  
         !!!next-input-character;  
       } else {  
         !!!parse-error (type => 'refc');  
       }  
754    
755        return {type => 'character', data => $value};    my $onerror = $_[2] || sub {
756      } else {      my (%opt) = @_;
757        !!!parse-error (type => 'bare ero');      my $line = $opt{token} ? $opt{token}->{line} : $opt{line};
758        ## NOTE: No characters are consumed in the spec.      my $column = $opt{token} ? $opt{token}->{column} : $opt{column};
759        !!!back-token ({type => 'character', data => $value});      warn "Parse error ($opt{type}) at line $line column $column\n";
760        return undef;    };
761      }    $self->{parse_error} = sub {
762        $onerror->(line => $self->{line}, column => $self->{column}, @_);
763      };
764    
765      my $char_onerror = sub {
766        my (undef, $type, %opt) = @_;
767        !!!parse-error (layer => 'encode',
768                        line => $self->{line}, column => $self->{column} + 1,
769                        %opt, type => $type);
770      }; # $char_onerror
771    
772      if ($_[3]) {
773        $input = $_[3]->($input);
774        $input->onerror ($char_onerror);
775    } else {    } else {
776      ## no characters are consumed      $input->onerror ($char_onerror) unless defined $input->onerror;
     !!!parse-error (type => 'bare ero');  
     return undef;  
777    }    }
778  } # _tokenize_attempt_to_consume_an_entity  
779      $self->_initialize_tokenizer;
780      $self->_initialize_tree_constructor;
781      $self->_construct_tree;
782      $self->_terminate_tree_constructor;
783    
784      delete $self->{parse_error}; # remove loop
785    
786      return $self->{document};
787    } # parse_char_stream
788    
789    sub new ($) {
790      my $class = shift;
791      my $self = bless {
792        level => {must => 'm',
793                  should => 's',
794                  warn => 'w',
795                  info => 'i',
796                  uncertain => 'u'},
797      }, $class;
798      $self->{set_nc} = sub {
799        $self->{nc} = -1;
800      };
801      $self->{parse_error} = sub {
802        #
803      };
804      $self->{change_encoding} = sub {
805        # if ($_[0] is a supported encoding) {
806        #   run "change the encoding" algorithm;
807        #   throw Whatpm::HTML::RestartParser (charset => $new_encoding);
808        # }
809      };
810      $self->{application_cache_selection} = sub {
811        #
812      };
813      return $self;
814    } # new
815    
816    ## Insertion modes
817    
818    sub AFTER_HTML_IMS () { 0b100 }
819    sub HEAD_IMS ()       { 0b1000 }
820    sub BODY_IMS ()       { 0b10000 }
821    sub BODY_TABLE_IMS () { 0b100000 }
822    sub TABLE_IMS ()      { 0b1000000 }
823    sub ROW_IMS ()        { 0b10000000 }
824    sub BODY_AFTER_IMS () { 0b100000000 }
825    sub FRAME_IMS ()      { 0b1000000000 }
826    sub SELECT_IMS ()     { 0b10000000000 }
827    #sub IN_FOREIGN_CONTENT_IM () { 0b100000000000 } # see Whatpm::HTML::Tokenizer
828        ## NOTE: "in foreign content" insertion mode is special; it is combined
829        ## with the secondary insertion mode.  In this parser, they are stored
830        ## together in the bit-or'ed form.
831    sub IN_CDATA_RCDATA_IM () { 0b1000000000000 }
832        ## NOTE: "in CDATA/RCDATA" insertion mode is also special; it is
833        ## combined with the original insertion mode.  In thie parser,
834        ## they are stored together in the bit-or'ed form.
835    
836    sub IM_MASK () { 0b11111111111 }
837    
838    ## NOTE: "initial" and "before html" insertion modes have no constants.
839    
840    ## NOTE: "after after body" insertion mode.
841    sub AFTER_HTML_BODY_IM () { AFTER_HTML_IMS | BODY_AFTER_IMS }
842    
843    ## NOTE: "after after frameset" insertion mode.
844    sub AFTER_HTML_FRAMESET_IM () { AFTER_HTML_IMS | FRAME_IMS }
845    
846    sub IN_HEAD_IM () { HEAD_IMS | 0b00 }
847    sub IN_HEAD_NOSCRIPT_IM () { HEAD_IMS | 0b01 }
848    sub AFTER_HEAD_IM () { HEAD_IMS | 0b10 }
849    sub BEFORE_HEAD_IM () { HEAD_IMS | 0b11 }
850    sub IN_BODY_IM () { BODY_IMS }
851    sub IN_CELL_IM () { BODY_IMS | BODY_TABLE_IMS | 0b01 }
852    sub IN_CAPTION_IM () { BODY_IMS | BODY_TABLE_IMS | 0b10 }
853    sub IN_ROW_IM () { TABLE_IMS | ROW_IMS | 0b01 }
854    sub IN_TABLE_BODY_IM () { TABLE_IMS | ROW_IMS | 0b10 }
855    sub IN_TABLE_IM () { TABLE_IMS }
856    sub AFTER_BODY_IM () { BODY_AFTER_IMS }
857    sub IN_FRAMESET_IM () { FRAME_IMS | 0b01 }
858    sub AFTER_FRAMESET_IM () { FRAME_IMS | 0b10 }
859    sub IN_SELECT_IM () { SELECT_IMS | 0b01 }
860    sub IN_SELECT_IN_TABLE_IM () { SELECT_IMS | 0b10 }
861    sub IN_COLUMN_GROUP_IM () { 0b10 }
862    
863  sub _initialize_tree_constructor ($) {  sub _initialize_tree_constructor ($) {
864    my $self = shift;    my $self = shift;
# Line 1667  sub _initialize_tree_constructor ($) { Line 866  sub _initialize_tree_constructor ($) {
866    $self->{document}->strict_error_checking (0);    $self->{document}->strict_error_checking (0);
867    ## TODO: Turn mutation events off # MUST    ## TODO: Turn mutation events off # MUST
868    ## TODO: Turn loose Document option (manakai extension) on    ## TODO: Turn loose Document option (manakai extension) on
869    ## TODO: Mark the Document as an HTML document # MUST    $self->{document}->manakai_is_html (1); # MUST
870      $self->{document}->set_user_data (manakai_source_line => 1);
871      $self->{document}->set_user_data (manakai_source_column => 1);
872    
873      $self->{frameset_ok} = 1;
874  } # _initialize_tree_constructor  } # _initialize_tree_constructor
875    
876  sub _terminate_tree_constructor ($) {  sub _terminate_tree_constructor ($) {
# Line 1687  sub _construct_tree ($) { Line 890  sub _construct_tree ($) {
890    ## When an interactive UA render the $self->{document} available    ## When an interactive UA render the $self->{document} available
891    ## to the user, or when it begin accepting user input, are    ## to the user, or when it begin accepting user input, are
892    ## not defined.    ## not defined.
   
   ## Append a character: collect it and all subsequent consecutive  
   ## characters and insert one Text node whose data is concatenation  
   ## of all those characters. # MUST  
893        
894    !!!next-token;    !!!next-token;
895    
   $self->{insertion_mode} = 'before head';  
896    undef $self->{form_element};    undef $self->{form_element};
897    undef $self->{head_element};    undef $self->{head_element};
898      undef $self->{head_element_inserted};
899    $self->{open_elements} = [];    $self->{open_elements} = [];
900    undef $self->{inner_html_node};    undef $self->{inner_html_node};
901      undef $self->{ignore_newline};
902    
903      ## NOTE: The "initial" insertion mode.
904    $self->_tree_construction_initial; # MUST    $self->_tree_construction_initial; # MUST
905    
906      ## NOTE: The "before html" insertion mode.
907    $self->_tree_construction_root_element;    $self->_tree_construction_root_element;
908      $self->{insertion_mode} = BEFORE_HEAD_IM;
909    
910      ## NOTE: The "before head" insertion mode and so on.
911    $self->_tree_construction_main;    $self->_tree_construction_main;
912  } # _construct_tree  } # _construct_tree
913    
914  sub _tree_construction_initial ($) {  sub _tree_construction_initial ($) {
915    my $self = shift;    my $self = shift;
916    B: {  
917        if ($token->{type} eq 'DOCTYPE') {    ## NOTE: "initial" insertion mode
918          if ($token->{error}) {  
919            ## ISSUE: Spec currently left this case undefined.    INITIAL: {
920            !!!parse-error (type => 'bogus DOCTYPE');      if ($token->{type} == DOCTYPE_TOKEN) {
921          }        ## NOTE: Conformance checkers MAY, instead of reporting "not
922          my $doctype = $self->{document}->create_document_type_definition        ## HTML5" error, switch to a conformance checking mode for
923            ($token->{name});        ## another language.  (We don't support such mode switchings; it
924          $self->{document}->append_child ($doctype);        ## is nonsense to do anything different from what browsers do.)
925          #$phase = 'root element';        my $doctype_name = $token->{name};
926          !!!next-token;        $doctype_name = '' unless defined $doctype_name;
927          #redo B;        my $doctype = $self->{document}->create_document_type_definition
928          return;            ($doctype_name);
929        } elsif ({  
930                  comment => 1,        $doctype_name =~ tr/A-Z/a-z/; # ASCII case-insensitive
931                  'start tag' => 1,        if ($doctype_name ne 'html') {
932                  'end tag' => 1,          !!!cp ('t1');
933                  'end-of-file' => 1,          !!!parse-error (type => 'not HTML5', token => $token);
934                 }->{$token->{type}}) {        } elsif (defined $token->{pubid}) {
935          ## ISSUE: Spec currently left this case undefined.          !!!cp ('t2');
936          !!!parse-error (type => 'missing DOCTYPE');          ## XXX Obsolete permitted DOCTYPEs
937          #$phase = 'root element';          !!!parse-error (type => 'not HTML5', token => $token);
938          ## reprocess        } elsif (defined $token->{sysid}) {
939          #redo B;          if ($token->{sysid} eq 'about:legacy-compat') {
940          return;            !!!cp ('t1.2'); ## <!DOCTYPE HTML SYSTEM "about:legacy-compat">
941        } elsif ($token->{type} eq 'character') {            !!!parse-error (type => 'XSLT-compat', token => $token,
942          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {                            level => $self->{level}->{should});
943            $self->{document}->manakai_append_text ($1);          } else {
944            ## ISSUE: DOM3 Core does not allow Document > Text            !!!parse-error (type => 'not HTML5', token => $token);
945            unless (length $token->{data}) {          }
946              ## Stay in the phase        } else { ## <!DOCTYPE HTML>
947              !!!next-token;          !!!cp ('t3');
948              redo B;          #
949          }
950          
951          ## NOTE: Default value for both |public_id| and |system_id| attributes
952          ## are empty strings, so that we don't set any value in missing cases.
953          $doctype->public_id ($token->{pubid}) if defined $token->{pubid};
954          $doctype->system_id ($token->{sysid}) if defined $token->{sysid};
955    
956          ## NOTE: Other DocumentType attributes are null or empty lists.
957          ## In Firefox3, |internalSubset| attribute is set to the empty
958          ## string, while |null| is an allowed value for the attribute
959          ## according to DOM3 Core.
960          $self->{document}->append_child ($doctype);
961          
962          if ($token->{quirks} or $doctype_name ne 'html') {
963            !!!cp ('t4');
964            $self->{document}->manakai_compat_mode ('quirks');
965          } elsif (defined $token->{pubid}) {
966            my $pubid = $token->{pubid};
967            $pubid =~ tr/a-z/A-z/;
968            my $prefix = [
969              "+//SILMARIL//DTD HTML PRO V0R11 19970101//",
970              "-//ADVASOFT LTD//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
971              "-//AS//DTD HTML 3.0 ASWEDIT + EXTENSIONS//",
972              "-//IETF//DTD HTML 2.0 LEVEL 1//",
973              "-//IETF//DTD HTML 2.0 LEVEL 2//",
974              "-//IETF//DTD HTML 2.0 STRICT LEVEL 1//",
975              "-//IETF//DTD HTML 2.0 STRICT LEVEL 2//",
976              "-//IETF//DTD HTML 2.0 STRICT//",
977              "-//IETF//DTD HTML 2.0//",
978              "-//IETF//DTD HTML 2.1E//",
979              "-//IETF//DTD HTML 3.0//",
980              "-//IETF//DTD HTML 3.2 FINAL//",
981              "-//IETF//DTD HTML 3.2//",
982              "-//IETF//DTD HTML 3//",
983              "-//IETF//DTD HTML LEVEL 0//",
984              "-//IETF//DTD HTML LEVEL 1//",
985              "-//IETF//DTD HTML LEVEL 2//",
986              "-//IETF//DTD HTML LEVEL 3//",
987              "-//IETF//DTD HTML STRICT LEVEL 0//",
988              "-//IETF//DTD HTML STRICT LEVEL 1//",
989              "-//IETF//DTD HTML STRICT LEVEL 2//",
990              "-//IETF//DTD HTML STRICT LEVEL 3//",
991              "-//IETF//DTD HTML STRICT//",
992              "-//IETF//DTD HTML//",
993              "-//METRIUS//DTD METRIUS PRESENTATIONAL//",
994              "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML STRICT//",
995              "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 HTML//",
996              "-//MICROSOFT//DTD INTERNET EXPLORER 2.0 TABLES//",
997              "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML STRICT//",
998              "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 HTML//",
999              "-//MICROSOFT//DTD INTERNET EXPLORER 3.0 TABLES//",
1000              "-//NETSCAPE COMM. CORP.//DTD HTML//",
1001              "-//NETSCAPE COMM. CORP.//DTD STRICT HTML//",
1002              "-//O'REILLY AND ASSOCIATES//DTD HTML 2.0//",
1003              "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED 1.0//",
1004              "-//O'REILLY AND ASSOCIATES//DTD HTML EXTENDED RELAXED 1.0//",
1005              "-//SOFTQUAD SOFTWARE//DTD HOTMETAL PRO 6.0::19990601::EXTENSIONS TO HTML 4.0//",
1006              "-//SOFTQUAD//DTD HOTMETAL PRO 4.0::19971010::EXTENSIONS TO HTML 4.0//",
1007              "-//SPYGLASS//DTD HTML 2.0 EXTENDED//",
1008              "-//SQ//DTD HTML 2.0 HOTMETAL + EXTENSIONS//",
1009              "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA HTML//",
1010              "-//SUN MICROSYSTEMS CORP.//DTD HOTJAVA STRICT HTML//",
1011              "-//W3C//DTD HTML 3 1995-03-24//",
1012              "-//W3C//DTD HTML 3.2 DRAFT//",
1013              "-//W3C//DTD HTML 3.2 FINAL//",
1014              "-//W3C//DTD HTML 3.2//",
1015              "-//W3C//DTD HTML 3.2S DRAFT//",
1016              "-//W3C//DTD HTML 4.0 FRAMESET//",
1017              "-//W3C//DTD HTML 4.0 TRANSITIONAL//",
1018              "-//W3C//DTD HTML EXPERIMETNAL 19960712//",
1019              "-//W3C//DTD HTML EXPERIMENTAL 970421//",
1020              "-//W3C//DTD W3 HTML//",
1021              "-//W3O//DTD W3 HTML 3.0//",
1022              "-//WEBTECHS//DTD MOZILLA HTML 2.0//",
1023              "-//WEBTECHS//DTD MOZILLA HTML//",
1024            ]; # $prefix
1025            my $match;
1026            for (@$prefix) {
1027              if (substr ($prefix, 0, length $_) eq $_) {
1028                $match = 1;
1029                last;
1030              }
1031            }
1032            if ($match or
1033                $pubid eq "-//W3O//DTD W3 HTML STRICT 3.0//EN//" or
1034                $pubid eq "-/W3C/DTD HTML 4.0 TRANSITIONAL/EN" or
1035                $pubid eq "HTML") {
1036              !!!cp ('t5');
1037              $self->{document}->manakai_compat_mode ('quirks');
1038            } elsif ($pubid =~ m[^-//W3C//DTD HTML 4.01 FRAMESET//] or
1039                     $pubid =~ m[^-//W3C//DTD HTML 4.01 TRANSITIONAL//]) {
1040              if (defined $token->{sysid}) {
1041                !!!cp ('t6');
1042                $self->{document}->manakai_compat_mode ('quirks');
1043              } else {
1044                !!!cp ('t7');
1045                $self->{document}->manakai_compat_mode ('limited quirks');
1046            }            }
1047            } elsif ($pubid =~ m[^-//W3C//DTD XHTML 1.0 FRAMESET//] or
1048                     $pubid =~ m[^-//W3C//DTD XHTML 1.0 TRANSITIONAL//]) {
1049              !!!cp ('t8');
1050              $self->{document}->manakai_compat_mode ('limited quirks');
1051            } else {
1052              !!!cp ('t9');
1053            }
1054          } else {
1055            !!!cp ('t10');
1056          }
1057          if (defined $token->{sysid}) {
1058            my $sysid = $token->{sysid};
1059            $sysid =~ tr/A-Z/a-z/;
1060            if ($sysid eq "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") {
1061              ## NOTE: Ensure that |PUBLIC "(limited quirks)" "(quirks)"| is
1062              ## marked as quirks.
1063              $self->{document}->manakai_compat_mode ('quirks');
1064              !!!cp ('t11');
1065            } else {
1066              !!!cp ('t12');
1067            }
1068          } else {
1069            !!!cp ('t13');
1070          }
1071          
1072          ## Go to the "before html" insertion mode.
1073          !!!next-token;
1074          return;
1075        } elsif ({
1076                  START_TAG_TOKEN, 1,
1077                  END_TAG_TOKEN, 1,
1078                  END_OF_FILE_TOKEN, 1,
1079                 }->{$token->{type}}) {
1080          !!!cp ('t14');
1081          !!!parse-error (type => 'no DOCTYPE', token => $token);
1082          $self->{document}->manakai_compat_mode ('quirks');
1083          ## Go to the "before html" insertion mode.
1084          ## reprocess
1085          !!!ack-later;
1086          return;
1087        } elsif ($token->{type} == CHARACTER_TOKEN) {
1088          if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
1089            ## Ignore the token
1090    
1091            unless (length $token->{data}) {
1092              !!!cp ('t15');
1093              ## Stay in the insertion mode.
1094              !!!next-token;
1095              redo INITIAL;
1096            } else {
1097              !!!cp ('t16');
1098          }          }
         ## ISSUE: Spec currently left this case undefined.  
         !!!parse-error (type => 'missing DOCTYPE');  
         #$phase = 'root element';  
         ## reprocess  
         #redo B;  
         return;  
1099        } else {        } else {
1100          die "$0: $token->{type}: Unknown token";          !!!cp ('t17');
1101        }        }
1102      } # B  
1103          !!!parse-error (type => 'no DOCTYPE', token => $token);
1104          $self->{document}->manakai_compat_mode ('quirks');
1105          ## Go to the "before html" insertion mode.
1106          ## reprocess
1107          return;
1108        } elsif ($token->{type} == COMMENT_TOKEN) {
1109          !!!cp ('t18');
1110          my $comment = $self->{document}->create_comment ($token->{data});
1111          $self->{document}->append_child ($comment);
1112          
1113          ## Stay in the insertion mode.
1114          !!!next-token;
1115          redo INITIAL;
1116        } else {
1117          die "$0: $token->{type}: Unknown token type";
1118        }
1119      } # INITIAL
1120    
1121      die "$0: _tree_construction_initial: This should be never reached";
1122  } # _tree_construction_initial  } # _tree_construction_initial
1123    
1124  sub _tree_construction_root_element ($) {  sub _tree_construction_root_element ($) {
1125    my $self = shift;    my $self = shift;
1126    
1127      ## NOTE: "before html" insertion mode.
1128        
1129    B: {    B: {
1130        if ($token->{type} eq 'DOCTYPE') {        if ($token->{type} == DOCTYPE_TOKEN) {
1131          !!!parse-error (type => 'in html:#DOCTYPE');          !!!cp ('t19');
1132            !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
1133          ## Ignore the token          ## Ignore the token
1134          ## Stay in the phase          ## Stay in the insertion mode.
1135          !!!next-token;          !!!next-token;
1136          redo B;          redo B;
1137        } elsif ($token->{type} eq 'comment') {        } elsif ($token->{type} == COMMENT_TOKEN) {
1138            !!!cp ('t20');
1139          my $comment = $self->{document}->create_comment ($token->{data});          my $comment = $self->{document}->create_comment ($token->{data});
1140          $self->{document}->append_child ($comment);          $self->{document}->append_child ($comment);
1141          ## Stay in the phase          ## Stay in the insertion mode.
1142          !!!next-token;          !!!next-token;
1143          redo B;          redo B;
1144        } elsif ($token->{type} eq 'character') {        } elsif ($token->{type} == CHARACTER_TOKEN) {
1145          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
1146            $self->{document}->manakai_append_text ($1);            ## Ignore the token.
1147            ## ISSUE: DOM3 Core does not allow Document > Text  
1148            unless (length $token->{data}) {            unless (length $token->{data}) {
1149              ## Stay in the phase              !!!cp ('t21');
1150                ## Stay in the insertion mode.
1151              !!!next-token;              !!!next-token;
1152              redo B;              redo B;
1153              } else {
1154                !!!cp ('t22');
1155            }            }
1156            } else {
1157              !!!cp ('t23');
1158          }          }
1159    
1160            $self->{application_cache_selection}->(undef);
1161    
1162          #          #
1163          } elsif ($token->{type} == START_TAG_TOKEN) {
1164            if ($token->{tag_name} eq 'html') {
1165              my $root_element;
1166              !!!create-element ($root_element, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
1167              $self->{document}->append_child ($root_element);
1168              push @{$self->{open_elements}},
1169                  [$root_element, $el_category->{html}];
1170    
1171              if ($token->{attributes}->{manifest}) {
1172                !!!cp ('t24');
1173                $self->{application_cache_selection}
1174                    ->($token->{attributes}->{manifest}->{value});
1175                ## ISSUE: Spec is unclear on relative references.
1176                ## According to Hixie (#whatwg 2008-03-19), it should be
1177                ## resolved against the base URI of the document in HTML
1178                ## or xml:base of the element in XHTML.
1179              } else {
1180                !!!cp ('t25');
1181                $self->{application_cache_selection}->(undef);
1182              }
1183    
1184              !!!nack ('t25c');
1185    
1186              !!!next-token;
1187              return; ## Go to the "before head" insertion mode.
1188            } else {
1189              !!!cp ('t25.1');
1190              #
1191            }
1192        } elsif ({        } elsif ({
1193                  'start tag' => 1,                  END_TAG_TOKEN, 1,
1194                  'end tag' => 1,                  END_OF_FILE_TOKEN, 1,
                 'end-of-file' => 1,  
1195                 }->{$token->{type}}) {                 }->{$token->{type}}) {
1196          ## ISSUE: There is an issue in the spec          !!!cp ('t26');
1197          #          #
1198        } else {        } else {
1199          die "$0: $token->{type}: Unknown token";          die "$0: $token->{type}: Unknown token type";
1200        }        }
1201        my $root_element; !!!create-element ($root_element, 'html');  
1202        $self->{document}->append_child ($root_element);      my $root_element;
1203        push @{$self->{open_elements}}, [$root_element, 'html'];      !!!create-element ($root_element, $HTML_NS, 'html',, $token);
1204        #$phase = 'main';      $self->{document}->append_child ($root_element);
1205        ## reprocess      push @{$self->{open_elements}}, [$root_element, $el_category->{html}];
1206        #redo B;  
1207        return;      $self->{application_cache_selection}->(undef);
1208    
1209        ## NOTE: Reprocess the token.
1210        !!!ack-later;
1211        return; ## Go to the "before head" insertion mode.
1212    } # B    } # B
1213    
1214      die "$0: _tree_construction_root_element: This should never be reached";
1215  } # _tree_construction_root_element  } # _tree_construction_root_element
1216    
1217  sub _reset_insertion_mode ($) {  sub _reset_insertion_mode ($) {
# Line 1813  sub _reset_insertion_mode ($) { Line 1226  sub _reset_insertion_mode ($) {
1226            
1227      ## Step 3      ## Step 3
1228      S3: {      S3: {
1229        $last = 1 if $self->{open_elements}->[0]->[0] eq $node->[0];        if ($self->{open_elements}->[0]->[0] eq $node->[0]) {
1230        if (defined $self->{inner_html_node}) {          $last = 1;
1231          if ($self->{inner_html_node}->[1] eq 'td' or          if (defined $self->{inner_html_node}) {
1232              $self->{inner_html_node}->[1] eq 'th') {            !!!cp ('t28');
1233              $node = $self->{inner_html_node};
1234            } else {
1235              die "_reset_insertion_mode: t27";
1236            }
1237          }
1238          
1239          ## Step 4..14
1240          my $new_mode;
1241          if ($node->[1] & FOREIGN_EL) {
1242            !!!cp ('t28.1');
1243            ## NOTE: Strictly spaking, the line below only applies to MathML and
1244            ## SVG elements.  Currently the HTML syntax supports only MathML and
1245            ## SVG elements as foreigners.
1246            $new_mode = IN_BODY_IM | IN_FOREIGN_CONTENT_IM;
1247          } elsif ($node->[1] == TABLE_CELL_EL) {
1248            if ($last) {
1249              !!!cp ('t28.2');
1250            #            #
1251          } else {          } else {
1252            $node = $self->{inner_html_node};            !!!cp ('t28.3');
1253              $new_mode = IN_CELL_IM;
1254          }          }
1255          } else {
1256            !!!cp ('t28.4');
1257            $new_mode = {
1258                          select => IN_SELECT_IM,
1259                          ## NOTE: |option| and |optgroup| do not set
1260                          ## insertion mode to "in select" by themselves.
1261                          tr => IN_ROW_IM,
1262                          tbody => IN_TABLE_BODY_IM,
1263                          thead => IN_TABLE_BODY_IM,
1264                          tfoot => IN_TABLE_BODY_IM,
1265                          caption => IN_CAPTION_IM,
1266                          colgroup => IN_COLUMN_GROUP_IM,
1267                          table => IN_TABLE_IM,
1268                          head => IN_BODY_IM, # not in head!
1269                          body => IN_BODY_IM,
1270                          frameset => IN_FRAMESET_IM,
1271                         }->{$node->[0]->manakai_local_name};
1272        }        }
       
       ## Step 4..13  
       my $new_mode = {  
                       select => 'in select',  
                       td => 'in cell',  
                       th => 'in cell',  
                       tr => 'in row',  
                       tbody => 'in table body',  
                       thead => 'in table head',  
                       tfoot => 'in table foot',  
                       caption => 'in caption',  
                       colgroup => 'in column group',  
                       table => 'in table',  
                       head => 'in body', # not in head!  
                       body => 'in body',  
                       frameset => 'in frameset',  
                      }->{$node->[1]};  
1273        $self->{insertion_mode} = $new_mode and return if defined $new_mode;        $self->{insertion_mode} = $new_mode and return if defined $new_mode;
1274                
1275        ## Step 14        ## Step 15
1276        if ($node->[1] eq 'html') {        if ($node->[1] == HTML_EL) {
1277          unless (defined $self->{head_element}) {          unless (defined $self->{head_element}) {
1278            $self->{insertion_mode} = 'before head';            !!!cp ('t29');
1279              $self->{insertion_mode} = BEFORE_HEAD_IM;
1280          } else {          } else {
1281            $self->{insertion_mode} = 'after head';            ## ISSUE: Can this state be reached?
1282              !!!cp ('t30');
1283              $self->{insertion_mode} = AFTER_HEAD_IM;
1284          }          }
1285          return;          return;
1286          } else {
1287            !!!cp ('t31');
1288        }        }
1289                
       ## Step 15  
       $self->{insertion_mode} = 'in body' and return if $last;  
         
1290        ## Step 16        ## Step 16
1291          $self->{insertion_mode} = IN_BODY_IM and return if $last;
1292          
1293          ## Step 17
1294        $i--;        $i--;
1295        $node = $self->{open_elements}->[$i];        $node = $self->{open_elements}->[$i];
1296                
1297        ## Step 17        ## Step 18
1298        redo S3;        redo S3;
1299      } # S3      } # S3
1300    
1301      die "$0: _reset_insertion_mode: This line should never be reached";
1302  } # _reset_insertion_mode  } # _reset_insertion_mode
1303    
1304  sub _tree_construction_main ($) {  sub _tree_construction_main ($) {
1305    my $self = shift;    my $self = shift;
1306    
   my $phase = 'main';  
   
1307    my $active_formatting_elements = [];    my $active_formatting_elements = [];
1308    
1309    my $reconstruct_active_formatting_elements = sub { # MUST    my $reconstruct_active_formatting_elements = sub { # MUST
# Line 1884  sub _tree_construction_main ($) { Line 1320  sub _tree_construction_main ($) {
1320      return if $entry->[0] eq '#marker';      return if $entry->[0] eq '#marker';
1321      for (@{$self->{open_elements}}) {      for (@{$self->{open_elements}}) {
1322        if ($entry->[0] eq $_->[0]) {        if ($entry->[0] eq $_->[0]) {
1323            !!!cp ('t32');
1324          return;          return;
1325        }        }
1326      }      }
# Line 1898  sub _tree_construction_main ($) { Line 1335  sub _tree_construction_main ($) {
1335    
1336        ## Step 6        ## Step 6
1337        if ($entry->[0] eq '#marker') {        if ($entry->[0] eq '#marker') {
1338            !!!cp ('t33_1');
1339          #          #
1340        } else {        } else {
1341          my $in_open_elements;          my $in_open_elements;
1342          OE: for (@{$self->{open_elements}}) {          OE: for (@{$self->{open_elements}}) {
1343            if ($entry->[0] eq $_->[0]) {            if ($entry->[0] eq $_->[0]) {
1344                !!!cp ('t33');
1345              $in_open_elements = 1;              $in_open_elements = 1;
1346              last OE;              last OE;
1347            }            }
1348          }          }
1349          if ($in_open_elements) {          if ($in_open_elements) {
1350              !!!cp ('t34');
1351            #            #
1352          } else {          } else {
1353              ## NOTE: <!DOCTYPE HTML><p><b><i><u></p> <p>X
1354              !!!cp ('t35');
1355            redo S4;            redo S4;
1356          }          }
1357        }        }
# Line 1932  sub _tree_construction_main ($) { Line 1374  sub _tree_construction_main ($) {
1374    
1375        ## Step 11        ## Step 11
1376        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {        unless ($clone->[0] eq $active_formatting_elements->[-1]->[0]) {
1377            !!!cp ('t36');
1378          ## Step 7'          ## Step 7'
1379          $i++;          $i++;
1380          $entry = $active_formatting_elements->[$i];          $entry = $active_formatting_elements->[$i];
1381                    
1382          redo S7;          redo S7;
1383        }        }
1384    
1385          !!!cp ('t37');
1386      } # S7      } # S7
1387    }; # $reconstruct_active_formatting_elements    }; # $reconstruct_active_formatting_elements
1388    
1389    my $clear_up_to_marker = sub {    my $clear_up_to_marker = sub {
1390      for (reverse 0..$#$active_formatting_elements) {      for (reverse 0..$#$active_formatting_elements) {
1391        if ($active_formatting_elements->[$_]->[0] eq '#marker') {        if ($active_formatting_elements->[$_]->[0] eq '#marker') {
1392            !!!cp ('t38');
1393          splice @$active_formatting_elements, $_;          splice @$active_formatting_elements, $_;
1394          return;          return;
1395        }        }
1396      }      }
1397    
1398        !!!cp ('t39');
1399    }; # $clear_up_to_marker    }; # $clear_up_to_marker
1400    
1401    my $style_start_tag = sub {    my $insert;
1402      my $style_el; !!!create-element ($style_el, 'style', $token->{attributes});  
1403      ## $self->{insertion_mode} eq 'in head' and ... (always true)    my $parse_rcdata = sub ($) {
1404      (($self->{insertion_mode} eq 'in head' and defined $self->{head_element})      my ($content_model_flag) = @_;
1405       ? $self->{head_element} : $self->{open_elements}->[-1]->[0])  
1406        ->append_child ($style_el);      ## Step 1
1407      $self->{content_model_flag} = 'CDATA';      my $start_tag_name = $token->{tag_name};
1408        !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
1409    
1410        ## Step 2
1411        $self->{content_model} = $content_model_flag; # CDATA or RCDATA
1412      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
1413                  
1414      my $text = '';      ## Step 3, 4
1415      !!!next-token;      $self->{insertion_mode} |= IN_CDATA_RCDATA_IM;
1416      while ($token->{type} eq 'character') {  
1417        $text .= $token->{data};      !!!nack ('t40.1');
       !!!next-token;  
     } # stop if non-character token or tokenizer stops tokenising  
     if (length $text) {  
       $style_el->manakai_append_text ($text);  
     }  
       
     $self->{content_model_flag} = 'PCDATA';  
                 
     if ($token->{type} eq 'end tag' and $token->{tag_name} eq 'style') {  
       ## Ignore the token  
     } else {  
       !!!parse-error (type => 'in CDATA:#'.$token->{type});  
       ## ISSUE: And ignore?  
     }  
1418      !!!next-token;      !!!next-token;
1419    }; # $style_start_tag    }; # $parse_rcdata
1420    
1421    my $script_start_tag = sub {    my $script_start_tag = sub () {
1422        ## Step 1
1423      my $script_el;      my $script_el;
1424      !!!create-element ($script_el, 'script', $token->{attributes});      !!!create-element ($script_el, $HTML_NS, 'script', $token->{attributes}, $token);
1425    
1426        ## Step 2
1427      ## TODO: mark as "parser-inserted"      ## TODO: mark as "parser-inserted"
1428    
1429      $self->{content_model_flag} = 'CDATA';      ## Step 3
1430        ## TODO: Mark as "already executed", if ...
1431    
1432        ## Step 4 (HTML5 revision 2702)
1433        $insert->($script_el);
1434        push @{$self->{open_elements}}, [$script_el, $el_category->{script}];
1435    
1436        ## Step 5
1437        $self->{content_model} = CDATA_CONTENT_MODEL;
1438      delete $self->{escape}; # MUST      delete $self->{escape}; # MUST
       
     my $text = '';  
     !!!next-token;  
     while ($token->{type} eq 'character') {  
       $text .= $token->{data};  
       !!!next-token;  
     } # stop if non-character token or tokenizer stops tokenising  
     if (length $text) {  
       $script_el->manakai_append_text ($text);  
     }  
                 
     $self->{content_model_flag} = 'PCDATA';  
1439    
1440      if ($token->{type} eq 'end tag' and      ## Step 6-7
1441          $token->{tag_name} eq 'script') {      $self->{insertion_mode} |= IN_CDATA_RCDATA_IM;
1442        ## Ignore the token  
1443      } else {      !!!nack ('t40.2');
       !!!parse-error (type => 'in CDATA:#'.$token->{type});  
       ## ISSUE: And ignore?  
       ## TODO: mark as "already executed"  
     }  
       
     if (defined $self->{inner_html_node}) {  
       ## TODO: mark as "already executed"  
     } else {  
       ## TODO: $old_insertion_point = current insertion point  
       ## TODO: insertion point = just before the next input character  
         
       (($self->{insertion_mode} eq 'in head' and defined $self->{head_element})  
        ? $self->{head_element} : $self->{open_elements}->[-1]->[0])->append_child ($script_el);  
         
       ## TODO: insertion point = $old_insertion_point (might be "undefined")  
         
       ## TODO: if there is a script that will execute as soon as the parser resume, then...  
     }  
       
1444      !!!next-token;      !!!next-token;
1445    }; # $script_start_tag    }; # $script_start_tag
1446    
1447      ## NOTE: $open_tables->[-1]->[0] is the "current table" element node.
1448      ## NOTE: $open_tables->[-1]->[1] is the "tainted" flag (OBSOLETE; unused).
1449      ## NOTE: $open_tables->[-1]->[2] is set false when non-Text node inserted.
1450      my $open_tables = [[$self->{open_elements}->[0]->[0]]];
1451    
1452    my $formatting_end_tag = sub {    my $formatting_end_tag = sub {
1453      my $tag_name = shift;      my $end_tag_token = shift;
1454        my $tag_name = $end_tag_token->{tag_name};
1455    
1456        ## NOTE: The adoption agency algorithm (AAA).
1457    
1458      FET: {      FET: {
1459        ## Step 1        ## Step 1
1460        my $formatting_element;        my $formatting_element;
1461        my $formatting_element_i_in_active;        my $formatting_element_i_in_active;
1462        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
1463          if ($active_formatting_elements->[$_]->[1] eq $tag_name) {          if ($active_formatting_elements->[$_]->[0] eq '#marker') {
1464              !!!cp ('t52');
1465              last AFE;
1466            } elsif ($active_formatting_elements->[$_]->[0]->manakai_local_name
1467                         eq $tag_name) {
1468              !!!cp ('t51');
1469            $formatting_element = $active_formatting_elements->[$_];            $formatting_element = $active_formatting_elements->[$_];
1470            $formatting_element_i_in_active = $_;            $formatting_element_i_in_active = $_;
1471            last AFE;            last AFE;
         } elsif ($active_formatting_elements->[$_]->[0] eq '#marker') {  
           last AFE;  
1472          }          }
1473        } # AFE        } # AFE
1474        unless (defined $formatting_element) {        unless (defined $formatting_element) {
1475          !!!parse-error (type => 'unmatched end tag:'.$tag_name);          !!!cp ('t53');
1476            !!!parse-error (type => 'unmatched end tag', text => $tag_name, token => $end_tag_token);
1477          ## Ignore the token          ## Ignore the token
1478          !!!next-token;          !!!next-token;
1479          return;          return;
# Line 2055  sub _tree_construction_main ($) { Line 1485  sub _tree_construction_main ($) {
1485          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
1486          if ($node->[0] eq $formatting_element->[0]) {          if ($node->[0] eq $formatting_element->[0]) {
1487            if ($in_scope) {            if ($in_scope) {
1488                !!!cp ('t54');
1489              $formatting_element_i_in_open = $_;              $formatting_element_i_in_open = $_;
1490              last INSCOPE;              last INSCOPE;
1491            } else { # in open elements but not in scope            } else { # in open elements but not in scope
1492              !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});              !!!cp ('t55');
1493                !!!parse-error (type => 'unmatched end tag',
1494                                text => $token->{tag_name},
1495                                token => $end_tag_token);
1496              ## Ignore the token              ## Ignore the token
1497              !!!next-token;              !!!next-token;
1498              return;              return;
1499            }            }
1500          } elsif ({          } elsif ($node->[1] & SCOPING_EL) {
1501                    table => 1, caption => 1, td => 1, th => 1,            !!!cp ('t56');
                   button => 1, marquee => 1, object => 1, html => 1,  
                  }->{$node->[1]}) {  
1502            $in_scope = 0;            $in_scope = 0;
1503          }          }
1504        } # INSCOPE        } # INSCOPE
1505        unless (defined $formatting_element_i_in_open) {        unless (defined $formatting_element_i_in_open) {
1506          !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});          !!!cp ('t57');
1507            !!!parse-error (type => 'unmatched end tag',
1508                            text => $token->{tag_name},
1509                            token => $end_tag_token);
1510          pop @$active_formatting_elements; # $formatting_element          pop @$active_formatting_elements; # $formatting_element
1511          !!!next-token; ## TODO: ok?          !!!next-token; ## TODO: ok?
1512          return;          return;
1513        }        }
1514        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {        if (not $self->{open_elements}->[-1]->[0] eq $formatting_element->[0]) {
1515          !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          !!!cp ('t58');
1516            !!!parse-error (type => 'not closed',
1517                            text => $self->{open_elements}->[-1]->[0]
1518                                ->manakai_local_name,
1519                            token => $end_tag_token);
1520        }        }
1521                
1522        ## Step 2        ## Step 2
# Line 2085  sub _tree_construction_main ($) { Line 1524  sub _tree_construction_main ($) {
1524        my $furthest_block_i_in_open;        my $furthest_block_i_in_open;
1525        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
1526          my $node = $self->{open_elements}->[$_];          my $node = $self->{open_elements}->[$_];
1527          if (not $formatting_category->{$node->[1]} and          if (not ($node->[1] & FORMATTING_EL) and
1528              #not $phrasing_category->{$node->[1]} and              #not $phrasing_category->{$node->[1]} and
1529              ($special_category->{$node->[1]} or              ($node->[1] & SPECIAL_EL or
1530               $scoping_category->{$node->[1]})) {               $node->[1] & SCOPING_EL)) { ## Scoping is redundant, maybe
1531              !!!cp ('t59');
1532            $furthest_block = $node;            $furthest_block = $node;
1533            $furthest_block_i_in_open = $_;            $furthest_block_i_in_open = $_;
1534              ## NOTE: The topmost (eldest) node.
1535          } elsif ($node->[0] eq $formatting_element->[0]) {          } elsif ($node->[0] eq $formatting_element->[0]) {
1536              !!!cp ('t60');
1537            last OE;            last OE;
1538          }          }
1539        } # OE        } # OE
1540                
1541        ## Step 3        ## Step 3
1542        unless (defined $furthest_block) { # MUST        unless (defined $furthest_block) { # MUST
1543            !!!cp ('t61');
1544          splice @{$self->{open_elements}}, $formatting_element_i_in_open;          splice @{$self->{open_elements}}, $formatting_element_i_in_open;
1545          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;          splice @$active_formatting_elements, $formatting_element_i_in_active, 1;
1546          !!!next-token;          !!!next-token;
# Line 2110  sub _tree_construction_main ($) { Line 1553  sub _tree_construction_main ($) {
1553        ## Step 5        ## Step 5
1554        my $furthest_block_parent = $furthest_block->[0]->parent_node;        my $furthest_block_parent = $furthest_block->[0]->parent_node;
1555        if (defined $furthest_block_parent) {        if (defined $furthest_block_parent) {
1556            !!!cp ('t62');
1557          $furthest_block_parent->remove_child ($furthest_block->[0]);          $furthest_block_parent->remove_child ($furthest_block->[0]);
1558        }        }
1559                
# Line 2132  sub _tree_construction_main ($) { Line 1576  sub _tree_construction_main ($) {
1576          S7S2: {          S7S2: {
1577            for (reverse 0..$#$active_formatting_elements) {            for (reverse 0..$#$active_formatting_elements) {
1578              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {              if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
1579                  !!!cp ('t63');
1580                $node_i_in_active = $_;                $node_i_in_active = $_;
1581                last S7S2;                last S7S2;
1582              }              }
# Line 2145  sub _tree_construction_main ($) { Line 1590  sub _tree_construction_main ($) {
1590                    
1591          ## Step 4          ## Step 4
1592          if ($last_node->[0] eq $furthest_block->[0]) {          if ($last_node->[0] eq $furthest_block->[0]) {
1593              !!!cp ('t64');
1594            $bookmark_prev_el = $node->[0];            $bookmark_prev_el = $node->[0];
1595          }          }
1596                    
1597          ## Step 5          ## Step 5
1598          if ($node->[0]->has_child_nodes ()) {          if ($node->[0]->has_child_nodes ()) {
1599              !!!cp ('t65');
1600            my $clone = [$node->[0]->clone_node (0), $node->[1]];            my $clone = [$node->[0]->clone_node (0), $node->[1]];
1601            $active_formatting_elements->[$node_i_in_active] = $clone;            $active_formatting_elements->[$node_i_in_active] = $clone;
1602            $self->{open_elements}->[$node_i_in_open] = $clone;            $self->{open_elements}->[$node_i_in_open] = $clone;
# Line 2167  sub _tree_construction_main ($) { Line 1614  sub _tree_construction_main ($) {
1614        } # S7          } # S7  
1615                
1616        ## Step 8        ## Step 8
1617        $common_ancestor_node->[0]->append_child ($last_node->[0]);        if ($common_ancestor_node->[1] & TABLE_ROWS_EL) {
1618            ## Foster parenting.
1619            my $foster_parent_element;
1620            my $next_sibling;
1621            OE: for (reverse 0..$#{$self->{open_elements}}) {
1622              if ($self->{open_elements}->[$_]->[1] == TABLE_EL) {
1623                !!!cp ('t65.2');
1624                $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
1625                $next_sibling = $self->{open_elements}->[$_]->[0];
1626                undef $next_sibling
1627                    unless $next_sibling->parent_node eq $foster_parent_element;
1628                last OE;
1629              }
1630            } # OE
1631            $foster_parent_element ||= $self->{open_elements}->[0]->[0];
1632    
1633            $foster_parent_element->insert_before ($last_node->[0], $next_sibling);
1634            $open_tables->[-1]->[1] = 1; # tainted
1635          } else {
1636            !!!cp ('t65.3');
1637            $common_ancestor_node->[0]->append_child ($last_node->[0]);
1638          }
1639                
1640        ## Step 9        ## Step 9
1641        my $clone = [$formatting_element->[0]->clone_node (0),        my $clone = [$formatting_element->[0]->clone_node (0),
# Line 2184  sub _tree_construction_main ($) { Line 1652  sub _tree_construction_main ($) {
1652        my $i;        my $i;
1653        AFE: for (reverse 0..$#$active_formatting_elements) {        AFE: for (reverse 0..$#$active_formatting_elements) {
1654          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {          if ($active_formatting_elements->[$_]->[0] eq $formatting_element->[0]) {
1655              !!!cp ('t66');
1656            splice @$active_formatting_elements, $_, 1;            splice @$active_formatting_elements, $_, 1;
1657            $i-- and last AFE if defined $i;            $i-- and last AFE if defined $i;
1658          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {          } elsif ($active_formatting_elements->[$_]->[0] eq $bookmark_prev_el) {
1659              !!!cp ('t67');
1660            $i = $_;            $i = $_;
1661          }          }
1662        } # AFE        } # AFE
# Line 2196  sub _tree_construction_main ($) { Line 1666  sub _tree_construction_main ($) {
1666        undef $i;        undef $i;
1667        OE: for (reverse 0..$#{$self->{open_elements}}) {        OE: for (reverse 0..$#{$self->{open_elements}}) {
1668          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {          if ($self->{open_elements}->[$_]->[0] eq $formatting_element->[0]) {
1669              !!!cp ('t68');
1670            splice @{$self->{open_elements}}, $_, 1;            splice @{$self->{open_elements}}, $_, 1;
1671            $i-- and last OE if defined $i;            $i-- and last OE if defined $i;
1672          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {          } elsif ($self->{open_elements}->[$_]->[0] eq $furthest_block->[0]) {
1673              !!!cp ('t69');
1674            $i = $_;            $i = $_;
1675          }          }
1676        } # OE        } # OE
1677        splice @{$self->{open_elements}}, $i + 1, 1, $clone;        splice @{$self->{open_elements}}, $i + 1, 0, $clone;
1678                
1679        ## Step 14        ## Step 14
1680        redo FET;        redo FET;
1681      } # FET      } # FET
1682    }; # $formatting_end_tag    }; # $formatting_end_tag
1683    
1684    my $insert_to_current = sub {    $insert = my $insert_to_current = sub {
1685      $self->{open_elements}->[-1]->[0]->append_child (shift);      $self->{open_elements}->[-1]->[0]->append_child ($_[0]);
1686    }; # $insert_to_current    }; # $insert_to_current
1687    
1688      ## Foster parenting.  Note that there are three "foster parenting"
1689      ## code in the parser: for elements (this one), for texts, and for
1690      ## elements in the AAA code.
1691    my $insert_to_foster = sub {    my $insert_to_foster = sub {
1692                         my $child = shift;      my $child = shift;
1693                         if ({      if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
1694                              table => 1, tbody => 1, tfoot => 1,        # MUST
1695                              thead => 1, tr => 1,        my $foster_parent_element;
1696                             }->{$self->{open_elements}->[-1]->[1]}) {        my $next_sibling;
1697                           # MUST        OE: for (reverse 0..$#{$self->{open_elements}}) {
1698                           my $foster_parent_element;          if ($self->{open_elements}->[$_]->[1] == TABLE_EL) {
1699                           my $next_sibling;            !!!cp ('t71');
1700                           OE: for (reverse 0..$#{$self->{open_elements}}) {            $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
1701                             if ($self->{open_elements}->[$_]->[1] eq 'table') {            $next_sibling = $self->{open_elements}->[$_]->[0];
1702                               my $parent = $self->{open_elements}->[$_]->[0]->parent_node;            undef $next_sibling
1703                               if (defined $parent and $parent->node_type == 1) {                unless $next_sibling->parent_node eq $foster_parent_element;
1704                                 $foster_parent_element = $parent;            last OE;
1705                                 $next_sibling = $self->{open_elements}->[$_]->[0];          }
1706                               } else {        } # OE
1707                                 $foster_parent_element        $foster_parent_element ||= $self->{open_elements}->[0]->[0];
1708                                   = $self->{open_elements}->[$_ - 1]->[0];  
1709                               }        $foster_parent_element->insert_before ($child, $next_sibling);
1710                               last OE;        $open_tables->[-1]->[1] = 1; # tainted
1711                             }      } else {
1712                           } # OE        !!!cp ('t72');
1713                           $foster_parent_element = $self->{open_elements}->[0]->[0]        $self->{open_elements}->[-1]->[0]->append_child ($child);
1714                             unless defined $foster_parent_element;      }
                          $foster_parent_element->insert_before  
                            ($child, $next_sibling);  
                        } else {  
                          $self->{open_elements}->[-1]->[0]->append_child ($child);  
                        }  
1715    }; # $insert_to_foster    }; # $insert_to_foster
1716    
1717    my $in_body = sub {    ## NOTE: Insert a character (MUST): When a character is inserted, if
1718      my $insert = shift;    ## the last node that was inserted by the parser is a Text node and
1719      if ($token->{type} eq 'start tag') {    ## the character has to be inserted after that node, then the
1720        if ($token->{tag_name} eq 'script') {    ## character is appended to the Text node.  However, if any other
1721          $script_start_tag->();    ## node is inserted by the parser, then a new Text node is created
1722          return;    ## and the character is appended as that Text node.  If I'm not
1723        } elsif ($token->{tag_name} eq 'style') {    ## wrong, for a parser with scripting disabled, there are only two
1724          $style_start_tag->();    ## cases where this occurs.  One is the case where an element node
1725          return;    ## is inserted to the |head| element.  This is covered by using the
1726        } elsif ({    ## |$self->{head_element_inserted}| flag.  Another is the case where
1727                  base => 1, link => 1, meta => 1,    ## an element or comment is inserted into the |table| subtree while
1728                 }->{$token->{tag_name}}) {    ## foster parenting happens.  This is covered by using the [2] flag
1729          !!!parse-error (type => 'in body:'.$token->{tag_name});    ## of the |$open_tables| structure.  All other cases are handled
1730          ## NOTE: This is an "as if in head" code clone    ## simply by calling |manakai_append_text| method.
1731          my $el;  
1732          !!!create-element ($el, $token->{tag_name}, $token->{attributes});    ## TODO: |<body><script>document.write("a<br>");
1733          if (defined $self->{head_element}) {    ## document.body.removeChild (document.body.lastChild);
1734            $self->{head_element}->append_child ($el);    ## document.write ("b")</script>|
1735          } else {  
1736            $insert->($el);    B: while (1) {
1737          }  
1738                ## The "in table text" insertion mode.
1739          !!!next-token;      if ($self->{insertion_mode} & TABLE_IMS and
1740          return;          not $self->{insertion_mode} & IN_FOREIGN_CONTENT_IM and
1741        } elsif ($token->{tag_name} eq 'title') {          not $self->{insertion_mode} & IN_CDATA_RCDATA_IM) {
1742          !!!parse-error (type => 'in body:title');        C: {
1743          ## NOTE: There is an "as if in head" code clone          my $s;
1744          my $title_el;          if ($token->{type} == CHARACTER_TOKEN) {
1745          !!!create-element ($title_el, 'title', $token->{attributes});            !!!cp ('t194');
1746          (defined $self->{head_element} ? $self->{head_element} : $self->{open_elements}->[-1]->[0])            $self->{pending_chars} ||= [];
1747            ->append_child ($title_el);            push @{$self->{pending_chars}}, $token;
         $self->{content_model_flag} = 'RCDATA';  
         delete $self->{escape}; # MUST  
           
         my $text = '';  
         !!!next-token;  
         while ($token->{type} eq 'character') {  
           $text .= $token->{data};  
1748            !!!next-token;            !!!next-token;
1749          }            next B;
         if (length $text) {  
           $title_el->manakai_append_text ($text);  
         }  
           
         $self->{content_model_flag} = 'PCDATA';  
           
         if ($token->{type} eq 'end tag' and  
             $token->{tag_name} eq 'title') {  
           ## Ignore the token  
1750          } else {          } else {
1751            !!!parse-error (type => 'in RCDATA:#'.$token->{type});            if ($self->{pending_chars}) {
1752            ## ISSUE: And ignore?              $s = join '', map { $_->{data} } @{$self->{pending_chars}};
1753          }              delete $self->{pending_chars};
1754          !!!next-token;              if ($s =~ /[^\x09\x0A\x0C\x0D\x20]/) {
1755          return;                !!!cp ('t195');
1756        } elsif ($token->{tag_name} eq 'body') {                #
1757          !!!parse-error (type => 'in body:body');              } else {
1758                                !!!cp ('t195.1');
1759          if (@{$self->{open_elements}} == 1 or                #$self->{open_elements}->[-1]->[0]->manakai_append_text ($s);
1760              $self->{open_elements}->[1]->[1] ne 'body') {                $self->{open_elements}->[-1]->[0]->append_child
1761            ## Ignore the token                    ($self->{document}->create_text_node ($s));
1762          } else {                last C;
           my $body_el = $self->{open_elements}->[1]->[0];  
           for my $attr_name (keys %{$token->{attributes}}) {  
             unless ($body_el->has_attribute_ns (undef, $attr_name)) {  
               $body_el->set_attribute_ns  
                 (undef, [undef, $attr_name],  
                  $token->{attributes}->{$attr_name}->{value});  
1763              }              }
1764              } else {
1765                !!!cp ('t195.2');
1766                last C;
1767            }            }
1768          }          }
1769          !!!next-token;  
1770          return;          ## Foster parenting.
1771        } elsif ({          !!!parse-error (type => 'in table:#text', token => $token);
1772                  address => 1, blockquote => 1, center => 1, dir => 1,  
1773                  div => 1, dl => 1, fieldset => 1, listing => 1,          ## NOTE: As if in body, but insert into the foster parent element.
1774                  menu => 1, ol => 1, p => 1, ul => 1,          $reconstruct_active_formatting_elements->($insert_to_foster);
1775                  pre => 1,              
1776                 }->{$token->{tag_name}}) {          if ($self->{open_elements}->[-1]->[1] & TABLE_ROWS_EL) {
1777          ## has a p element in scope            # MUST
1778          INSCOPE: for (reverse @{$self->{open_elements}}) {            my $foster_parent_element;
1779            if ($_->[1] eq 'p') {            my $next_sibling;
1780              !!!back-token;            OE: for (reverse 0..$#{$self->{open_elements}}) {
1781              $token = {type => 'end tag', tag_name => 'p'};              if ($self->{open_elements}->[$_]->[1] == TABLE_EL) {
1782              return;                !!!cp ('t197');
1783            } elsif ({                $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];
1784                      table => 1, caption => 1, td => 1, th => 1,                $next_sibling = $self->{open_elements}->[$_]->[0];
1785                      button => 1, marquee => 1, object => 1, html => 1,                undef $next_sibling
1786                     }->{$_->[1]}) {                  unless $next_sibling->parent_node eq $foster_parent_element;
1787              last INSCOPE;                last OE;
1788            }              }
1789          } # INSCOPE            } # OE
1790                        $foster_parent_element ||= $self->{open_elements}->[0]->[0];
1791          !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
1792          if ($token->{tag_name} eq 'pre') {            !!!cp ('t199');
1793            !!!next-token;            $foster_parent_element->insert_before
1794            if ($token->{type} eq 'character') {                ($self->{document}->create_text_node ($s), $next_sibling);
1795              $token->{data} =~ s/^\x0A//;  
1796              unless (length $token->{data}) {            $open_tables->[-1]->[1] = 1; # tainted
1797                !!!next-token;            $open_tables->[-1]->[2] = 1; # ~node inserted
1798              }          } else {
1799            }            ## NOTE: Fragment case or in a foster parent'ed element
1800          } else {            ## (e.g. |<table><span>a|).  In fragment case, whether the
1801            !!!next-token;            ## character is appended to existing node or a new node is
1802              ## created is irrelevant, since the foster parent'ed nodes
1803              ## are discarded and fragment parsing does not invoke any
1804              ## script.
1805              !!!cp ('t200');
1806              $self->{open_elements}->[-1]->[0]->manakai_append_text ($s);
1807            }
1808          } # C
1809        } # TABLE_IMS
1810    
1811        if ($token->{type} == DOCTYPE_TOKEN) {
1812          !!!cp ('t73');
1813          !!!parse-error (type => 'in html:#DOCTYPE', token => $token);
1814          ## Ignore the token
1815          ## Stay in the phase
1816          !!!next-token;
1817          next B;
1818        } elsif ($token->{type} == START_TAG_TOKEN and
1819                 $token->{tag_name} eq 'html') {
1820          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
1821            !!!cp ('t79');
1822            !!!parse-error (type => 'after html', text => 'html', token => $token);
1823            $self->{insertion_mode} = AFTER_BODY_IM;
1824          } elsif ($self->{insertion_mode} == AFTER_HTML_FRAMESET_IM) {
1825            !!!cp ('t80');
1826            !!!parse-error (type => 'after html', text => 'html', token => $token);
1827            $self->{insertion_mode} = AFTER_FRAMESET_IM;
1828          } else {
1829            !!!cp ('t81');
1830          }
1831    
1832          !!!cp ('t82');
1833          !!!parse-error (type => 'not first start tag', token => $token);
1834          my $top_el = $self->{open_elements}->[0]->[0];
1835          for my $attr_name (keys %{$token->{attributes}}) {
1836            unless ($top_el->has_attribute_ns (undef, $attr_name)) {
1837              !!!cp ('t84');
1838              $top_el->set_attribute_ns
1839                (undef, [undef, $attr_name],
1840                 $token->{attributes}->{$attr_name}->{value});
1841          }          }
1842          return;        }
1843        } elsif ($token->{tag_name} eq 'form') {        !!!nack ('t84.1');
1844          if (defined $self->{form_element}) {        !!!next-token;
1845            !!!parse-error (type => 'in form:form');        next B;
1846            ## Ignore the token      } elsif ($token->{type} == COMMENT_TOKEN) {
1847            !!!next-token;        my $comment = $self->{document}->create_comment ($token->{data});
1848            return;        if ($self->{insertion_mode} & AFTER_HTML_IMS) {
1849            !!!cp ('t85');
1850            $self->{document}->append_child ($comment);
1851          } elsif ($self->{insertion_mode} == AFTER_BODY_IM) {
1852            !!!cp ('t86');
1853            $self->{open_elements}->[0]->[0]->append_child ($comment);
1854          } else {
1855            !!!cp ('t87');
1856            $self->{open_elements}->[-1]->[0]->append_child ($comment);
1857            $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
1858          }
1859          !!!next-token;
1860          next B;
1861        } elsif ($self->{insertion_mode} & IN_CDATA_RCDATA_IM) {
1862          if ($token->{type} == CHARACTER_TOKEN) {
1863            $token->{data} =~ s/^\x0A// if $self->{ignore_newline};
1864            delete $self->{ignore_newline};
1865    
1866            if (length $token->{data}) {
1867              !!!cp ('t43');
1868              $self->{open_elements}->[-1]->[0]->manakai_append_text
1869                  ($token->{data});
1870          } else {          } else {
1871            ## has a p element in scope            !!!cp ('t43.1');
           INSCOPE: for (reverse @{$self->{open_elements}}) {  
             if ($_->[1] eq 'p') {  
               !!!back-token;  
               $token = {type => 'end tag', tag_name => 'p'};  
               return;  
             } elsif ({  
                       table => 1, caption => 1, td => 1, th => 1,  
                       button => 1, marquee => 1, object => 1, html => 1,  
                      }->{$_->[1]}) {  
               last INSCOPE;  
             }  
           } # INSCOPE  
               
           !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           $self->{form_element} = $self->{open_elements}->[-1]->[0];  
           !!!next-token;  
           return;  
1872          }          }
       } elsif ($token->{tag_name} eq 'li') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'p'};  
             return;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## Step 1  
         my $i = -1;  
         my $node = $self->{open_elements}->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'li') {  
             if ($i != -1) {  
               !!!parse-error (type => 'end tag missing:'.  
                               $self->{open_elements}->[-1]->[1]);  
               ## TODO: test  
             }  
             splice @{$self->{open_elements}}, $i;  
             last LI;  
           }  
             
           ## Step 3  
           if (not $formatting_category->{$node->[1]} and  
               #not $phrasing_category->{$node->[1]} and  
               ($special_category->{$node->[1]} or  
                $scoping_category->{$node->[1]}) and  
               $node->[1] ne 'address' and $node->[1] ne 'div') {  
             last LI;  
           }  
             
           ## Step 4  
           $i--;  
           $node = $self->{open_elements}->[$i];  
           redo LI;  
         } # LI  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'dd' or $token->{tag_name} eq 'dt') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'p'};  
             return;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## Step 1  
         my $i = -1;  
         my $node = $self->{open_elements}->[$i];  
         LI: {  
           ## Step 2  
           if ($node->[1] eq 'dt' or $node->[1] eq 'dd') {  
             if ($i != -1) {  
               !!!parse-error (type => 'end tag missing:'.  
                               $self->{open_elements}->[-1]->[1]);  
               ## TODO: test  
             }  
             splice @{$self->{open_elements}}, $i;  
             last LI;  
           }  
             
           ## Step 3  
           if (not $formatting_category->{$node->[1]} and  
               #not $phrasing_category->{$node->[1]} and  
               ($special_category->{$node->[1]} or  
                $scoping_category->{$node->[1]}) and  
               $node->[1] ne 'address' and $node->[1] ne 'div') {  
             last LI;  
           }  
             
           ## Step 4  
           $i--;  
           $node = $self->{open_elements}->[$i];  
           redo LI;  
         } # LI  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'plaintext') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'p'};  
             return;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
             
         $self->{content_model_flag} = 'PLAINTEXT';  
             
1873          !!!next-token;          !!!next-token;
1874          return;          next B;
1875        } elsif ({        } elsif ($token->{type} == END_TAG_TOKEN) {
1876                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,          delete $self->{ignore_newline};
1877                 }->{$token->{tag_name}}) {  
1878          ## has a p element in scope          if ($token->{tag_name} eq 'script') {
1879          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            !!!cp ('t50');
           my $node = $self->{open_elements}->[$_];  
           if ($node->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'p'};  
             return;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         ## has an element in scope  
         my $i;  
         INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
           my $node = $self->{open_elements}->[$_];  
           if ({  
                h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
               }->{$node->[1]}) {  
             $i = $_;  
             last INSCOPE;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         if (defined $i) {  
           !!!parse-error (type => 'in hn:hn');  
           splice @{$self->{open_elements}}, $i;  
         }  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
1880                        
1881          !!!next-token;            ## Para 1-2
1882          return;            my $script = pop @{$self->{open_elements}};
       } elsif ($token->{tag_name} eq 'a') {  
         AFE: for my $i (reverse 0..$#$active_formatting_elements) {  
           my $node = $active_formatting_elements->[$i];  
           if ($node->[1] eq 'a') {  
             !!!parse-error (type => 'in a:a');  
               
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'a'};  
             $formatting_end_tag->($token->{tag_name});  
               
             AFE2: for (reverse 0..$#$active_formatting_elements) {  
               if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {  
                 splice @$active_formatting_elements, $_, 1;  
                 last AFE2;  
               }  
             } # AFE2  
             OE: for (reverse 0..$#{$self->{open_elements}}) {  
               if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {  
                 splice @{$self->{open_elements}}, $_, 1;  
                 last OE;  
               }  
             } # OE  
             last AFE;  
           } elsif ($node->[0] eq '#marker') {  
             last AFE;  
           }  
         } # AFE  
1883                        
1884          $reconstruct_active_formatting_elements->($insert_to_current);            ## Para 3
1885              $self->{insertion_mode} &= ~ IN_CDATA_RCDATA_IM;
1886    
1887          !!!insert-element-t ($token->{tag_name}, $token->{attributes});            ## Para 4
1888          push @$active_formatting_elements, $self->{open_elements}->[-1];            ## TODO: $old_insertion_point = $current_insertion_point;
1889              ## TODO: $current_insertion_point = just before $self->{nc};
1890    
1891              ## Para 5
1892              ## TODO: Run the $script->[0].
1893    
1894              ## Para 6
1895              ## TODO: $current_insertion_point = $old_insertion_point;
1896    
1897              ## Para 7
1898              ## TODO: if ($pending_external_script) {
1899                ## TODO: ...
1900              ## TODO: }
1901    
1902          !!!next-token;            !!!next-token;
1903          return;            next B;
1904        } elsif ({          } else {
1905                  b => 1, big => 1, em => 1, font => 1, i => 1,            !!!cp ('t42');
1906                  nobr => 1, s => 1, small => 1, strile => 1,  
1907                  strong => 1, tt => 1, u => 1,            pop @{$self->{open_elements}};
                }->{$token->{tag_name}}) {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, $self->{open_elements}->[-1];  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'button') {  
         ## has a button element in scope  
         INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
           my $node = $self->{open_elements}->[$_];  
           if ($node->[1] eq 'button') {  
             !!!parse-error (type => 'in button:button');  
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'button'};  
             return;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         $reconstruct_active_formatting_elements->($insert_to_current);  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, ['#marker', ''];  
1908    
1909          !!!next-token;            $self->{insertion_mode} &= ~ IN_CDATA_RCDATA_IM;
1910          return;            !!!next-token;
1911        } elsif ($token->{tag_name} eq 'marquee' or            next B;
                $token->{tag_name} eq 'object') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
         push @$active_formatting_elements, ['#marker', ''];  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'xmp') {  
         $reconstruct_active_formatting_elements->($insert_to_current);  
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           
         $self->{content_model_flag} = 'CDATA';  
         delete $self->{escape}; # MUST  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'table') {  
         ## has a p element in scope  
         INSCOPE: for (reverse @{$self->{open_elements}}) {  
           if ($_->[1] eq 'p') {  
             !!!back-token;  
             $token = {type => 'end tag', tag_name => 'p'};  
             return;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$_->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
             
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
             
         $self->{insertion_mode} = 'in table';  
             
         !!!next-token;  
         return;  
       } elsif ({  
                 area => 1, basefont => 1, bgsound => 1, br => 1,  
                 embed => 1, img => 1, param => 1, spacer => 1, wbr => 1,  
                 image => 1,  
                }->{$token->{tag_name}}) {  
         if ($token->{tag_name} eq 'image') {  
           !!!parse-error (type => 'image');  
           $token->{tag_name} = 'img';  
1912          }          }
1913                  } elsif ($token->{type} == END_OF_FILE_TOKEN) {
1914          $reconstruct_active_formatting_elements->($insert_to_current);          delete $self->{ignore_newline};
1915            
1916          !!!insert-element-t ($token->{tag_name}, $token->{attributes});          !!!cp ('t44');
1917            !!!parse-error (type => 'not closed',
1918                            text => $self->{open_elements}->[-1]->[0]
1919                                ->manakai_local_name,
1920                            token => $token);
1921    
1922            #if ($self->{open_elements}->[-1]->[1] == SCRIPT_EL) {
1923            #  ## TODO: Mark as "already executed"
1924            #}
1925    
1926          pop @{$self->{open_elements}};          pop @{$self->{open_elements}};
1927            
1928            $self->{insertion_mode} &= ~ IN_CDATA_RCDATA_IM;
1929            ## Reprocess.
1930            next B;
1931          } else {
1932            die "$0: $token->{type}: In CDATA/RCDATA: Unknown token type";        
1933          }
1934        } elsif ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
1935          if ($token->{type} == CHARACTER_TOKEN) {
1936            !!!cp ('t87.1');
1937            $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
1938          !!!next-token;          !!!next-token;
1939          return;          next B;
1940        } elsif ($token->{tag_name} eq 'hr') {        } elsif ($token->{type} == START_TAG_TOKEN) {
1941          ## has a p element in scope          if ((not {mglyph => 1, malignmark => 1}->{$token->{tag_name}} and
1942          INSCOPE: for (reverse @{$self->{open_elements}}) {               $self->{open_elements}->[-1]->[1] & FOREIGN_FLOW_CONTENT_EL) or
1943            if ($_->[1] eq 'p') {              not ($self->{open_elements}->[-1]->[1] & FOREIGN_EL) or
1944              !!!back-token;              ($token->{tag_name} eq 'svg' and
1945              $token = {type => 'end tag', tag_name => 'p'};               $self->{open_elements}->[-1]->[1] == MML_AXML_EL)) {
1946              return;            ## NOTE: "using the rules for secondary insertion mode"then"continue"
1947            } elsif ({            !!!cp ('t87.2');
1948                      table => 1, caption => 1, td => 1, th => 1,            #
1949                      button => 1, marquee => 1, object => 1, html => 1,          } elsif ({
1950                     }->{$_->[1]}) {                    b => 1, big => 1, blockquote => 1, body => 1, br => 1,
1951              last INSCOPE;                    center => 1, code => 1, dd => 1, div => 1, dl => 1, dt => 1,
1952                      em => 1, embed => 1, h1 => 1, h2 => 1, h3 => 1,
1953                      h4 => 1, h5 => 1, h6 => 1, head => 1, hr => 1, i => 1,
1954                      img => 1, li => 1, listing => 1, menu => 1, meta => 1,
1955                      nobr => 1, ol => 1, p => 1, pre => 1, ruby => 1, s => 1,
1956                      small => 1, span => 1, strong => 1, strike => 1, sub => 1,
1957                      sup => 1, table => 1, tt => 1, u => 1, ul => 1, var => 1,
1958                     }->{$token->{tag_name}} or
1959                     ($token->{tag_name} eq 'font' and
1960                      ($token->{attributes}->{color} or
1961                       $token->{attributes}->{face} or
1962                       $token->{attributes}->{size}))) {
1963              !!!cp ('t87.2');
1964              !!!parse-error (type => 'not closed',
1965                              text => $self->{open_elements}->[-1]->[0]
1966                                  ->manakai_local_name,
1967                              token => $token);
1968    
1969              pop @{$self->{open_elements}}
1970                  while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
1971    
1972              $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
1973              ## Reprocess.
1974              next B;
1975            } else {
1976              my $nsuri = $self->{open_elements}->[-1]->[0]->namespace_uri;
1977              my $tag_name = $token->{tag_name};
1978              if ($nsuri eq $SVG_NS) {
1979                $tag_name = {
1980                   altglyph => 'altGlyph',
1981                   altglyphdef => 'altGlyphDef',
1982                   altglyphitem => 'altGlyphItem',
1983                   animatecolor => 'animateColor',
1984                   animatemotion => 'animateMotion',
1985                   animatetransform => 'animateTransform',
1986                   clippath => 'clipPath',
1987                   feblend => 'feBlend',
1988                   fecolormatrix => 'feColorMatrix',
1989                   fecomponenttransfer => 'feComponentTransfer',
1990                   fecomposite => 'feComposite',
1991                   feconvolvematrix => 'feConvolveMatrix',
1992                   fediffuselighting => 'feDiffuseLighting',
1993                   fedisplacementmap => 'feDisplacementMap',
1994                   fedistantlight => 'feDistantLight',
1995                   feflood => 'feFlood',
1996                   fefunca => 'feFuncA',
1997                   fefuncb => 'feFuncB',
1998                   fefuncg => 'feFuncG',
1999                   fefuncr => 'feFuncR',
2000                   fegaussianblur => 'feGaussianBlur',
2001                   feimage => 'feImage',
2002                   femerge => 'feMerge',
2003                   femergenode => 'feMergeNode',
2004                   femorphology => 'feMorphology',
2005                   feoffset => 'feOffset',
2006                   fepointlight => 'fePointLight',
2007                   fespecularlighting => 'feSpecularLighting',
2008                   fespotlight => 'feSpotLight',
2009                   fetile => 'feTile',
2010                   feturbulence => 'feTurbulence',
2011                   foreignobject => 'foreignObject',
2012                   glyphref => 'glyphRef',
2013                   lineargradient => 'linearGradient',
2014                   radialgradient => 'radialGradient',
2015                   #solidcolor => 'solidColor', ## NOTE: Commented in spec (SVG1.2)
2016                   textpath => 'textPath',  
2017                }->{$tag_name} || $tag_name;
2018            }            }
2019          } # INSCOPE  
2020                        ## "adjust SVG attributes" (SVG only) - done in insert-element-f
2021          !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
2022          pop @{$self->{open_elements}};            ## "adjust foreign attributes" - done in insert-element-f
2023              
2024          !!!next-token;            !!!insert-element-f ($nsuri, $tag_name, $token->{attributes}, $token);
2025          return;  
2026        } elsif ($token->{tag_name} eq 'input') {            if ($self->{self_closing}) {
2027          $reconstruct_active_formatting_elements->($insert_to_current);              pop @{$self->{open_elements}};
2028                        !!!ack ('t87.3');
2029          !!!insert-element-t ($token->{tag_name}, $token->{attributes});            } else {
2030          ## TODO: associate with $self->{form_element} if defined              !!!cp ('t87.4');
         pop @{$self->{open_elements}};  
           
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'isindex') {  
         !!!parse-error (type => 'isindex');  
           
         if (defined $self->{form_element}) {  
           ## Ignore the token  
           !!!next-token;  
           return;  
         } else {  
           my $at = $token->{attributes};  
           $at->{name} = {name => 'name', value => 'isindex'};  
           my @tokens = (  
                         {type => 'start tag', tag_name => 'form'},  
                         {type => 'start tag', tag_name => 'hr'},  
                         {type => 'start tag', tag_name => 'p'},  
                         {type => 'start tag', tag_name => 'label'},  
                         {type => 'character',  
                          data => 'This is a searchable index. Insert your search keywords here: '}, # SHOULD  
                         ## TODO: make this configurable  
                         {type => 'start tag', tag_name => 'input', attributes => $at},  
                         #{type => 'character', data => ''}, # SHOULD  
                         {type => 'end tag', tag_name => 'label'},  
                         {type => 'end tag', tag_name => 'p'},  
                         {type => 'start tag', tag_name => 'hr'},  
                         {type => 'end tag', tag_name => 'form'},  
                        );  
           $token = shift @tokens;  
           !!!back-token (@tokens);  
           return;  
         }  
       } elsif ({  
                 textarea => 1,  
                 iframe => 1,  
                 noembed => 1,  
                 noframes => 1,  
                 noscript => 0, ## TODO: 1 if scripting is enabled  
                }->{$token->{tag_name}}) {  
         my $tag_name = $token->{tag_name};  
         my $el;  
         !!!create-element ($el, $token->{tag_name}, $token->{attributes});  
           
         if ($token->{tag_name} eq 'textarea') {  
           ## TODO: $self->{form_element} if defined  
           $self->{content_model_flag} = 'RCDATA';  
         } else {  
           $self->{content_model_flag} = 'CDATA';  
         }  
         delete $self->{escape}; # MUST  
           
         $insert->($el);  
           
         my $text = '';  
         if ($token->{tag_name} eq 'textarea') {  
           !!!next-token;  
           if ($token->{type} eq 'character') {  
             $token->{data} =~ s/^\x0A//;  
             unless (length $token->{data}) {  
               !!!next-token;  
             }  
2031            }            }
2032          } else {  
           !!!next-token;  
         }  
         while ($token->{type} eq 'character') {  
           $text .= $token->{data};  
2033            !!!next-token;            !!!next-token;
2034              next B;
2035          }          }
2036          if (length $text) {        } elsif ($token->{type} == END_TAG_TOKEN) {
2037            $el->manakai_append_text ($text);          ## NOTE: "using the rules for secondary insertion mode" then "continue"
2038          }          if ($token->{tag_name} eq 'script') {
2039                      !!!cp ('t87.41');
2040          $self->{content_model_flag} = 'PCDATA';            #
2041                      ## XXXscript: Execute script here.
         if ($token->{type} eq 'end tag' and  
             $token->{tag_name} eq $tag_name) {  
           ## Ignore the token  
2042          } else {          } else {
2043            if ($token->{tag_name} eq 'textarea') {            !!!cp ('t87.5');
2044              !!!parse-error (type => 'in RCDATA:#'.$token->{type});            #
           } else {  
             !!!parse-error (type => 'in CDATA:#'.$token->{type});  
           }  
           ## ISSUE: And ignore?  
2045          }          }
2046          !!!next-token;        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
2047          return;          !!!cp ('t87.6');
2048        } elsif ($token->{tag_name} eq 'select') {          !!!parse-error (type => 'not closed',
2049          $reconstruct_active_formatting_elements->($insert_to_current);                          text => $self->{open_elements}->[-1]->[0]
2050                                        ->manakai_local_name,
2051          !!!insert-element-t ($token->{tag_name}, $token->{attributes});                          token => $token);
2052            
2053          $self->{insertion_mode} = 'in select';          pop @{$self->{open_elements}}
2054          !!!next-token;              while $self->{open_elements}->[-1]->[1] & FOREIGN_EL;
2055          return;  
2056        } elsif ({          ## NOTE: |<span><svg>| ... two parse errors, |<svg>| ... a parse error.
2057                  caption => 1, col => 1, colgroup => 1, frame => 1,  
2058                  frameset => 1, head => 1, option => 1, optgroup => 1,          $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
2059                  tbody => 1, td => 1, tfoot => 1, th => 1,          ## Reprocess.
2060                  thead => 1, tr => 1,          next B;
                }->{$token->{tag_name}}) {  
         !!!parse-error (type => 'in body:'.$token->{tag_name});  
         ## Ignore the token  
         !!!next-token;  
         return;  
           
         ## ISSUE: An issue on HTML5 new elements in the spec.  
2061        } else {        } else {
2062          $reconstruct_active_formatting_elements->($insert_to_current);          die "$0: $token->{type}: Unknown token type";        
           
         !!!insert-element-t ($token->{tag_name}, $token->{attributes});  
           
         !!!next-token;  
         return;  
2063        }        }
2064      } elsif ($token->{type} eq 'end tag') {      }
2065        if ($token->{tag_name} eq 'body') {  
2066          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {      if ($self->{insertion_mode} & HEAD_IMS) {
2067            ## ISSUE: There is an issue in the spec.        if ($token->{type} == CHARACTER_TOKEN) {
2068            if ($self->{open_elements}->[-1]->[1] ne 'body') {          if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
2069              !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            unless ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2070            }              if ($self->{head_element_inserted}) {
2071            $self->{insertion_mode} = 'after body';                !!!cp ('t88.3');
2072            !!!next-token;                $self->{open_elements}->[-1]->[0]->append_child
2073            return;                  ($self->{document}->create_text_node ($1));
2074          } else {                delete $self->{head_element_inserted};
2075            !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                ## NOTE: |</head> <link> |
2076            ## Ignore the token                #
2077            !!!next-token;              } else {
2078            return;                !!!cp ('t88.2');
2079          }                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
2080        } elsif ($token->{tag_name} eq 'html') {                ## NOTE: |</head> &#x20;|
2081          if (@{$self->{open_elements}} > 1 and $self->{open_elements}->[1]->[1] eq 'body') {                #
           ## ISSUE: There is an issue in the spec.  
           if ($self->{open_elements}->[-1]->[1] ne 'body') {  
             !!!parse-error (type => 'not closed:'.$self->{open_elements}->[1]->[1]);  
           }  
           $self->{insertion_mode} = 'after body';  
           ## reprocess  
           return;  
         } else {  
           !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
           ## Ignore the token  
           !!!next-token;  
           return;  
         }  
       } elsif ({  
                 address => 1, blockquote => 1, center => 1, dir => 1,  
                 div => 1, dl => 1, fieldset => 1, listing => 1,  
                 menu => 1, ol => 1, pre => 1, ul => 1,  
                 p => 1,  
                 dd => 1, dt => 1, li => 1,  
                 button => 1, marquee => 1, object => 1,  
                }->{$token->{tag_name}}) {  
         ## has an element in scope  
         my $i;  
         INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
           my $node = $self->{open_elements}->[$_];  
           if ($node->[1] eq $token->{tag_name}) {  
             ## generate implied end tags  
             if ({  
                  dd => ($token->{tag_name} ne 'dd'),  
                  dt => ($token->{tag_name} ne 'dt'),  
                  li => ($token->{tag_name} ne 'li'),  
                  p => ($token->{tag_name} ne 'p'),  
                  td => 1, th => 1, tr => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => 'end tag',  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               return;  
2082              }              }
2083              $i = $_;            } else {
2084              last INSCOPE unless $token->{tag_name} eq 'p';              !!!cp ('t88.1');
2085            } elsif ({              ## Ignore the token.
2086                      table => 1, caption => 1, td => 1, th => 1,              #
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
2087            }            }
2088          } # INSCOPE            unless (length $token->{data}) {
2089                        !!!cp ('t88');
2090          if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {              !!!next-token;
2091            !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              next B;
         }  
           
         splice @{$self->{open_elements}}, $i if defined $i;  
         $clear_up_to_marker->()  
           if {  
             button => 1, marquee => 1, object => 1,  
           }->{$token->{tag_name}};  
         !!!next-token;  
         return;  
       } elsif ($token->{tag_name} eq 'form') {  
         ## has an element in scope  
         INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
           my $node = $self->{open_elements}->[$_];  
           if ($node->[1] eq $token->{tag_name}) {  
             ## generate implied end tags  
             if ({  
                  dd => 1, dt => 1, li => 1, p => 1,  
                  td => 1, th => 1, tr => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => 'end tag',  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               return;  
             }  
             last INSCOPE;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
2092            }            }
2093          } # INSCOPE  ## TODO: set $token->{column} appropriately
           
         if ($self->{open_elements}->[-1]->[1] eq $token->{tag_name}) {  
           pop @{$self->{open_elements}};  
         } else {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
2094          }          }
2095    
2096          undef $self->{form_element};          if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2097          !!!next-token;            !!!cp ('t89');
2098          return;            ## As if <head>
2099        } elsif ({            !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2100                  h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,            $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2101                 }->{$token->{tag_name}}) {            push @{$self->{open_elements}},
2102          ## has an element in scope                [$self->{head_element}, $el_category->{head}];
         my $i;  
         INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
           my $node = $self->{open_elements}->[$_];  
           if ({  
                h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,  
               }->{$node->[1]}) {  
             ## generate implied end tags  
             if ({  
                  dd => 1, dt => 1, li => 1, p => 1,  
                  td => 1, th => 1, tr => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               !!!back-token;  
               $token = {type => 'end tag',  
                         tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
               return;  
             }  
             $i = $_;  
             last INSCOPE;  
           } elsif ({  
                     table => 1, caption => 1, td => 1, th => 1,  
                     button => 1, marquee => 1, object => 1, html => 1,  
                    }->{$node->[1]}) {  
             last INSCOPE;  
           }  
         } # INSCOPE  
           
         if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         }  
           
         splice @{$self->{open_elements}}, $i if defined $i;  
         !!!next-token;  
         return;  
       } elsif ({  
                 a => 1,  
                 b => 1, big => 1, em => 1, font => 1, i => 1,  
                 nobr => 1, s => 1, small => 1, strile => 1,  
                 strong => 1, tt => 1, u => 1,  
                }->{$token->{tag_name}}) {  
         $formatting_end_tag->($token->{tag_name});  
 ## TODO: <http://html5.org/tools/web-apps-tracker?from=883&to=884>  
         return;  
       } elsif ({  
                 caption => 1, col => 1, colgroup => 1, frame => 1,  
                 frameset => 1, head => 1, option => 1, optgroup => 1,  
                 tbody => 1, td => 1, tfoot => 1, th => 1,  
                 thead => 1, tr => 1,  
                 area => 1, basefont => 1, bgsound => 1, br => 1,  
                 embed => 1, hr => 1, iframe => 1, image => 1,  
                 img => 1, input => 1, isindex => 1, noembed => 1,  
                 noframes => 1, param => 1, select => 1, spacer => 1,  
                 table => 1, textarea => 1, wbr => 1,  
                 noscript => 0, ## TODO: if scripting is enabled  
                }->{$token->{tag_name}}) {  
         !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
         ## Ignore the token  
         !!!next-token;  
         return;  
           
         ## ISSUE: Issue on HTML5 new elements in spec  
           
       } else {  
         ## Step 1  
         my $node_i = -1;  
         my $node = $self->{open_elements}->[$node_i];  
2103    
2104          ## Step 2            ## Reprocess in the "in head" insertion mode...
2105          S2: {            pop @{$self->{open_elements}};
2106            if ($node->[1] eq $token->{tag_name}) {  
2107              ## Step 1            ## Reprocess in the "after head" insertion mode...
2108              ## generate implied end tags          } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2109              if ({            !!!cp ('t90');
2110                   dd => 1, dt => 1, li => 1, p => 1,            ## As if </noscript>
2111                   td => 1, th => 1, tr => 1,            pop @{$self->{open_elements}};
2112                  }->{$self->{open_elements}->[-1]->[1]}) {            !!!parse-error (type => 'in noscript:#text', token => $token);
2113                !!!back-token;            
2114                $token = {type => 'end tag',            ## Reprocess in the "in head" insertion mode...
2115                          tag_name => $self->{open_elements}->[-1]->[1]}; # MUST            ## As if </head>
2116                return;            pop @{$self->{open_elements}};
2117              }  
2118                      ## Reprocess in the "after head" insertion mode...
2119              ## Step 2          } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2120              if ($token->{tag_name} ne $self->{open_elements}->[-1]->[1]) {            !!!cp ('t91');
2121                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            pop @{$self->{open_elements}};
2122              }  
2123                          ## Reprocess in the "after head" insertion mode...
2124              ## Step 3          } else {
2125              splice @{$self->{open_elements}}, $node_i;            !!!cp ('t92');
2126            }
2127    
2128            ## "after head" insertion mode
2129            ## As if <body>
2130            !!!insert-element ('body',, $token);
2131            $self->{insertion_mode} = IN_BODY_IM;
2132            ## reprocess
2133            next B;
2134          } elsif ($token->{type} == START_TAG_TOKEN) {
2135            if ($token->{tag_name} eq 'head') {
2136              if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2137                !!!cp ('t93');
2138                !!!create-element ($self->{head_element}, $HTML_NS, $token->{tag_name}, $token->{attributes}, $token);
2139                $self->{open_elements}->[-1]->[0]->append_child
2140                    ($self->{head_element});
2141                push @{$self->{open_elements}},
2142                    [$self->{head_element}, $el_category->{head}];
2143                $self->{insertion_mode} = IN_HEAD_IM;
2144                !!!nack ('t93.1');
2145              !!!next-token;              !!!next-token;
2146              last S2;              next B;
2147              } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2148                !!!cp ('t93.2');
2149                !!!parse-error (type => 'after head', text => 'head',
2150                                token => $token);
2151                ## Ignore the token
2152                !!!nack ('t93.3');
2153                !!!next-token;
2154                next B;
2155            } else {            } else {
2156              ## Step 3              !!!cp ('t95');
2157              if (not $formatting_category->{$node->[1]} and              !!!parse-error (type => 'in head:head',
2158                  #not $phrasing_category->{$node->[1]} and                              token => $token); # or in head noscript
2159                  ($special_category->{$node->[1]} or              ## Ignore the token
2160                   $scoping_category->{$node->[1]})) {              !!!nack ('t95.1');
2161                !!!parse-error (type => 'not closed:'.$node->[1]);              !!!next-token;
2162                ## Ignore the token              next B;
               !!!next-token;  
               last S2;  
             }  
2163            }            }
2164            } elsif ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2165              !!!cp ('t96');
2166              ## As if <head>
2167              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2168              $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2169              push @{$self->{open_elements}},
2170                  [$self->{head_element}, $el_category->{head}];
2171    
2172              $self->{insertion_mode} = IN_HEAD_IM;
2173              ## Reprocess in the "in head" insertion mode...
2174            } else {
2175              !!!cp ('t97');
2176            }
2177    
2178            if ($token->{tag_name} eq 'base') {
2179              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2180                !!!cp ('t98');
2181                ## As if </noscript>
2182                pop @{$self->{open_elements}};
2183                !!!parse-error (type => 'in noscript', text => 'base',
2184                                token => $token);
2185                        
2186            ## Step 4              $self->{insertion_mode} = IN_HEAD_IM;
2187            $node_i--;              ## Reprocess in the "in head" insertion mode...
2188            $node = $self->{open_elements}->[$node_i];            } else {
2189                          !!!cp ('t99');
           ## Step 5;  
           redo S2;  
         } # S2  
         return;  
       }  
     }  
   }; # $in_body  
   
   B: {  
     if ($phase eq 'main') {  
       if ($token->{type} eq 'DOCTYPE') {  
         !!!parse-error (type => 'in html:#DOCTYPE');  
         ## Ignore the token  
         ## Stay in the phase  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'start tag' and  
                $token->{tag_name} eq 'html') {  
         ## TODO: unless it is the first start tag token, parse-error  
         my $top_el = $self->{open_elements}->[0]->[0];  
         for my $attr_name (keys %{$token->{attributes}}) {  
           unless ($top_el->has_attribute_ns (undef, $attr_name)) {  
             $top_el->set_attribute_ns  
               (undef, [undef, $attr_name],  
                $token->{attributes}->{$attr_name}->{value});  
2190            }            }
         }  
         !!!next-token;  
         redo B;  
       } elsif ($token->{type} eq 'end-of-file') {  
         ## Generate implied end tags  
         if ({  
              dd => 1, dt => 1, li => 1, p => 1, td => 1, th => 1, tr => 1,  
             }->{$self->{open_elements}->[-1]->[1]}) {  
           !!!back-token;  
           $token = {type => 'end tag', tag_name => $self->{open_elements}->[-1]->[1]};  
           redo B;  
         }  
           
         if (@{$self->{open_elements}} > 2 or  
             (@{$self->{open_elements}} == 2 and $self->{open_elements}->[1]->[1] ne 'body')) {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         } elsif (defined $self->{inner_html_node} and  
                  @{$self->{open_elements}} > 1 and  
                  $self->{open_elements}->[1]->[1] ne 'body') {  
           !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
         }  
2191    
2192          ## Stop parsing            ## NOTE: There is a "as if in head" code clone.
2193          last B;            if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2194                !!!cp ('t100');
2195                !!!parse-error (type => 'after head',
2196                                text => $token->{tag_name}, token => $token);
2197                push @{$self->{open_elements}},
2198                    [$self->{head_element}, $el_category->{head}];
2199                $self->{head_element_inserted} = 1;
2200              } else {
2201                !!!cp ('t101');
2202              }
2203              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2204              pop @{$self->{open_elements}};
2205              pop @{$self->{open_elements}} # <head>
2206                  if $self->{insertion_mode} == AFTER_HEAD_IM;
2207              !!!nack ('t101.1');
2208              !!!next-token;
2209              next B;
2210            } elsif ($token->{tag_name} eq 'link') {
2211              ## NOTE: There is a "as if in head" code clone.
2212              if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2213                !!!cp ('t102');
2214                !!!parse-error (type => 'after head',
2215                                text => $token->{tag_name}, token => $token);
2216                push @{$self->{open_elements}},
2217                    [$self->{head_element}, $el_category->{head}];
2218                $self->{head_element_inserted} = 1;
2219              } else {
2220                !!!cp ('t103');
2221              }
2222              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2223              pop @{$self->{open_elements}};
2224              pop @{$self->{open_elements}} # <head>
2225                  if $self->{insertion_mode} == AFTER_HEAD_IM;
2226              !!!ack ('t103.1');
2227              !!!next-token;
2228              next B;
2229            } elsif ($token->{tag_name} eq 'command') {
2230              if ($self->{insertion_mode} == IN_HEAD_IM) {
2231                ## NOTE: If the insertion mode at the time of the emission
2232                ## of the token was "before head", $self->{insertion_mode}
2233                ## is already changed to |IN_HEAD_IM|.
2234    
2235          ## ISSUE: There is an issue in the spec.              ## NOTE: There is a "as if in head" code clone.
2236        } else {              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2237          if ($self->{insertion_mode} eq 'before head') {              pop @{$self->{open_elements}};
2238            if ($token->{type} eq 'character') {              pop @{$self->{open_elements}} # <head>
2239              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {                  if $self->{insertion_mode} == AFTER_HEAD_IM;
2240                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              !!!ack ('t103.2');
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
             ## As if <head>  
             !!!create-element ($self->{head_element}, 'head');  
             $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
             push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
             $self->{insertion_mode} = 'in head';  
             ## reprocess  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
2241              !!!next-token;              !!!next-token;
2242              redo B;              next B;
           } elsif ($token->{type} eq 'start tag') {  
             my $attr = $token->{tag_name} eq 'head' ? $token->{attributes} : {};  
             !!!create-element ($self->{head_element}, 'head', $attr);  
             $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
             push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
             $self->{insertion_mode} = 'in head';  
             if ($token->{tag_name} eq 'head') {  
               !!!next-token;  
             #} elsif ({  
             #          base => 1, link => 1, meta => 1,  
             #          script => 1, style => 1, title => 1,  
             #         }->{$token->{tag_name}}) {  
             #  ## reprocess  
             } else {  
               ## reprocess  
             }  
             redo B;  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'html') {  
               ## As if <head>  
               !!!create-element ($self->{head_element}, 'head');  
               $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});  
               push @{$self->{open_elements}}, [$self->{head_element}, 'head'];  
               $self->{insertion_mode} = 'in head';  
               ## reprocess  
               redo B;  
             } else {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             }  
2243            } else {            } else {
2244              die "$0: $token->{type}: Unknown type";              ## NOTE: "in head noscript" or "after head" insertion mode
2245                ## - in these cases, these tags are treated as same as
2246                ## normal in-body tags.
2247                !!!cp ('t103.3');
2248                #
2249            }            }
2250          } elsif ($self->{insertion_mode} eq 'in head') {          } elsif ($token->{tag_name} eq 'meta') {
2251            if ($token->{type} eq 'character') {            ## NOTE: There is a "as if in head" code clone.
2252              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {            if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2253                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);              !!!cp ('t104');
2254                unless (length $token->{data}) {              !!!parse-error (type => 'after head',
2255                  !!!next-token;                              text => $token->{tag_name}, token => $token);
2256                  redo B;              push @{$self->{open_elements}},
2257                    [$self->{head_element}, $el_category->{head}];
2258                $self->{head_element_inserted} = 1;
2259              } else {
2260                !!!cp ('t105');
2261              }
2262              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2263              my $meta_el = pop @{$self->{open_elements}};
2264    
2265                  unless ($self->{confident}) {
2266                    if ($token->{attributes}->{charset}) {
2267                      !!!cp ('t106');
2268                      ## NOTE: Whether the encoding is supported or not is handled
2269                      ## in the {change_encoding} callback.
2270                      $self->{change_encoding}
2271                          ->($self, $token->{attributes}->{charset}->{value},
2272                             $token);
2273                      
2274                      $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
2275                          ->set_user_data (manakai_has_reference =>
2276                                               $token->{attributes}->{charset}
2277                                                   ->{has_reference});
2278                    } elsif ($token->{attributes}->{content}) {
2279                      if ($token->{attributes}->{content}->{value}
2280                          =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
2281                              [\x09\x0A\x0C\x0D\x20]*=
2282                              [\x09\x0A\x0C\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
2283                              ([^"'\x09\x0A\x0C\x0D\x20]
2284                               [^\x09\x0A\x0C\x0D\x20\x3B]*))/x) {
2285                        !!!cp ('t107');
2286                        ## NOTE: Whether the encoding is supported or not is handled
2287                        ## in the {change_encoding} callback.
2288                        $self->{change_encoding}
2289                            ->($self, defined $1 ? $1 : defined $2 ? $2 : $3,
2290                               $token);
2291                        $meta_el->[0]->get_attribute_node_ns (undef, 'content')
2292                            ->set_user_data (manakai_has_reference =>
2293                                                 $token->{attributes}->{content}
2294                                                       ->{has_reference});
2295                      } else {
2296                        !!!cp ('t108');
2297                      }
2298                    }
2299                  } else {
2300                    if ($token->{attributes}->{charset}) {
2301                      !!!cp ('t109');
2302                      $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
2303                          ->set_user_data (manakai_has_reference =>
2304                                               $token->{attributes}->{charset}
2305                                                   ->{has_reference});
2306                    }
2307                    if ($token->{attributes}->{content}) {
2308                      !!!cp ('t110');
2309                      $meta_el->[0]->get_attribute_node_ns (undef, 'content')
2310                          ->set_user_data (manakai_has_reference =>
2311                                               $token->{attributes}->{content}
2312                                                   ->{has_reference});
2313                    }
2314                }                }
             }  
               
             #  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'title') {  
               ## NOTE: There is an "as if in head" code clone  
               my $title_el;  
               !!!create-element ($title_el, 'title', $token->{attributes});  
               (defined $self->{head_element} ? $self->{head_element} : $self->{open_elements}->[-1]->[0])  
                 ->append_child ($title_el);  
               $self->{content_model_flag} = 'RCDATA';  
               delete $self->{escape}; # MUST  
2315    
2316                my $text = '';                pop @{$self->{open_elements}} # <head>
2317                      if $self->{insertion_mode} == AFTER_HEAD_IM;
2318                  !!!ack ('t110.1');
2319                !!!next-token;                !!!next-token;
2320                while ($token->{type} eq 'character') {                next B;
2321                  $text .= $token->{data};          } elsif ($token->{tag_name} eq 'title') {
2322              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2323                !!!cp ('t111');
2324                ## As if </noscript>
2325                pop @{$self->{open_elements}};
2326                !!!parse-error (type => 'in noscript', text => 'title',
2327                                token => $token);
2328              
2329                $self->{insertion_mode} = IN_HEAD_IM;
2330                ## Reprocess in the "in head" insertion mode...
2331              } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2332                !!!cp ('t112');
2333                !!!parse-error (type => 'after head',
2334                                text => $token->{tag_name}, token => $token);
2335                push @{$self->{open_elements}},
2336                    [$self->{head_element}, $el_category->{head}];
2337                $self->{head_element_inserted} = 1;
2338              } else {
2339                !!!cp ('t113');
2340              }
2341    
2342              ## NOTE: There is a "as if in head" code clone.
2343              $parse_rcdata->(RCDATA_CONTENT_MODEL);
2344    
2345              ## NOTE: At this point the stack of open elements contain
2346              ## the |head| element (index == -2) and the |script| element
2347              ## (index == -1).  In the "after head" insertion mode the
2348              ## |head| element is inserted only for the purpose of
2349              ## providing the context for the |script| element, and
2350              ## therefore we can now and have to remove the element from
2351              ## the stack.
2352              splice @{$self->{open_elements}}, -2, 1, () # <head>
2353                  if ($self->{insertion_mode} & IM_MASK) == AFTER_HEAD_IM;
2354              next B;
2355            } elsif ($token->{tag_name} eq 'style' or
2356                     $token->{tag_name} eq 'noframes') {
2357              ## NOTE: Or (scripting is enabled and tag_name eq 'noscript' and
2358              ## insertion mode IN_HEAD_IM)
2359              ## NOTE: There is a "as if in head" code clone.
2360              if ($self->{insertion_mode} == AFTER_HEAD_IM) {
2361                !!!cp ('t114');
2362                !!!parse-error (type => 'after head',
2363                                text => $token->{tag_name}, token => $token);
2364                push @{$self->{open_elements}},
2365                    [$self->{head_element}, $el_category->{head}];
2366                $self->{head_element_inserted} = 1;
2367              } else {
2368                !!!cp ('t115');
2369              }
2370              $parse_rcdata->(CDATA_CONTENT_MODEL);
2371              ## ISSUE: A spec bug [Bug 6038]
2372              splice @{$self->{open_elements}}, -2, 1, () # <head>
2373                  if ($self->{insertion_mode} & IM_MASK) == AFTER_HEAD_IM;
2374              next B;
2375            } elsif ($token->{tag_name} eq 'noscript') {
2376                  if ($self->{insertion_mode} == IN_HEAD_IM) {
2377                    !!!cp ('t116');
2378                    ## NOTE: and scripting is disalbed
2379                    !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2380                    $self->{insertion_mode} = IN_HEAD_NOSCRIPT_IM;
2381                    !!!nack ('t116.1');
2382                  !!!next-token;                  !!!next-token;
2383                }                  next B;
2384                if (length $text) {                } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2385                  $title_el->manakai_append_text ($text);                  !!!cp ('t117');
2386                }                  !!!parse-error (type => 'in noscript', text => 'noscript',
2387                                                  token => $token);
               $self->{content_model_flag} = 'PCDATA';  
                 
               if ($token->{type} eq 'end tag' and  
                   $token->{tag_name} eq 'title') {  
2388                  ## Ignore the token                  ## Ignore the token
2389                    !!!nack ('t117.1');
2390                    !!!next-token;
2391                    next B;
2392                } else {                } else {
2393                  !!!parse-error (type => 'in RCDATA:#'.$token->{type});                  !!!cp ('t118');
2394                  ## ISSUE: And ignore?                  #
2395                }                }
2396                !!!next-token;          } elsif ($token->{tag_name} eq 'script') {
2397                redo B;            if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2398              } elsif ($token->{tag_name} eq 'style') {              !!!cp ('t119');
2399                $style_start_tag->();              ## As if </noscript>
2400                redo B;              pop @{$self->{open_elements}};
2401              } elsif ($token->{tag_name} eq 'script') {              !!!parse-error (type => 'in noscript', text => 'script',
2402                $script_start_tag->();                              token => $token);
2403                redo B;            
2404              } elsif ({base => 1, link => 1, meta => 1}->{$token->{tag_name}}) {              $self->{insertion_mode} = IN_HEAD_IM;
2405                ## NOTE: There are "as if in head" code clones              ## Reprocess in the "in head" insertion mode...
2406                my $el;            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2407                !!!create-element ($el, $token->{tag_name}, $token->{attributes});              !!!cp ('t120');
2408                (defined $self->{head_element} ? $self->{head_element} : $self->{open_elements}->[-1]->[0])              !!!parse-error (type => 'after head',
2409                  ->append_child ($el);                              text => $token->{tag_name}, token => $token);
2410                push @{$self->{open_elements}},
2411                    [$self->{head_element}, $el_category->{head}];
2412                $self->{head_element_inserted} = 1;
2413              } else {
2414                !!!cp ('t121');
2415              }
2416    
2417                !!!next-token;            ## NOTE: There is a "as if in head" code clone.
2418                redo B;            $script_start_tag->();
2419              } elsif ($token->{tag_name} eq 'head') {            ## ISSUE: A spec bug  [Bug 6038]
2420                !!!parse-error (type => 'in head:head');            splice @{$self->{open_elements}}, -2, 1 # <head>
2421                ## Ignore the token                if ($self->{insertion_mode} & IM_MASK) == AFTER_HEAD_IM;
2422                !!!next-token;            next B;
2423                redo B;          } elsif ($token->{tag_name} eq 'body' or
2424              } else {                   $token->{tag_name} eq 'frameset') {
2425                #                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2426              }                  !!!cp ('t122');
2427            } elsif ($token->{type} eq 'end tag') {                  ## As if </noscript>
2428              if ($token->{tag_name} eq 'head') {                  pop @{$self->{open_elements}};
2429                if ($self->{open_elements}->[-1]->[1] eq 'head') {                  !!!parse-error (type => 'in noscript',
2430                                    text => $token->{tag_name}, token => $token);
2431                    
2432                    ## Reprocess in the "in head" insertion mode...
2433                    ## As if </head>
2434                  pop @{$self->{open_elements}};                  pop @{$self->{open_elements}};
2435                    
2436                    ## Reprocess in the "after head" insertion mode...
2437                  } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2438                    !!!cp ('t124');
2439                    pop @{$self->{open_elements}};
2440                    
2441                    ## Reprocess in the "after head" insertion mode...
2442                } else {                } else {
2443                  !!!parse-error (type => 'unmatched end tag:head');                  !!!cp ('t125');
2444                }                }
2445                $self->{insertion_mode} = 'after head';  
2446                  ## "after head" insertion mode
2447                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
2448                  if ($token->{tag_name} eq 'body') {
2449                    !!!cp ('t126');
2450                    $self->{insertion_mode} = IN_BODY_IM;
2451                  } elsif ($token->{tag_name} eq 'frameset') {
2452                    !!!cp ('t127');
2453                    $self->{insertion_mode} = IN_FRAMESET_IM;
2454                  } else {
2455                    die "$0: tag name: $self->{tag_name}";
2456                  }
2457                  !!!nack ('t127.1');
2458                !!!next-token;                !!!next-token;
2459                redo B;                next B;
2460              } elsif ($token->{tag_name} eq 'html') {              } else {
2461                  !!!cp ('t128');
2462                #                #
2463                }
2464    
2465                if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2466                  !!!cp ('t129');
2467                  ## As if </noscript>
2468                  pop @{$self->{open_elements}};
2469                  !!!parse-error (type => 'in noscript:/',
2470                                  text => $token->{tag_name}, token => $token);
2471                  
2472                  ## Reprocess in the "in head" insertion mode...
2473                  ## As if </head>
2474                  pop @{$self->{open_elements}};
2475    
2476                  ## Reprocess in the "after head" insertion mode...
2477                } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2478                  !!!cp ('t130');
2479                  ## As if </head>
2480                  pop @{$self->{open_elements}};
2481    
2482                  ## Reprocess in the "after head" insertion mode...
2483              } else {              } else {
2484                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t131');
               ## Ignore the token  
               !!!next-token;  
               redo B;  
2485              }              }
2486    
2487                ## "after head" insertion mode
2488                ## As if <body>
2489                !!!insert-element ('body',, $token);
2490                $self->{insertion_mode} = IN_BODY_IM;
2491                ## reprocess
2492                !!!ack-later;
2493                next B;
2494          } elsif ($token->{type} == END_TAG_TOKEN) {
2495            ## "Before head", "in head", and "after head" insertion modes
2496            ## ignore most of end tags.  Exceptions are "body", "html",
2497            ## and "br" end tags.  "Before head" and "in head" insertion
2498            ## modes also recognize "head" end tag.  "In head noscript"
2499            ## insertion modes ignore end tags except for "noscript" and
2500            ## "br".
2501    
2502            if ($token->{tag_name} eq 'head') {
2503              if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2504                !!!cp ('t132');
2505                ## As if <head>
2506                !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2507                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2508                push @{$self->{open_elements}},
2509                    [$self->{head_element}, $el_category->{head}];
2510    
2511                ## Reprocess in the "in head" insertion mode...
2512                pop @{$self->{open_elements}};
2513                $self->{insertion_mode} = AFTER_HEAD_IM;
2514                !!!next-token;
2515                next B;
2516              } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2517                !!!cp ('t133');
2518                #
2519              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2520                !!!cp ('t134');
2521                pop @{$self->{open_elements}};
2522                $self->{insertion_mode} = AFTER_HEAD_IM;
2523                !!!next-token;
2524                next B;
2525              } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2526                !!!cp ('t134.1');
2527                #
2528              } else {
2529                die "$0: $self->{insertion_mode}: Unknown insertion mode";
2530              }
2531            } elsif ($token->{tag_name} eq 'noscript') {
2532              if ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2533                !!!cp ('t136');
2534                pop @{$self->{open_elements}};
2535                $self->{insertion_mode} = IN_HEAD_IM;
2536                !!!next-token;
2537                next B;
2538            } else {            } else {
2539                !!!cp ('t138');
2540              #              #
2541            }            }
2542            } elsif ({
2543                body => ($self->{insertion_mode} != IN_HEAD_NOSCRIPT_IM),
2544                html => ($self->{insertion_mode} != IN_HEAD_NOSCRIPT_IM),
2545                br => 1,
2546            }->{$token->{tag_name}}) {
2547              if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2548                !!!cp ('t142.2');
2549                ## (before head) as if <head>, (in head) as if </head>
2550                !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2551                $self->{open_elements}->[-1]->[0]->append_child ($self->{head_element});
2552                $self->{insertion_mode} = AFTER_HEAD_IM;
2553      
2554                ## Reprocess in the "after head" insertion mode...
2555              } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2556                !!!cp ('t143.2');
2557                ## As if </head>
2558                pop @{$self->{open_elements}};
2559                $self->{insertion_mode} = AFTER_HEAD_IM;
2560      
2561                ## Reprocess in the "after head" insertion mode...
2562              } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2563                !!!cp ('t143.3');
2564                ## NOTE: Two parse errors for <head><noscript></br>
2565                !!!parse-error (type => 'unmatched end tag',
2566                                text => $token->{tag_name}, token => $token);
2567                ## As if </noscript>
2568                pop @{$self->{open_elements}};
2569                $self->{insertion_mode} = IN_HEAD_IM;
2570    
2571            if ($self->{open_elements}->[-1]->[1] eq 'head') {              ## Reprocess in the "in head" insertion mode...
2572              ## As if </head>              ## As if </head>
2573              pop @{$self->{open_elements}};              pop @{$self->{open_elements}};
2574            }              $self->{insertion_mode} = AFTER_HEAD_IM;
           $self->{insertion_mode} = 'after head';  
           ## reprocess  
           redo B;  
2575    
2576            ## ISSUE: An issue in the spec.              ## Reprocess in the "after head" insertion mode...
2577          } elsif ($self->{insertion_mode} eq 'after head') {            } elsif ($self->{insertion_mode} == AFTER_HEAD_IM) {
2578            if ($token->{type} eq 'character') {              !!!cp ('t143.4');
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
               
2579              #              #
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'body') {  
               !!!insert-element ('body', $token->{attributes});  
               $self->{insertion_mode} = 'in body';  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'frameset') {  
               !!!insert-element ('frameset', $token->{attributes});  
               $self->{insertion_mode} = 'in frameset';  
               !!!next-token;  
               redo B;  
             } elsif ({  
                       base => 1, link => 1, meta => 1,  
                       script => 1, style => 1, title => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'after head:'.$token->{tag_name});  
               $self->{insertion_mode} = 'in head';  
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
2580            } else {            } else {
2581              #              die "$0: $self->{insertion_mode}: Unknown insertion mode";
2582            }            }
2583              
2584              ## "after head" insertion mode
2585            ## As if <body>            ## As if <body>
2586            !!!insert-element ('body');            !!!insert-element ('body',, $token);
2587            $self->{insertion_mode} = 'in body';            $self->{insertion_mode} = IN_BODY_IM;
2588            ## reprocess            ## Reprocess.
2589            redo B;            next B;
2590          } elsif ($self->{insertion_mode} eq 'in body') {          }
2591            if ($token->{type} eq 'character') {  
2592            ## End tags are ignored by default.
2593            !!!cp ('t145');
2594            !!!parse-error (type => 'unmatched end tag',
2595                            text => $token->{tag_name}, token => $token);
2596            ## Ignore the token.
2597            !!!next-token;
2598            next B;
2599          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
2600            if ($self->{insertion_mode} == BEFORE_HEAD_IM) {
2601              !!!cp ('t149.1');
2602    
2603              ## NOTE: As if <head>
2604              !!!create-element ($self->{head_element}, $HTML_NS, 'head',, $token);
2605              $self->{open_elements}->[-1]->[0]->append_child
2606                  ($self->{head_element});
2607              #push @{$self->{open_elements}},
2608              #    [$self->{head_element}, $el_category->{head}];
2609              #$self->{insertion_mode} = IN_HEAD_IM;
2610              ## NOTE: Reprocess.
2611    
2612              ## NOTE: As if </head>
2613              #pop @{$self->{open_elements}};
2614              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
2615              ## NOTE: Reprocess.
2616              
2617              #
2618            } elsif ($self->{insertion_mode} == IN_HEAD_IM) {
2619              !!!cp ('t149.2');
2620    
2621              ## NOTE: As if </head>
2622              pop @{$self->{open_elements}};
2623              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
2624              ## NOTE: Reprocess.
2625    
2626              #
2627            } elsif ($self->{insertion_mode} == IN_HEAD_NOSCRIPT_IM) {
2628              !!!cp ('t149.3');
2629    
2630              !!!parse-error (type => 'in noscript:#eof', token => $token);
2631    
2632              ## As if </noscript>
2633              pop @{$self->{open_elements}};
2634              #$self->{insertion_mode} = IN_HEAD_IM;
2635              ## NOTE: Reprocess.
2636    
2637              ## NOTE: As if </head>
2638              pop @{$self->{open_elements}};
2639              #$self->{insertion_mode} = IN_AFTER_HEAD_IM;
2640              ## NOTE: Reprocess.
2641    
2642              #
2643            } else {
2644              !!!cp ('t149.4');
2645              #
2646            }
2647    
2648            ## NOTE: As if <body>
2649            !!!insert-element ('body',, $token);
2650            $self->{insertion_mode} = IN_BODY_IM;
2651            ## NOTE: Reprocess.
2652            next B;
2653          } else {
2654            die "$0: $token->{type}: Unknown token type";
2655          }
2656        } elsif ($self->{insertion_mode} & BODY_IMS) {
2657              if ($token->{type} == CHARACTER_TOKEN) {
2658                !!!cp ('t150');
2659              ## NOTE: There is a code clone of "character in body".              ## NOTE: There is a code clone of "character in body".
2660              $reconstruct_active_formatting_elements->($insert_to_current);              $reconstruct_active_formatting_elements->($insert_to_current);
2661                            
2662              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
2663    
2664              !!!next-token;              !!!next-token;
2665              redo B;              next B;
2666            } elsif ($token->{type} eq 'comment') {            } elsif ($token->{type} == START_TAG_TOKEN) {
2667              ## NOTE: There is a code clone of "comment in body".              if ({
2668              my $comment = $self->{document}->create_comment ($token->{data});                   caption => 1, col => 1, colgroup => 1, tbody => 1,
2669              $self->{open_elements}->[-1]->[0]->append_child ($comment);                   td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,
2670              !!!next-token;                  }->{$token->{tag_name}}) {
2671              redo B;                if (($self->{insertion_mode} & IM_MASK) == IN_CELL_IM) {
2672            } else {                  ## have an element in table scope
2673              $in_body->($insert_to_current);                  for (reverse 0..$#{$self->{open_elements}}) {
2674              redo B;                    my $node = $self->{open_elements}->[$_];
2675            }                    if ($node->[1] == TABLE_CELL_EL) {
2676          } elsif ($self->{insertion_mode} eq 'in table') {                      !!!cp ('t151');
2677            if ($token->{type} eq 'character') {  
2678              ## NOTE: There are "character in table" code clones.                      ## Close the cell
2679              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {                      !!!back-token; # <x>
2680                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);                      $token = {type => END_TAG_TOKEN,
2681                                                tag_name => $node->[0]->manakai_local_name,
2682                unless (length $token->{data}) {                                line => $token->{line},
2683                                  column => $token->{column}};
2684                        next B;
2685                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
2686                        !!!cp ('t152');
2687                        ## ISSUE: This case can never be reached, maybe.
2688                        last;
2689                      }
2690                    }
2691    
2692                    !!!cp ('t153');
2693                    !!!parse-error (type => 'start tag not allowed',
2694                        text => $token->{tag_name}, token => $token);
2695                    ## Ignore the token
2696                    !!!nack ('t153.1');
2697                  !!!next-token;                  !!!next-token;
2698                  redo B;                  next B;
2699                }                } elsif (($self->{insertion_mode} & IM_MASK) == IN_CAPTION_IM) {
2700              }                  !!!parse-error (type => 'not closed', text => 'caption',
2701                                    token => $token);
2702                    
2703                    ## NOTE: As if </caption>.
2704                    ## have a table element in table scope
2705                    my $i;
2706                    INSCOPE: {
2707                      for (reverse 0..$#{$self->{open_elements}}) {
2708                        my $node = $self->{open_elements}->[$_];
2709                        if ($node->[1] == CAPTION_EL) {
2710                          !!!cp ('t155');
2711                          $i = $_;
2712                          last INSCOPE;
2713                        } elsif ($node->[1] & TABLE_SCOPING_EL) {
2714                          !!!cp ('t156');
2715                          last;
2716                        }
2717                      }
2718    
2719              !!!parse-error (type => 'in table:#character');                    !!!cp ('t157');
2720                      !!!parse-error (type => 'start tag not allowed',
2721                                      text => $token->{tag_name}, token => $token);
2722                      ## Ignore the token
2723                      !!!nack ('t157.1');
2724                      !!!next-token;
2725                      next B;
2726                    } # INSCOPE
2727                    
2728                    ## generate implied end tags
2729                    while ($self->{open_elements}->[-1]->[1]
2730                               & END_TAG_OPTIONAL_EL) {
2731                      !!!cp ('t158');
2732                      pop @{$self->{open_elements}};
2733                    }
2734    
2735              ## As if in body, but insert into foster parent element                  unless ($self->{open_elements}->[-1]->[1] == CAPTION_EL) {
2736              ## ISSUE: Spec says that "whenever a node would be inserted                    !!!cp ('t159');
2737              ## into the current node" while characters might not be                    !!!parse-error (type => 'not closed',
2738              ## result in a new Text node.                                    text => $self->{open_elements}->[-1]->[0]
2739              $reconstruct_active_formatting_elements->($insert_to_foster);                                        ->manakai_local_name,
2740                                                  token => $token);
2741              if ({                  } else {
2742                   table => 1, tbody => 1, tfoot => 1,                    !!!cp ('t160');
                  thead => 1, tr => 1,  
                 }->{$self->{open_elements}->[-1]->[1]}) {  
               # MUST  
               my $foster_parent_element;  
               my $next_sibling;  
               my $prev_sibling;  
               OE: for (reverse 0..$#{$self->{open_elements}}) {  
                 if ($self->{open_elements}->[$_]->[1] eq 'table') {  
                   my $parent = $self->{open_elements}->[$_]->[0]->parent_node;  
                   if (defined $parent and $parent->node_type == 1) {  
                     $foster_parent_element = $parent;  
                     $next_sibling = $self->{open_elements}->[$_]->[0];  
                     $prev_sibling = $next_sibling->previous_sibling;  
                   } else {  
                     $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];  
                     $prev_sibling = $foster_parent_element->last_child;  
                   }  
                   last OE;  
2743                  }                  }
2744                } # OE                  
2745                $foster_parent_element = $self->{open_elements}->[0]->[0] and                  splice @{$self->{open_elements}}, $i;
2746                $prev_sibling = $foster_parent_element->last_child                  
2747                  unless defined $foster_parent_element;                  $clear_up_to_marker->();
2748                if (defined $prev_sibling and                  
2749                    $prev_sibling->node_type == 3) {                  $self->{insertion_mode} = IN_TABLE_IM;
2750                  $prev_sibling->manakai_append_text ($token->{data});                  
2751                    ## reprocess
2752                    !!!ack-later;
2753                    next B;
2754                } else {                } else {
2755                  $foster_parent_element->insert_before                  !!!cp ('t161');
2756                    ($self->{document}->create_text_node ($token->{data}),                  #
                    $next_sibling);  
2757                }                }
2758              } else {              } else {
2759                $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});                !!!cp ('t162');
2760                  #
2761              }              }
2762                          } elsif ($token->{type} == END_TAG_TOKEN) {
2763              !!!next-token;              if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {
2764              redo B;                if (($self->{insertion_mode} & IM_MASK) == IN_CELL_IM) {
2765            } elsif ($token->{type} eq 'comment') {                  ## have an element in table scope
2766              my $comment = $self->{document}->create_comment ($token->{data});                  my $i;
2767              $self->{open_elements}->[-1]->[0]->append_child ($comment);                  INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2768              !!!next-token;                    my $node = $self->{open_elements}->[$_];
2769              redo B;                    if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
2770            } elsif ($token->{type} eq 'start tag') {                      !!!cp ('t163');
2771              if ({                      $i = $_;
2772                   caption => 1,                      last INSCOPE;
2773                   colgroup => 1,                    } elsif ($node->[1] & TABLE_SCOPING_EL) {
2774                   tbody => 1, tfoot => 1, thead => 1,                      !!!cp ('t164');
2775                  }->{$token->{tag_name}}) {                      last INSCOPE;
2776                ## Clear back to table context                    }
2777                while ($self->{open_elements}->[-1]->[1] ne 'table' and                  } # INSCOPE
2778                       $self->{open_elements}->[-1]->[1] ne 'html') {                    unless (defined $i) {
2779                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                      !!!cp ('t165');
2780                  pop @{$self->{open_elements}};                      !!!parse-error (type => 'unmatched end tag',
2781                }                                      text => $token->{tag_name},
2782                                        token => $token);
2783                        ## Ignore the token
2784                        !!!next-token;
2785                        next B;
2786                      }
2787                    
2788                    ## generate implied end tags
2789                    while ($self->{open_elements}->[-1]->[1]
2790                               & END_TAG_OPTIONAL_EL) {
2791                      !!!cp ('t166');
2792                      pop @{$self->{open_elements}};
2793                    }
2794    
2795                push @$active_formatting_elements, ['#marker', '']                  if ($self->{open_elements}->[-1]->[0]->manakai_local_name
2796                  if $token->{tag_name} eq 'caption';                          ne $token->{tag_name}) {
2797                      !!!cp ('t167');
2798                      !!!parse-error (type => 'not closed',
2799                                      text => $self->{open_elements}->[-1]->[0]
2800                                          ->manakai_local_name,
2801                                      token => $token);
2802                    } else {
2803                      !!!cp ('t168');
2804                    }
2805                    
2806                    splice @{$self->{open_elements}}, $i;
2807                    
2808                    $clear_up_to_marker->();
2809                    
2810                    $self->{insertion_mode} = IN_ROW_IM;
2811                    
2812                    !!!next-token;
2813                    next B;
2814                  } elsif (($self->{insertion_mode} & IM_MASK) == IN_CAPTION_IM) {
2815                    !!!cp ('t169');
2816                    !!!parse-error (type => 'unmatched end tag',
2817                                    text => $token->{tag_name}, token => $token);
2818                    ## Ignore the token
2819                    !!!next-token;
2820                    next B;
2821                  } else {
2822                    !!!cp ('t170');
2823                    #
2824                  }
2825                } elsif ($token->{tag_name} eq 'caption') {
2826                  if (($self->{insertion_mode} & IM_MASK) == IN_CAPTION_IM) {
2827                    ## have a table element in table scope
2828                    my $i;
2829                    INSCOPE: {
2830                      for (reverse 0..$#{$self->{open_elements}}) {
2831                        my $node = $self->{open_elements}->[$_];
2832                        if ($node->[1] == CAPTION_EL) {
2833                          !!!cp ('t171');
2834                          $i = $_;
2835                          last INSCOPE;
2836                        } elsif ($node->[1] & TABLE_SCOPING_EL) {
2837                          !!!cp ('t172');
2838                          last;
2839                        }
2840                      }
2841    
2842                !!!insert-element ($token->{tag_name}, $token->{attributes});                    !!!cp ('t173');
2843                $self->{insertion_mode} = {                    !!!parse-error (type => 'unmatched end tag',
2844                                   caption => 'in caption',                                    text => $token->{tag_name}, token => $token);
2845                                   colgroup => 'in column group',                    ## Ignore the token
2846                                   tbody => 'in table body',                    !!!next-token;
2847                                   tfoot => 'in table body',                    next B;
2848                                   thead => 'in table body',                  } # INSCOPE
2849                                  }->{$token->{tag_name}};                  
2850                !!!next-token;                  ## generate implied end tags
2851                redo B;                  while ($self->{open_elements}->[-1]->[1]
2852              } elsif ({                             & END_TAG_OPTIONAL_EL) {
2853                        col => 1,                    !!!cp ('t174');
2854                        td => 1, th => 1, tr => 1,                    pop @{$self->{open_elements}};
2855                       }->{$token->{tag_name}}) {                  }
2856                ## Clear back to table context                  
2857                while ($self->{open_elements}->[-1]->[1] ne 'table' and                  unless ($self->{open_elements}->[-1]->[1] == CAPTION_EL) {
2858                       $self->{open_elements}->[-1]->[1] ne 'html') {                    !!!cp ('t175');
2859                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                    !!!parse-error (type => 'not closed',
2860                  pop @{$self->{open_elements}};                                    text => $self->{open_elements}->[-1]->[0]
2861                                          ->manakai_local_name,
2862                                      token => $token);
2863                    } else {
2864                      !!!cp ('t176');
2865                    }
2866                    
2867                    splice @{$self->{open_elements}}, $i;
2868                    
2869                    $clear_up_to_marker->();
2870                    
2871                    $self->{insertion_mode} = IN_TABLE_IM;
2872                    
2873                    !!!next-token;
2874                    next B;
2875                  } elsif (($self->{insertion_mode} & IM_MASK) == IN_CELL_IM) {
2876                    !!!cp ('t177');
2877                    !!!parse-error (type => 'unmatched end tag',
2878                                    text => $token->{tag_name}, token => $token);
2879                    ## Ignore the token
2880                    !!!next-token;
2881                    next B;
2882                  } else {
2883                    !!!cp ('t178');
2884                    #
2885                }                }
2886                } elsif ({
2887                          table => 1, tbody => 1, tfoot => 1,
2888                          thead => 1, tr => 1,
2889                         }->{$token->{tag_name}} and
2890                         ($self->{insertion_mode} & IM_MASK) == IN_CELL_IM) {
2891                  ## have an element in table scope
2892                  my $i;
2893                  my $tn;
2894                  INSCOPE: {
2895                    for (reverse 0..$#{$self->{open_elements}}) {
2896                      my $node = $self->{open_elements}->[$_];
2897                      if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
2898                        !!!cp ('t179');
2899                        $i = $_;
2900    
2901                        ## Close the cell
2902                        !!!back-token; # </x>
2903                        $token = {type => END_TAG_TOKEN, tag_name => $tn,
2904                                  line => $token->{line},
2905                                  column => $token->{column}};
2906                        next B;
2907                      } elsif ($node->[1] == TABLE_CELL_EL) {
2908                        !!!cp ('t180');
2909                        $tn = $node->[0]->manakai_local_name;
2910                        ## NOTE: There is exactly one |td| or |th| element
2911                        ## in scope in the stack of open elements by definition.
2912                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
2913                        ## ISSUE: Can this be reached?
2914                        !!!cp ('t181');
2915                        last;
2916                      }
2917                    }
2918    
2919                !!!insert-element ($token->{tag_name} eq 'col' ? 'colgroup' : 'tbody');                  !!!cp ('t182');
2920                $self->{insertion_mode} = $token->{tag_name} eq 'col'                  !!!parse-error (type => 'unmatched end tag',
2921                  ? 'in column group' : 'in table body';                      text => $token->{tag_name}, token => $token);
2922                ## reprocess                  ## Ignore the token
2923                redo B;                  !!!next-token;
2924              } elsif ($token->{tag_name} eq 'table') {                  next B;
2925                ## NOTE: There are code clones for this "table in table"                } # INSCOPE
2926                !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              } elsif ($token->{tag_name} eq 'table' and
2927                         ($self->{insertion_mode} & IM_MASK) == IN_CAPTION_IM) {
2928                  !!!parse-error (type => 'not closed', text => 'caption',
2929                                  token => $token);
2930    
2931                ## As if </table>                ## As if </caption>
2932                ## have a table element in table scope                ## have a table element in table scope
2933                my $i;                my $i;
2934                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
2935                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
2936                  if ($node->[1] eq 'table') {                  if ($node->[1] == CAPTION_EL) {
2937                      !!!cp ('t184');
2938                    $i = $_;                    $i = $_;
2939                    last INSCOPE;                    last INSCOPE;
2940                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
2941                            table => 1, html => 1,                    !!!cp ('t185');
                          }->{$node->[1]}) {  
2942                    last INSCOPE;                    last INSCOPE;
2943                  }                  }
2944                } # INSCOPE                } # INSCOPE
2945                unless (defined $i) {                unless (defined $i) {
2946                  !!!parse-error (type => 'unmatched end tag:table');                  !!!cp ('t186');
2947                  ## Ignore tokens </table><table>          ## TODO: Wrong error type?
2948                    !!!parse-error (type => 'unmatched end tag',
2949                                    text => 'caption', token => $token);
2950                    ## Ignore the token
2951                  !!!next-token;                  !!!next-token;
2952                  redo B;                  next B;
2953                }                }
2954                                
2955                ## generate implied end tags                ## generate implied end tags
2956                if ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
2957                     dd => 1, dt => 1, li => 1, p => 1,                  !!!cp ('t187');
2958                     td => 1, th => 1, tr => 1,                  pop @{$self->{open_elements}};
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
2959                }                }
2960    
2961                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] == CAPTION_EL) {
2962                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t188');
2963                    !!!parse-error (type => 'not closed',
2964                                    text => $self->{open_elements}->[-1]->[0]
2965                                        ->manakai_local_name,
2966                                    token => $token);
2967                  } else {
2968                    !!!cp ('t189');
2969                }                }
2970    
2971                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
2972    
2973                $self->_reset_insertion_mode;                $clear_up_to_marker->();
2974    
2975                  $self->{insertion_mode} = IN_TABLE_IM;
2976    
2977                ## reprocess                ## reprocess
2978                redo B;                next B;
2979                } elsif ({
2980                          body => 1, col => 1, colgroup => 1, html => 1,
2981                         }->{$token->{tag_name}}) {
2982                  if ($self->{insertion_mode} & BODY_TABLE_IMS) {
2983                    !!!cp ('t190');
2984                    !!!parse-error (type => 'unmatched end tag',
2985                                    text => $token->{tag_name}, token => $token);
2986                    ## Ignore the token
2987                    !!!next-token;
2988                    next B;
2989                  } else {
2990                    !!!cp ('t191');
2991                    #
2992                  }
2993            } elsif ({
2994                      tbody => 1, tfoot => 1,
2995                      thead => 1, tr => 1,
2996                     }->{$token->{tag_name}} and
2997                     ($self->{insertion_mode} & IM_MASK) == IN_CAPTION_IM) {
2998              !!!cp ('t192');
2999              !!!parse-error (type => 'unmatched end tag',
3000                              text => $token->{tag_name}, token => $token);
3001              ## Ignore the token
3002              !!!next-token;
3003              next B;
3004            } else {
3005              !!!cp ('t193');
3006              #
3007            }
3008          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3009            for my $entry (@{$self->{open_elements}}) {
3010              unless ($entry->[1] & ALL_END_TAG_OPTIONAL_EL) {
3011                !!!cp ('t75');
3012                !!!parse-error (type => 'in body:#eof', token => $token);
3013                last;
3014              }
3015            }
3016    
3017            ## Stop parsing.
3018            last B;
3019          } else {
3020            die "$0: $token->{type}: Unknown token type";
3021          }
3022    
3023          $insert = $insert_to_current;
3024          #
3025        } elsif ($self->{insertion_mode} & TABLE_IMS) {
3026          if ($token->{type} == START_TAG_TOKEN) {
3027            if ({
3028                 tr => (($self->{insertion_mode} & IM_MASK) != IN_ROW_IM),
3029                 th => 1, td => 1,
3030                }->{$token->{tag_name}}) {
3031              if (($self->{insertion_mode} & IM_MASK) == IN_TABLE_IM) {
3032                ## Clear back to table context
3033                while (not ($self->{open_elements}->[-1]->[1]
3034                                & TABLE_SCOPING_EL)) {
3035                  !!!cp ('t201');
3036                  pop @{$self->{open_elements}};
3037                }
3038                
3039                !!!insert-element ('tbody',, $token);
3040                $self->{insertion_mode} = IN_TABLE_BODY_IM;
3041                ## reprocess in the "in table body" insertion mode...
3042              }
3043              
3044              if (($self->{insertion_mode} & IM_MASK) == IN_TABLE_BODY_IM) {
3045                unless ($token->{tag_name} eq 'tr') {
3046                  !!!cp ('t202');
3047                  !!!parse-error (type => 'missing start tag:tr', token => $token);
3048                }
3049                    
3050                ## Clear back to table body context
3051                while (not ($self->{open_elements}->[-1]->[1]
3052                                & TABLE_ROWS_SCOPING_EL)) {
3053                  !!!cp ('t203');
3054                  ## ISSUE: Can this case be reached?
3055                  pop @{$self->{open_elements}};
3056                }
3057                    
3058                $self->{insertion_mode} = IN_ROW_IM;
3059                if ($token->{tag_name} eq 'tr') {
3060                  !!!cp ('t204');
3061                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3062                  $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3063                  !!!nack ('t204');
3064                  !!!next-token;
3065                  next B;
3066              } else {              } else {
3067                #                !!!cp ('t205');
3068                  !!!insert-element ('tr',, $token);
3069                  ## reprocess in the "in row" insertion mode
3070                }
3071              } else {
3072                !!!cp ('t206');
3073              }
3074    
3075                  ## Clear back to table row context
3076                  while (not ($self->{open_elements}->[-1]->[1]
3077                                  & TABLE_ROW_SCOPING_EL)) {
3078                    !!!cp ('t207');
3079                    pop @{$self->{open_elements}};
3080                  }
3081                  
3082              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3083              $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3084              $self->{insertion_mode} = IN_CELL_IM;
3085    
3086              push @$active_formatting_elements, ['#marker', ''];
3087                  
3088              !!!nack ('t207.1');
3089              !!!next-token;
3090              next B;
3091            } elsif ({
3092                      caption => 1, col => 1, colgroup => 1,
3093                      tbody => 1, tfoot => 1, thead => 1,
3094                      tr => 1, # $self->{insertion_mode} == IN_ROW_IM
3095                     }->{$token->{tag_name}}) {
3096              if (($self->{insertion_mode} & IM_MASK) == IN_ROW_IM) {
3097                ## As if </tr>
3098                ## have an element in table scope
3099                my $i;
3100                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3101                  my $node = $self->{open_elements}->[$_];
3102                  if ($node->[1] == TABLE_ROW_EL) {
3103                    !!!cp ('t208');
3104                    $i = $_;
3105                    last INSCOPE;
3106                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
3107                    !!!cp ('t209');
3108                    last INSCOPE;
3109                  }
3110                } # INSCOPE
3111                unless (defined $i) {
3112                  !!!cp ('t210');
3113                  ## TODO: This type is wrong.
3114                  !!!parse-error (type => 'unmacthed end tag',
3115                                  text => $token->{tag_name}, token => $token);
3116                  ## Ignore the token
3117                  !!!nack ('t210.1');
3118                  !!!next-token;
3119                  next B;
3120                }
3121                    
3122                    ## Clear back to table row context
3123                    while (not ($self->{open_elements}->[-1]->[1]
3124                                    & TABLE_ROW_SCOPING_EL)) {
3125                      !!!cp ('t211');
3126                      ## ISSUE: Can this case be reached?
3127                      pop @{$self->{open_elements}};
3128                    }
3129                    
3130                    pop @{$self->{open_elements}}; # tr
3131                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
3132                    if ($token->{tag_name} eq 'tr') {
3133                      !!!cp ('t212');
3134                      ## reprocess
3135                      !!!ack-later;
3136                      next B;
3137                    } else {
3138                      !!!cp ('t213');
3139                      ## reprocess in the "in table body" insertion mode...
3140                    }
3141                  }
3142    
3143                  if (($self->{insertion_mode} & IM_MASK) == IN_TABLE_BODY_IM) {
3144                    ## have an element in table scope
3145                    my $i;
3146                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3147                      my $node = $self->{open_elements}->[$_];
3148                      if ($node->[1] == TABLE_ROW_GROUP_EL) {
3149                        !!!cp ('t214');
3150                        $i = $_;
3151                        last INSCOPE;
3152                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
3153                        !!!cp ('t215');
3154                        last INSCOPE;
3155                      }
3156                    } # INSCOPE
3157                    unless (defined $i) {
3158                      !!!cp ('t216');
3159    ## TODO: This erorr type is wrong.
3160                      !!!parse-error (type => 'unmatched end tag',
3161                                      text => $token->{tag_name}, token => $token);
3162                      ## Ignore the token
3163                      !!!nack ('t216.1');
3164                      !!!next-token;
3165                      next B;
3166                    }
3167    
3168                    ## Clear back to table body context
3169                    while (not ($self->{open_elements}->[-1]->[1]
3170                                    & TABLE_ROWS_SCOPING_EL)) {
3171                      !!!cp ('t217');
3172                      ## ISSUE: Can this state be reached?
3173                      pop @{$self->{open_elements}};
3174                    }
3175                    
3176                    ## As if <{current node}>
3177                    ## have an element in table scope
3178                    ## true by definition
3179                    
3180                    ## Clear back to table body context
3181                    ## nop by definition
3182                    
3183                    pop @{$self->{open_elements}};
3184                    $self->{insertion_mode} = IN_TABLE_IM;
3185                    ## reprocess in "in table" insertion mode...
3186                  } else {
3187                    !!!cp ('t218');
3188                  }
3189    
3190              if ($token->{tag_name} eq 'col') {
3191                ## Clear back to table context
3192                while (not ($self->{open_elements}->[-1]->[1]
3193                                & TABLE_SCOPING_EL)) {
3194                  !!!cp ('t219');
3195                  ## ISSUE: Can this state be reached?
3196                  pop @{$self->{open_elements}};
3197              }              }
3198            } elsif ($token->{type} eq 'end tag') {              
3199              if ($token->{tag_name} eq 'table') {              !!!insert-element ('colgroup',, $token);
3200                $self->{insertion_mode} = IN_COLUMN_GROUP_IM;
3201                ## reprocess
3202                $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3203                !!!ack-later;
3204                next B;
3205              } elsif ({
3206                        caption => 1,
3207                        colgroup => 1,
3208                        tbody => 1, tfoot => 1, thead => 1,
3209                       }->{$token->{tag_name}}) {
3210                ## Clear back to table context
3211                    while (not ($self->{open_elements}->[-1]->[1]
3212                                    & TABLE_SCOPING_EL)) {
3213                      !!!cp ('t220');
3214                      ## ISSUE: Can this state be reached?
3215                      pop @{$self->{open_elements}};
3216                    }
3217                    
3218                push @$active_formatting_elements, ['#marker', '']
3219                    if $token->{tag_name} eq 'caption';
3220                    
3221                !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3222                $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3223                $self->{insertion_mode} = {
3224                                           caption => IN_CAPTION_IM,
3225                                           colgroup => IN_COLUMN_GROUP_IM,
3226                                           tbody => IN_TABLE_BODY_IM,
3227                                           tfoot => IN_TABLE_BODY_IM,
3228                                           thead => IN_TABLE_BODY_IM,
3229                                          }->{$token->{tag_name}};
3230                !!!next-token;
3231                !!!nack ('t220.1');
3232                next B;
3233              } else {
3234                die "$0: in table: <>: $token->{tag_name}";
3235              }
3236                } elsif ($token->{tag_name} eq 'table') {
3237                  !!!parse-error (type => 'not closed',
3238                                  text => $self->{open_elements}->[-1]->[0]
3239                                      ->manakai_local_name,
3240                                  token => $token);
3241    
3242                  ## As if </table>
3243                ## have a table element in table scope                ## have a table element in table scope
3244                my $i;                my $i;
3245                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3246                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
3247                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] == TABLE_EL) {
3248                      !!!cp ('t221');
3249                    $i = $_;                    $i = $_;
3250                    last INSCOPE;                    last INSCOPE;
3251                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
3252                            table => 1, html => 1,                    !!!cp ('t222');
                          }->{$node->[1]}) {  
3253                    last INSCOPE;                    last INSCOPE;
3254                  }                  }
3255                } # INSCOPE                } # INSCOPE
3256                unless (defined $i) {                unless (defined $i) {
3257                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t223');
3258                  ## Ignore the token  ## TODO: The following is wrong, maybe.
3259                    !!!parse-error (type => 'unmatched end tag', text => 'table',
3260                                    token => $token);
3261                    ## Ignore tokens </table><table>
3262                    !!!nack ('t223.1');
3263                  !!!next-token;                  !!!next-token;
3264                  redo B;                  next B;
3265                }                }
3266                                
3267    ## TODO: Followings are removed from the latest spec.
3268                ## generate implied end tags                ## generate implied end tags
3269                if ({                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
3270                     dd => 1, dt => 1, li => 1, p => 1,                  !!!cp ('t224');
3271                     td => 1, th => 1, tr => 1,                  pop @{$self->{open_elements}};
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
3272                }                }
3273    
3274                if ($self->{open_elements}->[-1]->[1] ne 'table') {                unless ($self->{open_elements}->[-1]->[1] == TABLE_EL) {
3275                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  !!!cp ('t225');
3276                    ## NOTE: |<table><tr><table>|
3277                    !!!parse-error (type => 'not closed',
3278                                    text => $self->{open_elements}->[-1]->[0]
3279                                        ->manakai_local_name,
3280                                    token => $token);
3281                  } else {
3282                    !!!cp ('t226');
3283                }                }
3284    
3285                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
3286                  pop @{$open_tables};
3287    
3288                $self->_reset_insertion_mode;                $self->_reset_insertion_mode;
3289    
3290              ## reprocess
3291              !!!ack-later;
3292              next B;
3293            } elsif ($token->{tag_name} eq 'style') {
3294              !!!cp ('t227.8');
3295              ## NOTE: This is a "as if in head" code clone.
3296              $parse_rcdata->(CDATA_CONTENT_MODEL);
3297              $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3298              next B;
3299            } elsif ($token->{tag_name} eq 'script') {
3300              !!!cp ('t227.6');
3301              ## NOTE: This is a "as if in head" code clone.
3302              $script_start_tag->();
3303              $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3304              next B;
3305            } elsif ($token->{tag_name} eq 'input') {
3306              if ($token->{attributes}->{type}) {
3307                my $type = $token->{attributes}->{type}->{value};
3308                $type =~ tr/A-Z/a-z/; ## ASCII case-insensitive.
3309                if ($type eq 'hidden') {
3310                  !!!cp ('t227.3');
3311                  !!!parse-error (type => 'in table',
3312                                  text => $token->{tag_name}, token => $token);
3313    
3314                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3315                  $open_tables->[-1]->[2] = 0 if @$open_tables; # ~node inserted
3316    
3317                  ## TODO: form element pointer
3318    
3319                  pop @{$self->{open_elements}};
3320    
3321                !!!next-token;                !!!next-token;
3322                redo B;                !!!ack ('t227.2.1');
3323              } elsif ({                next B;
                       body => 1, caption => 1, col => 1, colgroup => 1,  
                       html => 1, tbody => 1, td => 1, tfoot => 1, th => 1,  
                       thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
3324              } else {              } else {
3325                  !!!cp ('t227.1');
3326                #                #
3327              }              }
3328            } else {            } else {
3329                !!!cp ('t227.4');
3330              #              #
3331            }            }
3332            } else {
3333              !!!cp ('t227');
3334              #
3335            }
3336    
3337            !!!parse-error (type => 'in table:'.$token->{tag_name});          !!!parse-error (type => 'in table', text => $token->{tag_name},
3338            $in_body->($insert_to_foster);                          token => $token);
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in caption') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: This is a code clone of "character in body".  
             $reconstruct_active_formatting_elements->($insert_to_current);  
               
             $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
3339    
3340              !!!next-token;          $insert = $insert_to_foster;
3341              redo B;          #
3342            } elsif ($token->{type} eq 'comment') {        } elsif ($token->{type} == END_TAG_TOKEN) {
3343              ## NOTE: This is a code clone of "comment in body".          if ($token->{tag_name} eq 'tr' and
3344              my $comment = $self->{document}->create_comment ($token->{data});              ($self->{insertion_mode} & IM_MASK) == IN_ROW_IM) {
3345              $self->{open_elements}->[-1]->[0]->append_child ($comment);            ## have an element in table scope
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({  
                  caption => 1, col => 1, colgroup => 1, tbody => 1,  
                  td => 1, tfoot => 1, th => 1, thead => 1, tr => 1,  
                 }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'not closed:caption');  
   
               ## As if </caption>  
               ## have a table element in table scope  
3346                my $i;                my $i;
3347                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3348                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
3349                  if ($node->[1] eq 'caption') {                  if ($node->[1] == TABLE_ROW_EL) {
3350                      !!!cp ('t228');
3351                    $i = $_;                    $i = $_;
3352                    last INSCOPE;                    last INSCOPE;
3353                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
3354                            table => 1, html => 1,                    !!!cp ('t229');
                          }->{$node->[1]}) {  
3355                    last INSCOPE;                    last INSCOPE;
3356                  }                  }
3357                } # INSCOPE                } # INSCOPE
3358                unless (defined $i) {                unless (defined $i) {
3359                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!cp ('t230');
3360                    !!!parse-error (type => 'unmatched end tag',
3361                                    text => $token->{tag_name}, token => $token);
3362                  ## Ignore the token                  ## Ignore the token
3363                    !!!nack ('t230.1');
3364                  !!!next-token;                  !!!next-token;
3365                  redo B;                  next B;
3366                }                } else {
3367                                  !!!cp ('t232');
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <?>  
                 $token = {type => 'end tag', tag_name => 'caption'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
3368                }                }
3369    
3370                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                ## Clear back to table row context
3371                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                while (not ($self->{open_elements}->[-1]->[1]
3372                                  & TABLE_ROW_SCOPING_EL)) {
3373                    !!!cp ('t231');
3374    ## ISSUE: Can this state be reached?
3375                    pop @{$self->{open_elements}};
3376                }                }
3377    
3378                splice @{$self->{open_elements}}, $i;                pop @{$self->{open_elements}}; # tr
3379                  $self->{insertion_mode} = IN_TABLE_BODY_IM;
3380                $clear_up_to_marker->();                !!!next-token;
3381                  !!!nack ('t231.1');
3382                  next B;
3383                } elsif ($token->{tag_name} eq 'table') {
3384                  if (($self->{insertion_mode} & IM_MASK) == IN_ROW_IM) {
3385                    ## As if </tr>
3386                    ## have an element in table scope
3387                    my $i;
3388                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3389                      my $node = $self->{open_elements}->[$_];
3390                      if ($node->[1] == TABLE_ROW_EL) {
3391                        !!!cp ('t233');
3392                        $i = $_;
3393                        last INSCOPE;
3394                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
3395                        !!!cp ('t234');
3396                        last INSCOPE;
3397                      }
3398                    } # INSCOPE
3399                    unless (defined $i) {
3400                      !!!cp ('t235');
3401    ## TODO: The following is wrong.
3402                      !!!parse-error (type => 'unmatched end tag',
3403                                      text => $token->{type}, token => $token);
3404                      ## Ignore the token
3405                      !!!nack ('t236.1');
3406                      !!!next-token;
3407                      next B;
3408                    }
3409                    
3410                    ## Clear back to table row context
3411                    while (not ($self->{open_elements}->[-1]->[1]
3412                                    & TABLE_ROW_SCOPING_EL)) {
3413                      !!!cp ('t236');
3414    ## ISSUE: Can this state be reached?
3415                      pop @{$self->{open_elements}};
3416                    }
3417                    
3418                    pop @{$self->{open_elements}}; # tr
3419                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
3420                    ## reprocess in the "in table body" insertion mode...
3421                  }
3422    
3423                  if (($self->{insertion_mode} & IM_MASK) == IN_TABLE_BODY_IM) {
3424                    ## have an element in table scope
3425                    my $i;
3426                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3427                      my $node = $self->{open_elements}->[$_];
3428                      if ($node->[1] == TABLE_ROW_GROUP_EL) {
3429                        !!!cp ('t237');
3430                        $i = $_;
3431                        last INSCOPE;
3432                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
3433                        !!!cp ('t238');
3434                        last INSCOPE;
3435                      }
3436                    } # INSCOPE
3437                    unless (defined $i) {
3438                      !!!cp ('t239');
3439                      !!!parse-error (type => 'unmatched end tag',
3440                                      text => $token->{tag_name}, token => $token);
3441                      ## Ignore the token
3442                      !!!nack ('t239.1');
3443                      !!!next-token;
3444                      next B;
3445                    }
3446                    
3447                    ## Clear back to table body context
3448                    while (not ($self->{open_elements}->[-1]->[1]
3449                                    & TABLE_ROWS_SCOPING_EL)) {
3450                      !!!cp ('t240');
3451                      pop @{$self->{open_elements}};
3452                    }
3453                    
3454                    ## As if <{current node}>
3455                    ## have an element in table scope
3456                    ## true by definition
3457                    
3458                    ## Clear back to table body context
3459                    ## nop by definition
3460                    
3461                    pop @{$self->{open_elements}};
3462                    $self->{insertion_mode} = IN_TABLE_IM;
3463                    ## reprocess in the "in table" insertion mode...
3464                  }
3465    
3466                $self->{insertion_mode} = 'in table';                ## NOTE: </table> in the "in table" insertion mode.
3467                  ## When you edit the code fragment below, please ensure that
3468                  ## the code for <table> in the "in table" insertion mode
3469                  ## is synced with it.
3470    
               ## reprocess  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'caption') {  
3471                ## have a table element in table scope                ## have a table element in table scope
3472                my $i;                my $i;
3473                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3474                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
3475                  if ($node->[1] eq $token->{tag_name}) {                  if ($node->[1] == TABLE_EL) {
3476                      !!!cp ('t241');
3477                    $i = $_;                    $i = $_;
3478                    last INSCOPE;                    last INSCOPE;
3479                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
3480                            table => 1, html => 1,                    !!!cp ('t242');
                          }->{$node->[1]}) {  
3481                    last INSCOPE;                    last INSCOPE;
3482                  }                  }
3483                } # INSCOPE                } # INSCOPE
3484                unless (defined $i) {                unless (defined $i) {
3485                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                  !!!cp ('t243');
3486                    !!!parse-error (type => 'unmatched end tag',
3487                                    text => $token->{tag_name}, token => $token);
3488                  ## Ignore the token                  ## Ignore the token
3489                    !!!nack ('t243.1');
3490                  !!!next-token;                  !!!next-token;
3491                  redo B;                  next B;
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
   
               if ($self->{open_elements}->[-1]->[1] ne 'caption') {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
3492                }                }
3493                    
3494                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
3495                  pop @{$open_tables};
3496                $clear_up_to_marker->();                
3497                  $self->_reset_insertion_mode;
3498                $self->{insertion_mode} = 'in table';                
   
3499                !!!next-token;                !!!next-token;
3500                redo B;                next B;
3501              } elsif ($token->{tag_name} eq 'table') {              } elsif ({
3502                !!!parse-error (type => 'not closed:caption');                        tbody => 1, tfoot => 1, thead => 1,
3503                         }->{$token->{tag_name}} and
3504                         $self->{insertion_mode} & ROW_IMS) {
3505                  if (($self->{insertion_mode} & IM_MASK) == IN_ROW_IM) {
3506                    ## have an element in table scope
3507                    my $i;
3508                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3509                      my $node = $self->{open_elements}->[$_];
3510                      if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
3511                        !!!cp ('t247');
3512                        $i = $_;
3513                        last INSCOPE;
3514                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
3515                        !!!cp ('t248');
3516                        last INSCOPE;
3517                      }
3518                    } # INSCOPE
3519                      unless (defined $i) {
3520                        !!!cp ('t249');
3521                        !!!parse-error (type => 'unmatched end tag',
3522                                        text => $token->{tag_name}, token => $token);
3523                        ## Ignore the token
3524                        !!!nack ('t249.1');
3525                        !!!next-token;
3526                        next B;
3527                      }
3528                    
3529                    ## As if </tr>
3530                    ## have an element in table scope
3531                    my $i;
3532                    INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3533                      my $node = $self->{open_elements}->[$_];
3534                      if ($node->[1] == TABLE_ROW_EL) {
3535                        !!!cp ('t250');
3536                        $i = $_;
3537                        last INSCOPE;
3538                      } elsif ($node->[1] & TABLE_SCOPING_EL) {
3539                        !!!cp ('t251');
3540                        last INSCOPE;
3541                      }
3542                    } # INSCOPE
3543                      unless (defined $i) {
3544                        !!!cp ('t252');
3545                        !!!parse-error (type => 'unmatched end tag',
3546                                        text => 'tr', token => $token);
3547                        ## Ignore the token
3548                        !!!nack ('t252.1');
3549                        !!!next-token;
3550                        next B;
3551                      }
3552                    
3553                    ## Clear back to table row context
3554                    while (not ($self->{open_elements}->[-1]->[1]
3555                                    & TABLE_ROW_SCOPING_EL)) {
3556                      !!!cp ('t253');
3557    ## ISSUE: Can this case be reached?
3558                      pop @{$self->{open_elements}};
3559                    }
3560                    
3561                    pop @{$self->{open_elements}}; # tr
3562                    $self->{insertion_mode} = IN_TABLE_BODY_IM;
3563                    ## reprocess in the "in table body" insertion mode...
3564                  }
3565    
3566                ## As if </caption>                ## have an element in table scope
               ## have a table element in table scope  
3567                my $i;                my $i;
3568                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3569                  my $node = $self->{open_elements}->[$_];                  my $node = $self->{open_elements}->[$_];
3570                  if ($node->[1] eq 'caption') {                  if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
3571                      !!!cp ('t254');
3572                    $i = $_;                    $i = $_;
3573                    last INSCOPE;                    last INSCOPE;
3574                  } elsif ({                  } elsif ($node->[1] & TABLE_SCOPING_EL) {
3575                            table => 1, html => 1,                    !!!cp ('t255');
                          }->{$node->[1]}) {  
3576                    last INSCOPE;                    last INSCOPE;
3577                  }                  }
3578                } # INSCOPE                } # INSCOPE
3579                unless (defined $i) {                unless (defined $i) {
3580                  !!!parse-error (type => 'unmatched end tag:caption');                  !!!cp ('t256');
3581                    !!!parse-error (type => 'unmatched end tag',
3582                                    text => $token->{tag_name}, token => $token);
3583                  ## Ignore the token                  ## Ignore the token
3584                    !!!nack ('t256.1');
3585                  !!!next-token;                  !!!next-token;
3586                  redo B;                  next B;
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # </table>  
                 $token = {type => 'end tag', tag_name => 'caption'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
3587                }                }
3588    
3589                if ($self->{open_elements}->[-1]->[1] ne 'caption') {                ## Clear back to table body context
3590                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                while (not ($self->{open_elements}->[-1]->[1]
3591                                  & TABLE_ROWS_SCOPING_EL)) {
3592                    !!!cp ('t257');
3593    ## ISSUE: Can this case be reached?
3594                    pop @{$self->{open_elements}};
3595                }                }
3596    
3597                splice @{$self->{open_elements}}, $i;                pop @{$self->{open_elements}};
3598                  $self->{insertion_mode} = IN_TABLE_IM;
3599                $clear_up_to_marker->();                !!!nack ('t257.1');
3600                  !!!next-token;
3601                $self->{insertion_mode} = 'in table';                next B;
   
               ## reprocess  
               redo B;  
3602              } elsif ({              } elsif ({
3603                        body => 1, col => 1, colgroup => 1,                        body => 1, caption => 1, col => 1, colgroup => 1,
3604                        html => 1, tbody => 1, td => 1, tfoot => 1,                        html => 1, td => 1, th => 1,
3605                        th => 1, thead => 1, tr => 1,                        tr => 1, # $self->{insertion_mode} == IN_ROW_IM
3606                          tbody => 1, tfoot => 1, thead => 1, # $self->{insertion_mode} == IN_TABLE_IM
3607                       }->{$token->{tag_name}}) {                       }->{$token->{tag_name}}) {
3608                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!cp ('t258');
3609                ## Ignore the token            !!!parse-error (type => 'unmatched end tag',
3610                redo B;                            text => $token->{tag_name}, token => $token);
3611              } else {            ## Ignore the token
3612                #            !!!nack ('t258.1');
3613              }             !!!next-token;
3614            } else {            next B;
3615              #          } else {
3616            }            !!!cp ('t259');
3617                            !!!parse-error (type => 'in table:/',
3618            $in_body->($insert_to_current);                            text => $token->{tag_name}, token => $token);
3619            redo B;  
3620          } elsif ($self->{insertion_mode} eq 'in column group') {            $insert = $insert_to_foster;
3621            if ($token->{type} eq 'character') {            #
3622              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          }
3623          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3624            unless ($self->{open_elements}->[-1]->[1] == HTML_EL and
3625                    @{$self->{open_elements}} == 1) { # redundant, maybe
3626              !!!parse-error (type => 'in body:#eof', token => $token);
3627              !!!cp ('t259.1');
3628              #
3629            } else {
3630              !!!cp ('t259.2');
3631              #
3632            }
3633    
3634            ## Stop parsing
3635            last B;
3636          } else {
3637            die "$0: $token->{type}: Unknown token type";
3638          }
3639        } elsif (($self->{insertion_mode} & IM_MASK) == IN_COLUMN_GROUP_IM) {
3640              if ($token->{type} == CHARACTER_TOKEN) {
3641                if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
3642                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
3643                unless (length $token->{data}) {                unless (length $token->{data}) {
3644                    !!!cp ('t260');
3645                  !!!next-token;                  !!!next-token;
3646                  redo B;                  next B;
3647                }                }
3648              }              }
3649                            
3650                !!!cp ('t261');
3651              #              #
3652            } elsif ($token->{type} eq 'comment') {            } elsif ($token->{type} == START_TAG_TOKEN) {
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
3653              if ($token->{tag_name} eq 'col') {              if ($token->{tag_name} eq 'col') {
3654                !!!insert-element ($token->{tag_name}, $token->{attributes});                !!!cp ('t262');
3655                  !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3656                pop @{$self->{open_elements}};                pop @{$self->{open_elements}};
3657                  !!!ack ('t262.1');
3658                !!!next-token;                !!!next-token;
3659                redo B;                next B;
3660              } else {              } else {
3661                  !!!cp ('t263');
3662                #                #
3663              }              }
3664            } elsif ($token->{type} eq 'end tag') {            } elsif ($token->{type} == END_TAG_TOKEN) {
3665              if ($token->{tag_name} eq 'colgroup') {              if ($token->{tag_name} eq 'colgroup') {
3666                if ($self->{open_elements}->[-1]->[1] eq 'html') {                if ($self->{open_elements}->[-1]->[1] == HTML_EL) {
3667                  !!!parse-error (type => 'unmatched end tag:colgroup');                  !!!cp ('t264');
3668                    !!!parse-error (type => 'unmatched end tag',
3669                                    text => 'colgroup', token => $token);
3670                  ## Ignore the token                  ## Ignore the token
3671                  !!!next-token;                  !!!next-token;
3672                  redo B;                  next B;
3673                } else {                } else {
3674                    !!!cp ('t265');
3675                  pop @{$self->{open_elements}}; # colgroup                  pop @{$self->{open_elements}}; # colgroup
3676                  $self->{insertion_mode} = 'in table';                  $self->{insertion_mode} = IN_TABLE_IM;
3677                  !!!next-token;                  !!!next-token;
3678                  redo B;                              next B;            
3679                }                }
3680              } elsif ($token->{tag_name} eq 'col') {              } elsif ($token->{tag_name} eq 'col') {
3681                !!!parse-error (type => 'unmatched end tag:col');                !!!cp ('t266');
3682                  !!!parse-error (type => 'unmatched end tag',
3683                                  text => 'col', token => $token);
3684                ## Ignore the token                ## Ignore the token
3685                !!!next-token;                !!!next-token;
3686                redo B;                next B;
3687              } else {              } else {
3688                  !!!cp ('t267');
3689                #                #
3690              }              }
3691            } else {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3692              #          if ($self->{open_elements}->[-1]->[1] == HTML_EL and
3693            }              @{$self->{open_elements}} == 1) { # redundant, maybe
3694              !!!cp ('t270.2');
3695              ## Stop parsing.
3696              last B;
3697            } else {
3698              ## NOTE: As if </colgroup>.
3699              !!!cp ('t270.1');
3700              pop @{$self->{open_elements}}; # colgroup
3701              $self->{insertion_mode} = IN_TABLE_IM;
3702              ## Reprocess.
3703              next B;
3704            }
3705          } else {
3706            die "$0: $token->{type}: Unknown token type";
3707          }
3708    
3709            ## As if </colgroup>            ## As if </colgroup>
3710            if ($self->{open_elements}->[-1]->[1] eq 'html') {            if ($self->{open_elements}->[-1]->[1] == HTML_EL) {
3711              !!!parse-error (type => 'unmatched end tag:colgroup');              !!!cp ('t269');
3712    ## TODO: Wrong error type?
3713                !!!parse-error (type => 'unmatched end tag',
3714                                text => 'colgroup', token => $token);
3715              ## Ignore the token              ## Ignore the token
3716                !!!nack ('t269.1');
3717              !!!next-token;              !!!next-token;
3718              redo B;              next B;
3719            } else {            } else {
3720                !!!cp ('t270');
3721              pop @{$self->{open_elements}}; # colgroup              pop @{$self->{open_elements}}; # colgroup
3722              $self->{insertion_mode} = 'in table';              $self->{insertion_mode} = IN_TABLE_IM;
3723                !!!ack-later;
3724              ## reprocess              ## reprocess
3725              redo B;              next B;
3726            }            }
3727          } elsif ($self->{insertion_mode} eq 'in table body') {      } elsif ($self->{insertion_mode} & SELECT_IMS) {
3728            if ($token->{type} eq 'character') {        if ($token->{type} == CHARACTER_TOKEN) {
3729              ## NOTE: This is a "character in table" code clone.          !!!cp ('t271');
3730              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});
3731                $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);          !!!next-token;
3732                          next B;
3733                unless (length $token->{data}) {        } elsif ($token->{type} == START_TAG_TOKEN) {
3734                  !!!next-token;          if ($token->{tag_name} eq 'option') {
3735                  redo B;            if ($self->{open_elements}->[-1]->[1] == OPTION_EL) {
3736                }              !!!cp ('t272');
3737                ## As if </option>
3738                pop @{$self->{open_elements}};
3739              } else {
3740                !!!cp ('t273');
3741              }
3742    
3743              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3744              !!!nack ('t273.1');
3745              !!!next-token;
3746              next B;
3747            } elsif ($token->{tag_name} eq 'optgroup') {
3748              if ($self->{open_elements}->[-1]->[1] == OPTION_EL) {
3749                !!!cp ('t274');
3750                ## As if </option>
3751                pop @{$self->{open_elements}};
3752              } else {
3753                !!!cp ('t275');
3754              }
3755    
3756              if ($self->{open_elements}->[-1]->[1] == OPTGROUP_EL) {
3757                !!!cp ('t276');
3758                ## As if </optgroup>
3759                pop @{$self->{open_elements}};
3760              } else {
3761                !!!cp ('t277');
3762              }
3763    
3764              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
3765              !!!nack ('t277.1');
3766              !!!next-token;
3767              next B;
3768            } elsif ({
3769                       select => 1, input => 1, textarea => 1, keygen => 1,
3770                     }->{$token->{tag_name}} or
3771                     (($self->{insertion_mode} & IM_MASK)
3772                          == IN_SELECT_IN_TABLE_IM and
3773                      {
3774                       caption => 1, table => 1,
3775                       tbody => 1, tfoot => 1, thead => 1,
3776                       tr => 1, td => 1, th => 1,
3777                      }->{$token->{tag_name}})) {
3778    
3779              ## 1. Parse error.
3780              if ($token->{tag_name} eq 'select') {
3781                  !!!parse-error (type => 'select in select', ## XXX: documentation
3782                                  token => $token);
3783              } else {
3784                !!!parse-error (type => 'not closed', text => 'select',
3785                                token => $token);
3786              }
3787    
3788              ## 2./<select>-1. Unless "have an element in table scope" (select):
3789              my $i;
3790              INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3791                my $node = $self->{open_elements}->[$_];
3792                if ($node->[1] == SELECT_EL) {
3793                  !!!cp ('t278');
3794                  $i = $_;
3795                  last INSCOPE;
3796                } elsif ($node->[1] & TABLE_SCOPING_EL) {
3797                  !!!cp ('t279');
3798                  last INSCOPE;
3799                }
3800              } # INSCOPE
3801              unless (defined $i) {
3802                !!!cp ('t280');
3803                if ($token->{tag_name} eq 'select') {
3804                  ## NOTE: This error would be raised when
3805                  ## |select.innerHTML = '<select>'| is executed; in this
3806                  ## case two errors, "select in select" and "unmatched
3807                  ## end tags" are reported to the user, the latter might
3808                  ## be confusing but this is what the spec requires.
3809                  !!!parse-error (type => 'unmatched end tag',
3810                                  text => 'select',
3811                                  token => $token);
3812              }              }
3813                ## Ignore the token.
3814                !!!nack ('t280.1');
3815                !!!next-token;
3816                next B;
3817              }
3818    
3819              !!!parse-error (type => 'in table:#character');            ## 3. Otherwise, as if there were <select>:
3820                  
3821              !!!cp ('t281');
3822              splice @{$self->{open_elements}}, $i;
3823    
3824              ## As if in body, but insert into foster parent element            $self->_reset_insertion_mode;
             ## ISSUE: Spec says that "whenever a node would be inserted  
             ## into the current node" while characters might not be  
             ## result in a new Text node.  
             $reconstruct_active_formatting_elements->($insert_to_foster);  
3825    
3826              if ({            if ($token->{tag_name} eq 'select') {
3827                   table => 1, tbody => 1, tfoot => 1,              !!!nack ('t281.2');
3828                   thead => 1, tr => 1,              !!!next-token;
3829                  }->{$self->{open_elements}->[-1]->[1]}) {              next B;
3830                # MUST            } else {
3831                my $foster_parent_element;              !!!cp ('t281.1');
3832                my $next_sibling;              !!!ack-later;
3833                my $prev_sibling;              ## Reprocess the token.
3834                OE: for (reverse 0..$#{$self->{open_elements}}) {              next B;
3835                  if ($self->{open_elements}->[$_]->[1] eq 'table') {            }
3836                    my $parent = $self->{open_elements}->[$_]->[0]->parent_node;          } elsif ($token->{tag_name} eq 'script') {
3837                    if (defined $parent and $parent->node_type == 1) {            !!!cp ('t281.3');
3838                      $foster_parent_element = $parent;            ## NOTE: This is an "as if in head" code clone
3839                      $next_sibling = $self->{open_elements}->[$_]->[0];            $script_start_tag->();
3840                      $prev_sibling = $next_sibling->previous_sibling;            next B;
3841                    } else {          } else {
3842                      $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];            !!!cp ('t282');
3843                      $prev_sibling = $foster_parent_element->last_child;            !!!parse-error (type => 'in select',
3844                    }                            text => $token->{tag_name}, token => $token);
3845                    last OE;            ## Ignore the token
3846                  }            !!!nack ('t282.1');
3847                } # OE            !!!next-token;
3848                $foster_parent_element = $self->{open_elements}->[0]->[0] and            next B;
3849                $prev_sibling = $foster_parent_element->last_child          }
3850                  unless defined $foster_parent_element;        } elsif ($token->{type} == END_TAG_TOKEN) {
3851                if (defined $prev_sibling and          if ($token->{tag_name} eq 'optgroup') {
3852                    $prev_sibling->node_type == 3) {            if ($self->{open_elements}->[-1]->[1] == OPTION_EL and
3853                  $prev_sibling->manakai_append_text ($token->{data});                $self->{open_elements}->[-2]->[1] == OPTGROUP_EL) {
3854                } else {              !!!cp ('t283');
3855                  $foster_parent_element->insert_before              ## As if </option>
3856                    ($self->{document}->create_text_node ($token->{data}),              splice @{$self->{open_elements}}, -2;
3857                     $next_sibling);            } elsif ($self->{open_elements}->[-1]->[1] == OPTGROUP_EL) {
3858                }              !!!cp ('t284');
3859              } else {              pop @{$self->{open_elements}};
3860                $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});            } else {
3861                !!!cp ('t285');
3862                !!!parse-error (type => 'unmatched end tag',
3863                                text => $token->{tag_name}, token => $token);
3864                ## Ignore the token
3865              }
3866              !!!nack ('t285.1');
3867              !!!next-token;
3868              next B;
3869            } elsif ($token->{tag_name} eq 'option') {
3870              if ($self->{open_elements}->[-1]->[1] == OPTION_EL) {
3871                !!!cp ('t286');
3872                pop @{$self->{open_elements}};
3873              } else {
3874                !!!cp ('t287');
3875                !!!parse-error (type => 'unmatched end tag',
3876                                text => $token->{tag_name}, token => $token);
3877                ## Ignore the token
3878              }
3879              !!!nack ('t287.1');
3880              !!!next-token;
3881              next B;
3882            } elsif ($token->{tag_name} eq 'select') {
3883              ## have an element in table scope
3884              my $i;
3885              INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3886                my $node = $self->{open_elements}->[$_];
3887                if ($node->[1] == SELECT_EL) {
3888                  !!!cp ('t288');
3889                  $i = $_;
3890                  last INSCOPE;
3891                } elsif ($node->[1] & TABLE_SCOPING_EL) {
3892                  !!!cp ('t289');
3893                  last INSCOPE;
3894              }              }
3895                          } # INSCOPE
3896              unless (defined $i) {
3897                !!!cp ('t290');
3898                !!!parse-error (type => 'unmatched end tag',
3899                                text => $token->{tag_name}, token => $token);
3900                ## Ignore the token
3901                !!!nack ('t290.1');
3902              !!!next-token;              !!!next-token;
3903              redo B;              next B;
3904            } elsif ($token->{type} eq 'comment') {            }
3905              ## Copied from 'in table'                
3906              my $comment = $self->{document}->create_comment ($token->{data});            !!!cp ('t291');
3907              $self->{open_elements}->[-1]->[0]->append_child ($comment);            splice @{$self->{open_elements}}, $i;
3908    
3909              $self->_reset_insertion_mode;
3910    
3911              !!!nack ('t291.1');
3912              !!!next-token;
3913              next B;
3914            } elsif (($self->{insertion_mode} & IM_MASK)
3915                         == IN_SELECT_IN_TABLE_IM and
3916                     {
3917                      caption => 1, table => 1, tbody => 1,
3918                      tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,
3919                     }->{$token->{tag_name}}) {
3920    ## TODO: The following is wrong?
3921              !!!parse-error (type => 'unmatched end tag',
3922                              text => $token->{tag_name}, token => $token);
3923                  
3924              ## have an element in table scope
3925              my $i;
3926              INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3927                my $node = $self->{open_elements}->[$_];
3928                if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
3929                  !!!cp ('t292');
3930                  $i = $_;
3931                  last INSCOPE;
3932                } elsif ($node->[1] & TABLE_SCOPING_EL) {
3933                  !!!cp ('t293');
3934                  last INSCOPE;
3935                }
3936              } # INSCOPE
3937              unless (defined $i) {
3938                !!!cp ('t294');
3939                ## Ignore the token
3940                !!!nack ('t294.1');
3941              !!!next-token;              !!!next-token;
3942              redo B;              next B;
3943            } elsif ($token->{type} eq 'start tag') {            }
3944              if ({                
3945                   tr => 1,            ## As if </select>
3946                   th => 1, td => 1,            ## have an element in table scope
3947                  }->{$token->{tag_name}}) {            undef $i;
3948                unless ($token->{tag_name} eq 'tr') {            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
3949                  !!!parse-error (type => 'missing start tag:tr');              my $node = $self->{open_elements}->[$_];
3950                }              if ($node->[1] == SELECT_EL) {
3951                  !!!cp ('t295');
3952                  $i = $_;
3953                  last INSCOPE;
3954                } elsif ($node->[1] & TABLE_SCOPING_EL) {
3955    ## ISSUE: Can this state be reached?
3956                  !!!cp ('t296');
3957                  last INSCOPE;
3958                }
3959              } # INSCOPE
3960              unless (defined $i) {
3961                !!!cp ('t297');
3962    ## TODO: The following error type is correct?
3963                !!!parse-error (type => 'unmatched end tag',
3964                                text => 'select', token => $token);
3965                ## Ignore the </select> token
3966                !!!nack ('t297.1');
3967                !!!next-token; ## TODO: ok?
3968                next B;
3969              }
3970                  
3971              !!!cp ('t298');
3972              splice @{$self->{open_elements}}, $i;
3973    
3974                ## Clear back to table body context            $self->_reset_insertion_mode;
3975                while (not {  
3976                  tbody => 1, tfoot => 1, thead => 1, html => 1,            !!!ack-later;
3977                }->{$self->{open_elements}->[-1]->[1]}) {            ## reprocess
3978                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            next B;
3979                  pop @{$self->{open_elements}};          } else {
3980                }            !!!cp ('t299');
3981              !!!parse-error (type => 'in select:/',
3982                              text => $token->{tag_name}, token => $token);
3983              ## Ignore the token
3984              !!!nack ('t299.3');
3985              !!!next-token;
3986              next B;
3987            }
3988          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
3989            unless ($self->{open_elements}->[-1]->[1] == HTML_EL and
3990                    @{$self->{open_elements}} == 1) { # redundant, maybe
3991              !!!cp ('t299.1');
3992              !!!parse-error (type => 'in body:#eof', token => $token);
3993            } else {
3994              !!!cp ('t299.2');
3995            }
3996    
3997            ## Stop parsing.
3998            last B;
3999          } else {
4000            die "$0: $token->{type}: Unknown token type";
4001          }
4002        } elsif ($self->{insertion_mode} & BODY_AFTER_IMS) {
4003          if ($token->{type} == CHARACTER_TOKEN) {
4004            if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
4005              my $data = $1;
4006              ## As if in body
4007              $reconstruct_active_formatting_elements->($insert_to_current);
4008                                
4009                $self->{insertion_mode} = 'in row';            $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4010                if ($token->{tag_name} eq 'tr') {            
4011                  !!!insert-element ($token->{tag_name}, $token->{attributes});            unless (length $token->{data}) {
4012                  !!!next-token;              !!!cp ('t300');
4013                } else {              !!!next-token;
4014                  !!!insert-element ('tr');              next B;
4015                  ## reprocess            }
4016                }          }
4017                redo B;          
4018              } elsif ({          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4019                        caption => 1, col => 1, colgroup => 1,            !!!cp ('t301');
4020                        tbody => 1, tfoot => 1, thead => 1,            !!!parse-error (type => 'after html:#text', token => $token);
4021                       }->{$token->{tag_name}}) {            #
4022                ## have an element in table scope          } else {
4023                my $i;            !!!cp ('t302');
4024                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            ## "after body" insertion mode
4025                  my $node = $self->{open_elements}->[$_];            !!!parse-error (type => 'after body:#text', token => $token);
4026                  if ({            #
4027                       tbody => 1, thead => 1, tfoot => 1,          }
                     }->{$node->[1]}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4028    
4029                ## Clear back to table body context          $self->{insertion_mode} = IN_BODY_IM;
4030                while (not {          ## reprocess
4031                  tbody => 1, tfoot => 1, thead => 1, html => 1,          next B;
4032                }->{$self->{open_elements}->[-1]->[1]}) {        } elsif ($token->{type} == START_TAG_TOKEN) {
4033                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4034                  pop @{$self->{open_elements}};            !!!cp ('t303');
4035                }            !!!parse-error (type => 'after html',
4036                              text => $token->{tag_name}, token => $token);
4037              #
4038            } else {
4039              !!!cp ('t304');
4040              ## "after body" insertion mode
4041              !!!parse-error (type => 'after body',
4042                              text => $token->{tag_name}, token => $token);
4043              #
4044            }
4045    
4046                ## As if <{current node}>          $self->{insertion_mode} = IN_BODY_IM;
4047                ## have an element in table scope          !!!ack-later;
4048                ## true by definition          ## reprocess
4049            next B;
4050          } elsif ($token->{type} == END_TAG_TOKEN) {
4051            if ($self->{insertion_mode} == AFTER_HTML_BODY_IM) {
4052              !!!cp ('t305');
4053              !!!parse-error (type => 'after html:/',
4054                              text => $token->{tag_name}, token => $token);
4055              
4056              $self->{insertion_mode} = IN_BODY_IM;
4057              ## Reprocess.
4058              next B;
4059            } else {
4060              !!!cp ('t306');
4061            }
4062    
4063                ## Clear back to table body context          ## "after body" insertion mode
4064                ## nop by definition          if ($token->{tag_name} eq 'html') {
4065              if (defined $self->{inner_html_node}) {
4066                !!!cp ('t307');
4067                !!!parse-error (type => 'unmatched end tag',
4068                                text => 'html', token => $token);
4069                ## Ignore the token
4070                !!!next-token;
4071                next B;
4072              } else {
4073                !!!cp ('t308');
4074                $self->{insertion_mode} = AFTER_HTML_BODY_IM;
4075                !!!next-token;
4076                next B;
4077              }
4078            } else {
4079              !!!cp ('t309');
4080              !!!parse-error (type => 'after body:/',
4081                              text => $token->{tag_name}, token => $token);
4082    
4083                pop @{$self->{open_elements}};            $self->{insertion_mode} = IN_BODY_IM;
4084                $self->{insertion_mode} = 'in table';            ## reprocess
4085                ## reprocess            next B;
4086                redo B;          }
4087              } elsif ($token->{tag_name} eq 'table') {        } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4088                ## NOTE: This is a code clone of "table in table"          !!!cp ('t309.2');
4089                !!!parse-error (type => 'not closed:table');          ## Stop parsing
4090            last B;
4091          } else {
4092            die "$0: $token->{type}: Unknown token type";
4093          }
4094        } elsif ($self->{insertion_mode} & FRAME_IMS) {
4095          if ($token->{type} == CHARACTER_TOKEN) {
4096            if ($token->{data} =~ s/^([\x09\x0A\x0C\x20]+)//) {
4097              $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);
4098              
4099              unless (length $token->{data}) {
4100                !!!cp ('t310');
4101                !!!next-token;
4102                next B;
4103              }
4104            }
4105            
4106            if ($token->{data} =~ s/^[^\x09\x0A\x0C\x20]+//) {
4107              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
4108                !!!cp ('t311');
4109                !!!parse-error (type => 'in frameset:#text', token => $token);
4110              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
4111                !!!cp ('t312');
4112                !!!parse-error (type => 'after frameset:#text', token => $token);
4113              } else { # "after after frameset"
4114                !!!cp ('t313');
4115                !!!parse-error (type => 'after html:#text', token => $token);
4116              }
4117              
4118              ## Ignore the token.
4119              if (length $token->{data}) {
4120                !!!cp ('t314');
4121                ## reprocess the rest of characters
4122              } else {
4123                !!!cp ('t315');
4124                !!!next-token;
4125              }
4126              next B;
4127            }
4128            
4129            die qq[$0: Character "$token->{data}"];
4130          } elsif ($token->{type} == START_TAG_TOKEN) {
4131            if ($token->{tag_name} eq 'frameset' and
4132                $self->{insertion_mode} == IN_FRAMESET_IM) {
4133              !!!cp ('t318');
4134              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4135              !!!nack ('t318.1');
4136              !!!next-token;
4137              next B;
4138            } elsif ($token->{tag_name} eq 'frame' and
4139                     $self->{insertion_mode} == IN_FRAMESET_IM) {
4140              !!!cp ('t319');
4141              !!!insert-element ($token->{tag_name}, $token->{attributes}, $token);
4142              pop @{$self->{open_elements}};
4143              !!!ack ('t319.1');
4144              !!!next-token;
4145              next B;
4146            } elsif ($token->{tag_name} eq 'noframes') {
4147              !!!cp ('t320');
4148              ## NOTE: As if in head.
4149              $parse_rcdata->(CDATA_CONTENT_MODEL);
4150              next B;
4151    
4152              ## NOTE: |<!DOCTYPE HTML><frameset></frameset></html><noframes></noframes>|
4153              ## has no parse error.
4154            } else {
4155              if ($self->{insertion_mode} == IN_FRAMESET_IM) {
4156                !!!cp ('t321');
4157                !!!parse-error (type => 'in frameset',
4158                                text => $token->{tag_name}, token => $token);
4159              } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
4160                !!!cp ('t322');
4161                !!!parse-error (type => 'after frameset',
4162                                text => $token->{tag_name}, token => $token);
4163              } else { # "after after frameset"
4164                !!!cp ('t322.2');
4165                !!!parse-error (type => 'after after frameset',
4166                                text => $token->{tag_name}, token => $token);
4167              }
4168              ## Ignore the token
4169              !!!nack ('t322.1');
4170              !!!next-token;
4171              next B;
4172            }
4173          } elsif ($token->{type} == END_TAG_TOKEN) {
4174            if ($token->{tag_name} eq 'frameset' and
4175                $self->{insertion_mode} == IN_FRAMESET_IM) {
4176              if ($self->{open_elements}->[-1]->[1] == HTML_EL and
4177                  @{$self->{open_elements}} == 1) {
4178                !!!cp ('t325');
4179                !!!parse-error (type => 'unmatched end tag',
4180                                text => $token->{tag_name}, token => $token);
4181                ## Ignore the token
4182                !!!next-token;
4183              } else {
4184                !!!cp ('t326');
4185                pop @{$self->{open_elements}};
4186                !!!next-token;
4187              }
4188    
4189                ## As if </table>            if (not defined $self->{inner_html_node} and
4190                ## have a table element in table scope                not ($self->{open_elements}->[-1]->[1] == FRAMESET_EL)) {
4191                my $i;              !!!cp ('t327');
4192                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {              $self->{insertion_mode} = AFTER_FRAMESET_IM;
4193                  my $node = $self->{open_elements}->[$_];            } else {
4194                  if ($node->[1] eq 'table') {              !!!cp ('t328');
4195                    $i = $_;            }
4196                    last INSCOPE;            next B;
4197                  } elsif ({          } elsif ($token->{tag_name} eq 'html' and
4198                            table => 1, html => 1,                   $self->{insertion_mode} == AFTER_FRAMESET_IM) {
4199                           }->{$node->[1]}) {            !!!cp ('t329');
4200                    last INSCOPE;            $self->{insertion_mode} = AFTER_HTML_FRAMESET_IM;
4201                  }            !!!next-token;
4202                } # INSCOPE            next B;
4203                unless (defined $i) {          } else {
4204                  !!!parse-error (type => 'unmatched end tag:table');            if ($self->{insertion_mode} == IN_FRAMESET_IM) {
4205                  ## Ignore tokens </table><table>              !!!cp ('t330');
4206                  !!!next-token;              !!!parse-error (type => 'in frameset:/',
4207                  redo B;                              text => $token->{tag_name}, token => $token);
4208                }            } elsif ($self->{insertion_mode} == AFTER_FRAMESET_IM) {
4209                !!!cp ('t330.1');
4210                !!!parse-error (type => 'after frameset:/',
4211                                text => $token->{tag_name}, token => $token);
4212              } else { # "after after html"
4213                !!!cp ('t331');
4214                !!!parse-error (type => 'after after frameset:/',
4215                                text => $token->{tag_name}, token => $token);
4216              }
4217              ## Ignore the token
4218              !!!next-token;
4219              next B;
4220            }
4221          } elsif ($token->{type} == END_OF_FILE_TOKEN) {
4222            unless ($self->{open_elements}->[-1]->[1] == HTML_EL and
4223                    @{$self->{open_elements}} == 1) { # redundant, maybe
4224              !!!cp ('t331.1');
4225              !!!parse-error (type => 'in body:#eof', token => $token);
4226            } else {
4227              !!!cp ('t331.2');
4228            }
4229            
4230            ## Stop parsing
4231            last B;
4232          } else {
4233            die "$0: $token->{type}: Unknown token type";
4234          }
4235        } else {
4236          die "$0: $self->{insertion_mode}: Unknown insertion mode";
4237        }
4238    
4239        ## "in body" insertion mode
4240        if ($token->{type} == START_TAG_TOKEN) {
4241          if ($token->{tag_name} eq 'script') {
4242            !!!cp ('t332');
4243            ## NOTE: This is an "as if in head" code clone
4244            $script_start_tag->();
4245            next B;
4246          } elsif ($token->{tag_name} eq 'style') {
4247            !!!cp ('t333');
4248            ## NOTE: This is an "as if in head" code clone
4249            $parse_rcdata->(CDATA_CONTENT_MODEL);
4250            next B;
4251          } elsif ({
4252                    base => 1, command => 1, link => 1,
4253                   }->{$token->{tag_name}}) {
4254            !!!cp ('t334');
4255            ## NOTE: This is an "as if in head" code clone, only "-t" differs
4256            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4257            pop @{$self->{open_elements}};
4258            !!!ack ('t334.1');
4259            !!!next-token;
4260            next B;
4261          } elsif ($token->{tag_name} eq 'meta') {
4262            ## NOTE: This is an "as if in head" code clone, only "-t" differs
4263            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4264            my $meta_el = pop @{$self->{open_elements}};
4265    
4266            unless ($self->{confident}) {
4267              if ($token->{attributes}->{charset}) {
4268                !!!cp ('t335');
4269                ## NOTE: Whether the encoding is supported or not is handled
4270                ## in the {change_encoding} callback.
4271                $self->{change_encoding}
4272                    ->($self, $token->{attributes}->{charset}->{value}, $token);
4273                
4274                $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4275                    ->set_user_data (manakai_has_reference =>
4276                                         $token->{attributes}->{charset}
4277                                             ->{has_reference});
4278              } elsif ($token->{attributes}->{content}) {
4279                if ($token->{attributes}->{content}->{value}
4280                    =~ /[Cc][Hh][Aa][Rr][Ss][Ee][Tt]
4281                        [\x09\x0A\x0C\x0D\x20]*=
4282                        [\x09\x0A\x0C\x0D\x20]*(?>"([^"]*)"|'([^']*)'|
4283                        ([^"'\x09\x0A\x0C\x0D\x20][^\x09\x0A\x0C\x0D\x20\x3B]*))
4284                       /x) {
4285                  !!!cp ('t336');
4286                  ## NOTE: Whether the encoding is supported or not is handled
4287                  ## in the {change_encoding} callback.
4288                  $self->{change_encoding}
4289                      ->($self, defined $1 ? $1 : defined $2 ? $2 : $3, $token);
4290                  $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4291                      ->set_user_data (manakai_has_reference =>
4292                                           $token->{attributes}->{content}
4293                                                 ->{has_reference});
4294                }
4295              }
4296            } else {
4297              if ($token->{attributes}->{charset}) {
4298                !!!cp ('t337');
4299                $meta_el->[0]->get_attribute_node_ns (undef, 'charset')
4300                    ->set_user_data (manakai_has_reference =>
4301                                         $token->{attributes}->{charset}
4302                                             ->{has_reference});
4303              }
4304              if ($token->{attributes}->{content}) {
4305                !!!cp ('t338');
4306                $meta_el->[0]->get_attribute_node_ns (undef, 'content')
4307                    ->set_user_data (manakai_has_reference =>
4308                                         $token->{attributes}->{content}
4309                                             ->{has_reference});
4310              }
4311            }
4312    
4313            !!!ack ('t338.1');
4314            !!!next-token;
4315            next B;
4316          } elsif ($token->{tag_name} eq 'title') {
4317            !!!cp ('t341');
4318            ## NOTE: This is an "as if in head" code clone
4319            $parse_rcdata->(RCDATA_CONTENT_MODEL);
4320            next B;
4321          } elsif ($token->{tag_name} eq 'body') {
4322            !!!parse-error (type => 'in body', text => 'body', token => $token);
4323                                
4324                ## generate implied end tags          if (@{$self->{open_elements}} == 1 or
4325                if ({              not ($self->{open_elements}->[1]->[1] == BODY_EL)) {
4326                     dd => 1, dt => 1, li => 1, p => 1,            !!!cp ('t342');
4327                     td => 1, th => 1, tr => 1,            ## Ignore the token
4328                    }->{$self->{open_elements}->[-1]->[1]}) {          } else {
4329                  !!!back-token; # <table>            my $body_el = $self->{open_elements}->[1]->[0];
4330                  $token = {type => 'end tag', tag_name => 'table'};            for my $attr_name (keys %{$token->{attributes}}) {
4331                  !!!back-token;              unless ($body_el->has_attribute_ns (undef, $attr_name)) {
4332                  $token = {type => 'end tag',                !!!cp ('t343');
4333                            tag_name => $self->{open_elements}->[-1]->[1]}; # MUST                $body_el->set_attribute_ns
4334                  redo B;                  (undef, [undef, $attr_name],
4335                }                   $token->{attributes}->{$attr_name}->{value});
4336                }
4337              }
4338            }
4339            !!!nack ('t343.1');
4340            !!!next-token;
4341            next B;
4342          } elsif ($token->{tag_name} eq 'frameset') {
4343            !!!parse-error (type => 'in body', text => $token->{tag_name},
4344                            token => $token);
4345    
4346                if ($self->{open_elements}->[-1]->[1] ne 'table') {          if (@{$self->{open_elements}} == 1 or
4347                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              not ($self->{open_elements}->[1]->[1] == BODY_EL)) {
4348                }            !!!cp ('t343.2');
4349              ## Ignore the token.
4350            } elsif (not $self->{frameset_ok}) {
4351              !!!cp ('t343.3');
4352              ## Ignore the token.
4353            } else {
4354              !!!cp ('t343.4');
4355              
4356              ## 1. Remove the second element.
4357              my $body = $self->{open_elements}->[1]->[0];
4358              my $body_parent = $body->parent_node;
4359              $body_parent->remove_child ($body) if $body_parent;
4360    
4361                splice @{$self->{open_elements}}, $i;            ## 2. Pop nodes.
4362              splice @{$self->{open_elements}}, 1;
4363    
4364                $self->_reset_insertion_mode;            ## 3. Insert.
4365              !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4366    
4367                ## reprocess            ## 4. Switch.
4368                redo B;            $self->{insertion_mode} = IN_FRAMESET_IM;
4369              } else {          }
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ({  
                  tbody => 1, tfoot => 1, thead => 1,  
                 }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4370    
4371                ## Clear back to table body context          !!!nack ('t343.5');
4372                while (not {          !!!next-token;
4373                  tbody => 1, tfoot => 1, thead => 1, html => 1,          next B;
4374                }->{$self->{open_elements}->[-1]->[1]}) {        } elsif ({
4375                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                  ## NOTE: Start tags for non-phrasing flow content elements
                 pop @{$self->{open_elements}};  
               }  
4376    
4377                pop @{$self->{open_elements}};                  ## NOTE: The normal one
4378                $self->{insertion_mode} = 'in table';                  address => 1, article => 1, aside => 1, blockquote => 1,
4379                !!!next-token;                  center => 1, datagrid => 1, details => 1, dialog => 1,
4380                redo B;                  dir => 1, div => 1, dl => 1, fieldset => 1, figure => 1,
4381              } elsif ($token->{tag_name} eq 'table') {                  footer => 1, h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1,
4382                ## have an element in table scope                  h6 => 1, header => 1, hgroup => 1,
4383                my $i;                  menu => 1, nav => 1, ol => 1, p => 1,
4384                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {                  section => 1, ul => 1,
4385                  my $node = $self->{open_elements}->[$_];                  ## NOTE: As normal, but drops leading newline
4386                  if ({                  pre => 1, listing => 1,
4387                       tbody => 1, thead => 1, tfoot => 1,                  ## NOTE: As normal, but interacts with the form element pointer
4388                      }->{$node->[1]}) {                  form => 1,
4389                    $i = $_;                  
4390                    last INSCOPE;                  table => 1,
4391                  } elsif ({                  hr => 1,
4392                            table => 1, html => 1,                 }->{$token->{tag_name}}) {
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4393    
4394                ## Clear back to table body context          ## 1. When there is an opening |form| element:
4395                while (not {          if ($token->{tag_name} eq 'form' and defined $self->{form_element}) {
4396                  tbody => 1, tfoot => 1, thead => 1, html => 1,            !!!cp ('t350');
4397                }->{$self->{open_elements}->[-1]->[1]}) {            !!!parse-error (type => 'in form:form', token => $token);
4398                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);            ## Ignore the token
4399                  pop @{$self->{open_elements}};            !!!nack ('t350.1');
4400                }            !!!next-token;
4401              next B;
4402            }
4403    
4404                ## As if <{current node}>          ## 2. Close the |p| element, if any.
4405                ## have an element in table scope          if ($token->{tag_name} ne 'table' or # The Hixie Quirk
4406                ## true by definition              $self->{document}->manakai_compat_mode ne 'quirks') {
4407              ## has a p element in scope
4408              INSCOPE: for (reverse @{$self->{open_elements}}) {
4409                if ($_->[1] == P_EL) {
4410                  !!!cp ('t344');
4411                  !!!back-token; # <form>
4412                  $token = {type => END_TAG_TOKEN, tag_name => 'p',
4413                            line => $token->{line}, column => $token->{column}};
4414                  next B;
4415                } elsif ($_->[1] & SCOPING_EL) {
4416                  !!!cp ('t345');
4417                  last INSCOPE;
4418                }
4419              } # INSCOPE
4420            }
4421    
4422                ## Clear back to table body context          ## 3. Close the opening <hn> element, if any.
4423                ## nop by definition          if ({h1 => 1, h2 => 1, h3 => 1,
4424                 h4 => 1, h5 => 1, h6 => 1}->{$token->{tag_name}}) {
4425              if ($self->{open_elements}->[-1]->[1] == HEADING_EL) {
4426                !!!parse-error (type => 'not closed',
4427                                text => $self->{open_elements}->[-1]->[0]->manakai_local_name,
4428                                token => $token);
4429                pop @{$self->{open_elements}};
4430              }
4431            }
4432    
4433                pop @{$self->{open_elements}};          ## 4. Insertion.
4434                $self->{insertion_mode} = 'in table';          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4435                ## reprocess          if ($token->{tag_name} eq 'pre' or $token->{tag_name} eq 'listing') {
4436                redo B;            !!!nack ('t346.1');
4437              } elsif ({            !!!next-token;
4438                        body => 1, caption => 1, col => 1, colgroup => 1,            if ($token->{type} == CHARACTER_TOKEN) {
4439                        html => 1, td => 1, th => 1, tr => 1,              $token->{data} =~ s/^\x0A//;
4440                       }->{$token->{tag_name}}) {              unless (length $token->{data}) {
4441                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});                !!!cp ('t346');
               ## Ignore the token  
4442                !!!next-token;                !!!next-token;
               redo B;  
4443              } else {              } else {
4444                #                !!!cp ('t349');
4445              }              }
4446            } else {            } else {
4447              #              !!!cp ('t348');
4448            }            }
4449            } elsif ($token->{tag_name} eq 'form') {
4450              !!!cp ('t347.1');
4451              $self->{form_element} = $self->{open_elements}->[-1]->[0];
4452    
4453              !!!nack ('t347.2');
4454              !!!next-token;
4455            } elsif ($token->{tag_name} eq 'table') {
4456              !!!cp ('t382');
4457              push @{$open_tables}, [$self->{open_elements}->[-1]->[0]];
4458                        
4459            ## As if in table            $self->{insertion_mode} = IN_TABLE_IM;
           !!!parse-error (type => 'in table:'.$token->{tag_name});  
           $in_body->($insert_to_foster);  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in row') {  
           if ($token->{type} eq 'character') {  
             ## NOTE: This is a "character in table" code clone.  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($1);  
                 
               unless (length $token->{data}) {  
                 !!!next-token;  
                 redo B;  
               }  
             }  
4460    
4461              !!!parse-error (type => 'in table:#character');            !!!nack ('t382.1');
4462              !!!next-token;
4463            } elsif ($token->{tag_name} eq 'hr') {
4464              !!!cp ('t386');
4465              pop @{$self->{open_elements}};
4466            
4467              !!!ack ('t386.1');
4468              !!!next-token;
4469            } else {
4470              !!!nack ('t347.1');
4471              !!!next-token;
4472            }
4473            next B;
4474          } elsif ($token->{tag_name} eq 'li') {
4475            ## NOTE: As normal, but imply </li> when there's another <li> ...
4476    
4477              ## As if in body, but insert into foster parent element          ## NOTE: Special, Scope (<li><foo><li> == <li><foo><li/></foo></li>)::
4478              ## ISSUE: Spec says that "whenever a node would be inserted            ## Interpreted as <li><foo/></li><li/> (non-conforming):
4479              ## into the current node" while characters might not be            ## blockquote (O9.27), center (O), dd (Fx3, O, S3.1.2, IE7),
4480              ## result in a new Text node.            ## dt (Fx, O, S, IE), dl (O), fieldset (O, S, IE), form (Fx, O, S),
4481              $reconstruct_active_formatting_elements->($insert_to_foster);            ## hn (O), pre (O), applet (O, S), button (O, S), marquee (Fx, O, S),
4482                          ## object (Fx)
4483              if ({            ## Generate non-tree (non-conforming):
4484                   table => 1, tbody => 1, tfoot => 1,            ## basefont (IE7 (where basefont is non-void)), center (IE),
4485                   thead => 1, tr => 1,            ## form (IE), hn (IE)
4486                  }->{$self->{open_elements}->[-1]->[1]}) {          ## address, div, p (<li><foo><li> == <li><foo/></li><li/>)::
4487                # MUST            ## Interpreted as <li><foo><li/></foo></li> (non-conforming):
4488                my $foster_parent_element;            ## div (Fx, S)
               my $next_sibling;  
               my $prev_sibling;  
               OE: for (reverse 0..$#{$self->{open_elements}}) {  
                 if ($self->{open_elements}->[$_]->[1] eq 'table') {  
                   my $parent = $self->{open_elements}->[$_]->[0]->parent_node;  
                   if (defined $parent and $parent->node_type == 1) {  
                     $foster_parent_element = $parent;  
                     $next_sibling = $self->{open_elements}->[$_]->[0];  
                     $prev_sibling = $next_sibling->previous_sibling;  
                   } else {  
                     $foster_parent_element = $self->{open_elements}->[$_ - 1]->[0];  
                     $prev_sibling = $foster_parent_element->last_child;  
                   }  
                   last OE;  
                 }  
               } # OE  
               $foster_parent_element = $self->{open_elements}->[0]->[0] and  
               $prev_sibling = $foster_parent_element->last_child  
                 unless defined $foster_parent_element;  
               if (defined $prev_sibling and  
                   $prev_sibling->node_type == 3) {  
                 $prev_sibling->manakai_append_text ($token->{data});  
               } else {  
                 $foster_parent_element->insert_before  
                   ($self->{document}->create_text_node ($token->{data}),  
                    $next_sibling);  
               }  
             } else {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
             }  
               
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             ## Copied from 'in table'  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'th' or  
                 $token->{tag_name} eq 'td') {  
               ## Clear back to table row context  
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
                 
               !!!insert-element ($token->{tag_name}, $token->{attributes});  
               $self->{insertion_mode} = 'in cell';  
4489    
4490                push @$active_formatting_elements, ['#marker', ''];          my $non_optional;
4491                          my $i = -1;
               !!!next-token;  
               redo B;  
             } elsif ({  
                       caption => 1, col => 1, colgroup => 1,  
                       tbody => 1, tfoot => 1, thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               ## As if </tr>  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'tr') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmacthed end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4492    
4493                ## Clear back to table row context          ## 1.
4494                while (not {          for my $node (reverse @{$self->{open_elements}}) {
4495                  tr => 1, html => 1,            if ($node->[1] == LI_EL) {
4496                }->{$self->{open_elements}->[-1]->[1]}) {              ## 2. (a) As if </li>
4497                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);              {
4498                  pop @{$self->{open_elements}};                ## If no </li> - not applied
4499                }                #
4500    
4501                pop @{$self->{open_elements}}; # tr                ## Otherwise
               $self->{insertion_mode} = 'in table body';  
               ## reprocess  
               redo B;  
             } elsif ($token->{tag_name} eq 'table') {  
               ## NOTE: This is a code clone of "table in table"  
               !!!parse-error (type => 'not closed:table');  
4502    
4503                ## As if </table>                ## 1. generate implied end tags, except for </li>
4504                ## have a table element in table scope                #
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'table') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:table');  
                 ## Ignore tokens </table><table>  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## generate implied end tags  
               if ({  
                    dd => 1, dt => 1, li => 1, p => 1,  
                    td => 1, th => 1, tr => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token; # <table>  
                 $token = {type => 'end tag', tag_name => 'table'};  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
               }  
4505    
4506                if ($self->{open_elements}->[-1]->[1] ne 'table') {                ## 2. If current node != "li", parse error
4507                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);                if ($non_optional) {
4508                    !!!parse-error (type => 'not closed',
4509                                    text => $non_optional->[0]->manakai_local_name,
4510                                    token => $token);
4511                    !!!cp ('t355');
4512                  } else {
4513                    !!!cp ('t356');
4514                }                }
4515    
4516                  ## 3. Pop
4517                splice @{$self->{open_elements}}, $i;                splice @{$self->{open_elements}}, $i;
4518                }
4519    
4520                $self->_reset_insertion_mode;              last; ## 2. (b) goto 5.
4521              } elsif (
4522                       ## NOTE: not "formatting" and not "phrasing"
4523                       ($node->[1] & SPECIAL_EL or
4524                        $node->[1] & SCOPING_EL) and
4525                       ## NOTE: "li", "dt", and "dd" are in |SPECIAL_EL|.
4526                       (not $node->[1] & ADDRESS_DIV_P_EL)
4527                      ) {
4528                ## 3.
4529                !!!cp ('t357');
4530                last; ## goto 5.
4531              } elsif ($node->[1] & END_TAG_OPTIONAL_EL) {
4532                !!!cp ('t358');
4533                #
4534              } else {
4535                !!!cp ('t359');
4536                $non_optional ||= $node;
4537                #
4538              }
4539              ## 4.
4540              ## goto 2.
4541              $i--;
4542            }
4543    
4544                ## reprocess          ## 5. (a) has a |p| element in scope
4545                redo B;          INSCOPE: for (reverse @{$self->{open_elements}}) {
4546              } else {            if ($_->[1] == P_EL) {
4547                #              !!!cp ('t353');
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'tr') {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4548    
4549                ## Clear back to table row context              ## NOTE: |<p><li>|, for example.
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
4550    
4551                pop @{$self->{open_elements}}; # tr              !!!back-token; # <x>
4552                $self->{insertion_mode} = 'in table body';              $token = {type => END_TAG_TOKEN, tag_name => 'p',
4553                !!!next-token;                        line => $token->{line}, column => $token->{column}};
4554                redo B;              next B;
4555              } elsif ($token->{tag_name} eq 'table') {            } elsif ($_->[1] & SCOPING_EL) {
4556                ## As if </tr>              !!!cp ('t354');
4557                ## have an element in table scope              last INSCOPE;
4558                my $i;            }
4559                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          } # INSCOPE
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'tr') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{type});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4560    
4561                ## Clear back to table row context          ## 5. (b) insert
4562                while (not {          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4563                  tr => 1, html => 1,          !!!nack ('t359.1');
4564                }->{$self->{open_elements}->[-1]->[1]}) {          !!!next-token;
4565                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          next B;
4566                  pop @{$self->{open_elements}};        } elsif ($token->{tag_name} eq 'dt' or
4567                }                 $token->{tag_name} eq 'dd') {
4568            ## NOTE: As normal, but imply </dt> or </dd> when ...
4569    
4570                pop @{$self->{open_elements}}; # tr          my $non_optional;
4571                $self->{insertion_mode} = 'in table body';          my $i = -1;
               ## reprocess  
               redo B;  
             } elsif ({  
                       tbody => 1, tfoot => 1, thead => 1,  
                      }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4572    
4573                ## As if </tr>          ## 1.
4574                ## have an element in table scope          for my $node (reverse @{$self->{open_elements}}) {
4575                my $i;            if ($node->[1] == DTDD_EL) {
4576                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {              ## 2. (a) As if </li>
4577                  my $node = $self->{open_elements}->[$_];              {
4578                  if ($node->[1] eq 'tr') {                ## If no </li> - not applied
4579                    $i = $_;                #
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:tr');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4580    
4581                ## Clear back to table row context                ## Otherwise
               while (not {  
                 tr => 1, html => 1,  
               }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);  
                 pop @{$self->{open_elements}};  
               }  
4582    
4583                pop @{$self->{open_elements}}; # tr                ## 1. generate implied end tags, except for </dt> or </dd>
               $self->{insertion_mode} = 'in table body';  
               ## reprocess  
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1,  
                       colgroup => 1, html => 1, td => 1, th => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } else {  
4584                #                #
4585    
4586                  ## 2. If current node != "dt"|"dd", parse error
4587                  if ($non_optional) {
4588                    !!!parse-error (type => 'not closed',
4589                                    text => $non_optional->[0]->manakai_local_name,
4590                                    token => $token);
4591                    !!!cp ('t355.1');
4592                  } else {
4593                    !!!cp ('t356.1');
4594                  }
4595    
4596                  ## 3. Pop
4597                  splice @{$self->{open_elements}}, $i;
4598              }              }
4599    
4600                last; ## 2. (b) goto 5.
4601              } elsif (
4602                       ## NOTE: not "formatting" and not "phrasing"
4603                       ($node->[1] & SPECIAL_EL or
4604                        $node->[1] & SCOPING_EL) and
4605                       ## NOTE: "li", "dt", and "dd" are in |SPECIAL_EL|.
4606    
4607                       (not $node->[1] & ADDRESS_DIV_P_EL)
4608                      ) {
4609                ## 3.
4610                !!!cp ('t357.1');
4611                last; ## goto 5.
4612              } elsif ($node->[1] & END_TAG_OPTIONAL_EL) {
4613                !!!cp ('t358.1');
4614                #
4615            } else {            } else {
4616                !!!cp ('t359.1');
4617                $non_optional ||= $node;
4618              #              #
4619            }            }
4620              ## 4.
4621              ## goto 2.
4622              $i--;
4623            }
4624    
4625            ## As if in table          ## 5. (a) has a |p| element in scope
4626            !!!parse-error (type => 'in table:'.$token->{tag_name});          INSCOPE: for (reverse @{$self->{open_elements}}) {
4627            $in_body->($insert_to_foster);            if ($_->[1] == P_EL) {
4628            redo B;              !!!cp ('t353.1');
4629          } elsif ($self->{insertion_mode} eq 'in cell') {              !!!back-token; # <x>
4630            if ($token->{type} eq 'character') {              $token = {type => END_TAG_TOKEN, tag_name => 'p',
4631              ## NOTE: This is a code clone of "character in body".                        line => $token->{line}, column => $token->{column}};
4632              $reconstruct_active_formatting_elements->($insert_to_current);              next B;
4633                          } elsif ($_->[1] & SCOPING_EL) {
4634              $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});              !!!cp ('t354.1');
4635                last INSCOPE;
4636              }
4637            } # INSCOPE
4638    
4639              !!!next-token;          ## 5. (b) insert
4640              redo B;          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4641            } elsif ($token->{type} eq 'comment') {          !!!nack ('t359.2');
4642              ## NOTE: This is a code clone of "comment in body".          !!!next-token;
4643              my $comment = $self->{document}->create_comment ($token->{data});          next B;
4644              $self->{open_elements}->[-1]->[0]->append_child ($comment);        } elsif ($token->{tag_name} eq 'plaintext') {
4645              !!!next-token;          ## NOTE: As normal, but effectively ends parsing
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ({  
                  caption => 1, col => 1, colgroup => 1,  
                  tbody => 1, td => 1, tfoot => 1, th => 1,  
                  thead => 1, tr => 1,  
                 }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $tn;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'td' or $node->[1] eq 'th') {  
                   $tn = $node->[1];  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $tn) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4646    
4647                ## Close the cell          ## has a p element in scope
4648                !!!back-token; # <?>          INSCOPE: for (reverse @{$self->{open_elements}}) {
4649                $token = {type => 'end tag', tag_name => $tn};            if ($_->[1] == P_EL) {
4650                redo B;              !!!cp ('t367');
4651              } else {              !!!back-token; # <plaintext>
4652                #              $token = {type => END_TAG_TOKEN, tag_name => 'p',
4653              }                        line => $token->{line}, column => $token->{column}};
4654            } elsif ($token->{type} eq 'end tag') {              next B;
4655              if ($token->{tag_name} eq 'td' or $token->{tag_name} eq 'th') {            } elsif ($_->[1] & SCOPING_EL) {
4656                ## have an element in table scope              !!!cp ('t368');
4657                my $i;              last INSCOPE;
4658                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {            }
4659                  my $node = $self->{open_elements}->[$_];          } # INSCOPE
4660                  if ($node->[1] eq $token->{tag_name}) {            
4661                    $i = $_;          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4662                    last INSCOPE;            
4663                  } elsif ({          $self->{content_model} = PLAINTEXT_CONTENT_MODEL;
4664                            table => 1, html => 1,            
4665                           }->{$node->[1]}) {          !!!nack ('t368.1');
4666                    last INSCOPE;          !!!next-token;
4667                  }          next B;
4668                } # INSCOPE        } elsif ($token->{tag_name} eq 'a') {
4669                unless (defined $i) {          AFE: for my $i (reverse 0..$#$active_formatting_elements) {
4670                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            my $node = $active_formatting_elements->[$i];
4671                  ## Ignore the token            if ($node->[1] == A_EL) {
4672                  !!!next-token;              !!!cp ('t371');
4673                  redo B;              !!!parse-error (type => 'in a:a', token => $token);
4674                
4675                !!!back-token; # <a>
4676                $token = {type => END_TAG_TOKEN, tag_name => 'a',
4677                          line => $token->{line}, column => $token->{column}};
4678                $formatting_end_tag->($token);
4679                
4680                AFE2: for (reverse 0..$#$active_formatting_elements) {
4681                  if ($active_formatting_elements->[$_]->[0] eq $node->[0]) {
4682                    !!!cp ('t372');
4683                    splice @$active_formatting_elements, $_, 1;
4684                    last AFE2;
4685                }                }
4686                              } # AFE2
4687                ## generate implied end tags              OE: for (reverse 0..$#{$self->{open_elements}}) {
4688                if ({                if ($self->{open_elements}->[$_]->[0] eq $node->[0]) {
4689                     dd => 1, dt => 1, li => 1, p => 1,                  !!!cp ('t373');
4690                     td => ($token->{tag_name} eq 'th'),                  splice @{$self->{open_elements}}, $_, 1;
4691                     th => ($token->{tag_name} eq 'td'),                  last OE;
                    tr => 1,  
                   }->{$self->{open_elements}->[-1]->[1]}) {  
                 !!!back-token;  
                 $token = {type => 'end tag',  
                           tag_name => $self->{open_elements}->[-1]->[1]}; # MUST  
                 redo B;  
4692                }                }
4693                } # OE
4694                last AFE;
4695              } elsif ($node->[0] eq '#marker') {
4696                !!!cp ('t374');
4697                last AFE;
4698              }
4699            } # AFE
4700              
4701            $reconstruct_active_formatting_elements->($insert_to_current);
4702    
4703                if ($self->{open_elements}->[-1]->[1] ne $token->{tag_name}) {          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4704                  !!!parse-error (type => 'not closed:'.$self->{open_elements}->[-1]->[1]);          push @$active_formatting_elements, $self->{open_elements}->[-1];
               }  
4705    
4706                splice @{$self->{open_elements}}, $i;          !!!nack ('t374.1');
4707            !!!next-token;
4708            next B;
4709          } elsif ($token->{tag_name} eq 'nobr') {
4710            $reconstruct_active_formatting_elements->($insert_to_current);
4711    
4712                $clear_up_to_marker->();          ## has a |nobr| element in scope
4713            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4714              my $node = $self->{open_elements}->[$_];
4715              if ($node->[1] == NOBR_EL) {
4716                !!!cp ('t376');
4717                !!!parse-error (type => 'in nobr:nobr', token => $token);
4718                !!!back-token; # <nobr>
4719                $token = {type => END_TAG_TOKEN, tag_name => 'nobr',
4720                          line => $token->{line}, column => $token->{column}};
4721                next B;
4722              } elsif ($node->[1] & SCOPING_EL) {
4723                !!!cp ('t377');
4724                last INSCOPE;
4725              }
4726            } # INSCOPE
4727            
4728            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4729            push @$active_formatting_elements, $self->{open_elements}->[-1];
4730            
4731            !!!nack ('t377.1');
4732            !!!next-token;
4733            next B;
4734          } elsif ($token->{tag_name} eq 'button') {
4735            ## has a button element in scope
4736            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4737              my $node = $self->{open_elements}->[$_];
4738              if ($node->[1] == BUTTON_EL) {
4739                !!!cp ('t378');
4740                !!!parse-error (type => 'in button:button', token => $token);
4741                !!!back-token; # <button>
4742                $token = {type => END_TAG_TOKEN, tag_name => 'button',
4743                          line => $token->{line}, column => $token->{column}};
4744                next B;
4745              } elsif ($node->[1] & SCOPING_EL) {
4746                !!!cp ('t379');
4747                last INSCOPE;
4748              }
4749            } # INSCOPE
4750              
4751            $reconstruct_active_formatting_elements->($insert_to_current);
4752              
4753            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4754    
4755                $self->{insertion_mode} = 'in row';          ## TODO: associate with $self->{form_element} if defined
4756    
4757                !!!next-token;          push @$active_formatting_elements, ['#marker', ''];
               redo B;  
             } elsif ({  
                       body => 1, caption => 1, col => 1,  
                       colgroup => 1, html => 1,  
                      }->{$token->{tag_name}}) {  
               !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
               ## Ignore the token  
               !!!next-token;  
               redo B;  
             } elsif ({  
                       table => 1, tbody => 1, tfoot => 1,  
                       thead => 1, tr => 1,  
                      }->{$token->{tag_name}}) {  
               ## have an element in table scope  
               my $i;  
               my $tn;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ($node->[1] eq 'td' or $node->[1] eq 'th') {  
                   $tn = $node->[1];  
                   ## NOTE: There is exactly one |td| or |th| element  
                   ## in scope in the stack of open elements by definition.  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
4758    
4759                ## Close the cell          !!!nack ('t379.1');
4760                !!!back-token; # </?>          !!!next-token;
4761                $token = {type => 'end tag', tag_name => $tn};          next B;
4762                redo B;        } elsif ({
4763              } else {                  xmp => 1,
4764                #                  iframe => 1,
4765              }                  noembed => 1,
4766                    noframes => 1, ## NOTE: This is an "as if in head" code clone.
4767                    noscript => 0, ## TODO: 1 if scripting is enabled
4768                   }->{$token->{tag_name}}) {
4769            if ($token->{tag_name} eq 'xmp') {
4770              !!!cp ('t381');
4771              $reconstruct_active_formatting_elements->($insert_to_current);
4772            } else {
4773              !!!cp ('t399');
4774            }
4775            ## NOTE: There is an "as if in body" code clone.
4776            $parse_rcdata->(CDATA_CONTENT_MODEL);
4777            next B;
4778          } elsif ($token->{tag_name} eq 'isindex') {
4779            !!!parse-error (type => 'isindex', token => $token);
4780            
4781            if (defined $self->{form_element}) {
4782              !!!cp ('t389');
4783              ## Ignore the token
4784              !!!nack ('t389'); ## NOTE: Not acknowledged.
4785              !!!next-token;
4786              next B;
4787            } else {
4788              !!!ack ('t391.1');
4789    
4790              my $at = $token->{attributes};
4791              my $form_attrs;
4792              $form_attrs->{action} = $at->{action} if $at->{action};
4793              my $prompt_attr = $at->{prompt};
4794              $at->{name} = {name => 'name', value => 'isindex'};
4795              delete $at->{action};
4796              delete $at->{prompt};
4797              my @tokens = (
4798                            {type => START_TAG_TOKEN, tag_name => 'form',
4799                             attributes => $form_attrs,
4800                             line => $token->{line}, column => $token->{column}},
4801                            {type => START_TAG_TOKEN, tag_name => 'hr',
4802                             line => $token->{line}, column => $token->{column}},
4803                            {type => START_TAG_TOKEN, tag_name => 'label',
4804                             line => $token->{line}, column => $token->{column}},
4805                           );
4806              if ($prompt_attr) {
4807                !!!cp ('t390');
4808                push @tokens, {type => CHARACTER_TOKEN, data => $prompt_attr->{value},
4809                               #line => $token->{line}, column => $token->{column},
4810                              };
4811            } else {            } else {
4812              #              !!!cp ('t391');
4813                push @tokens, {type => CHARACTER_TOKEN,
4814                               data => 'This is a searchable index. Insert your search keywords here: ',
4815                               #line => $token->{line}, column => $token->{column},
4816                              }; # SHOULD
4817                ## TODO: make this configurable
4818              }
4819              push @tokens,
4820                            {type => START_TAG_TOKEN, tag_name => 'input', attributes => $at,
4821                             line => $token->{line}, column => $token->{column}},
4822                            #{type => CHARACTER_TOKEN, data => ''}, # SHOULD
4823                            {type => END_TAG_TOKEN, tag_name => 'label',
4824                             line => $token->{line}, column => $token->{column}},
4825                            {type => START_TAG_TOKEN, tag_name => 'hr',
4826                             line => $token->{line}, column => $token->{column}},
4827                            {type => END_TAG_TOKEN, tag_name => 'form',
4828                             line => $token->{line}, column => $token->{column}};
4829              !!!back-token (@tokens);
4830              !!!next-token;
4831              next B;
4832            }
4833          } elsif ($token->{tag_name} eq 'textarea') {
4834            ## 1. Insert
4835            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4836            
4837            ## Step 2 # XXX
4838            ## TODO: $self->{form_element} if defined
4839    
4840            ## 2. Drop U+000A LINE FEED
4841            $self->{ignore_newline} = 1;
4842    
4843            ## 3. RCDATA
4844            $self->{content_model} = RCDATA_CONTENT_MODEL;
4845            delete $self->{escape}; # MUST
4846    
4847            ## 4., 6. Insertion mode
4848            $self->{insertion_mode} |= IN_CDATA_RCDATA_IM;
4849    
4850            ## XXX: 5. frameset-ok flag
4851    
4852            !!!nack ('t392.1');
4853            !!!next-token;
4854            next B;
4855          } elsif ($token->{tag_name} eq 'optgroup' or
4856                   $token->{tag_name} eq 'option') {
4857            ## has an |option| element in scope
4858            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4859              my $node = $self->{open_elements}->[$_];
4860              if ($node->[1] == OPTION_EL) {
4861                !!!cp ('t397.1');
4862                ## NOTE: As if </option>
4863                !!!back-token; # <option> or <optgroup>
4864                $token = {type => END_TAG_TOKEN, tag_name => 'option',
4865                          line => $token->{line}, column => $token->{column}};
4866                next B;
4867              } elsif ($node->[1] & SCOPING_EL) {
4868                !!!cp ('t397.2');
4869                last INSCOPE;
4870              }
4871            } # INSCOPE
4872    
4873            $reconstruct_active_formatting_elements->($insert_to_current);
4874    
4875            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4876    
4877            !!!nack ('t397.3');
4878            !!!next-token;
4879            redo B;
4880          } elsif ($token->{tag_name} eq 'rt' or
4881                   $token->{tag_name} eq 'rp') {
4882            ## has a |ruby| element in scope
4883            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
4884              my $node = $self->{open_elements}->[$_];
4885              if ($node->[1] == RUBY_EL) {
4886                !!!cp ('t398.1');
4887                ## generate implied end tags
4888                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
4889                  !!!cp ('t398.2');
4890                  pop @{$self->{open_elements}};
4891                }
4892                unless ($self->{open_elements}->[-1]->[1] == RUBY_EL) {
4893                  !!!cp ('t398.3');
4894                  !!!parse-error (type => 'not closed',
4895                                  text => $self->{open_elements}->[-1]->[0]
4896                                      ->manakai_local_name,
4897                                  token => $token);
4898                  pop @{$self->{open_elements}}
4899                      while not $self->{open_elements}->[-1]->[1] == RUBY_EL;
4900                }
4901                last INSCOPE;
4902              } elsif ($node->[1] & SCOPING_EL) {
4903                !!!cp ('t398.4');
4904                last INSCOPE;
4905            }            }
4906            } # INSCOPE
4907                        
4908            $in_body->($insert_to_current);          ## TODO: <non-ruby><rt> is not allowed.
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in select') {  
           if ($token->{type} eq 'character') {  
             $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'option') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option') {  
                 ## As if </option>  
                 pop @{$self->{open_elements}};  
               }  
4909    
4910                !!!insert-element ($token->{tag_name}, $token->{attributes});          !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'optgroup') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option') {  
                 ## As if </option>  
                 pop @{$self->{open_elements}};  
               }  
4911    
4912                if ($self->{open_elements}->[-1]->[1] eq 'optgroup') {          !!!nack ('t398.5');
4913                  ## As if </optgroup>          !!!next-token;
4914                  pop @{$self->{open_elements}};          redo B;
4915                }        } elsif ($token->{tag_name} eq 'math' or
4916                   $token->{tag_name} eq 'svg') {
4917            $reconstruct_active_formatting_elements->($insert_to_current);
4918    
4919                !!!insert-element ($token->{tag_name}, $token->{attributes});          ## "Adjust MathML attributes" ('math' only) - done in insert-element-f
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'select') {  
               !!!parse-error (type => 'not closed:select');  
               ## As if </select> instead  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:select');  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               splice @{$self->{open_elements}}, $i;  
4920    
4921                $self->_reset_insertion_mode;          ## "adjust SVG attributes" ('svg' only) - done in insert-element-f
4922    
4923                !!!next-token;          ## "adjust foreign attributes" - done in insert-element-f
4924                redo B;          
4925              } else {          !!!insert-element-f ($token->{tag_name} eq 'math' ? $MML_NS : $SVG_NS, $token->{tag_name}, $token->{attributes}, $token);
4926                #          
4927              }          if ($self->{self_closing}) {
4928            } elsif ($token->{type} eq 'end tag') {            pop @{$self->{open_elements}};
4929              if ($token->{tag_name} eq 'optgroup') {            !!!ack ('t398.6');
4930                if ($self->{open_elements}->[-1]->[1] eq 'option' and          } else {
4931                    $self->{open_elements}->[-2]->[1] eq 'optgroup') {            !!!cp ('t398.7');
4932                  ## As if </option>            $self->{insertion_mode} |= IN_FOREIGN_CONTENT_IM;
4933                  splice @{$self->{open_elements}}, -2;            ## NOTE: |<body><math><mi><svg>| -> "in foreign content" insertion
4934                } elsif ($self->{open_elements}->[-1]->[1] eq 'optgroup') {            ## mode, "in body" (not "in foreign content") secondary insertion
4935                  pop @{$self->{open_elements}};            ## mode, maybe.
4936                } else {          }
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
               }  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'option') {  
               if ($self->{open_elements}->[-1]->[1] eq 'option') {  
                 pop @{$self->{open_elements}};  
               } else {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
               }  
               !!!next-token;  
               redo B;  
             } elsif ($token->{tag_name} eq 'select') {  
               ## have an element in table scope  
               my $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               splice @{$self->{open_elements}}, $i;  
4937    
4938                $self->_reset_insertion_mode;          !!!next-token;
4939            next B;
4940          } elsif ({
4941                    caption => 1, col => 1, colgroup => 1, frame => 1,
4942                    head => 1,
4943                    tbody => 1, td => 1, tfoot => 1, th => 1,
4944                    thead => 1, tr => 1,
4945                   }->{$token->{tag_name}}) {
4946            !!!cp ('t401');
4947            !!!parse-error (type => 'in body',
4948                            text => $token->{tag_name}, token => $token);
4949            ## Ignore the token
4950            !!!nack ('t401.1'); ## NOTE: |<col/>| or |<frame/>| here is an error.
4951            !!!next-token;
4952            next B;
4953          } elsif ($token->{tag_name} eq 'param' or
4954                   $token->{tag_name} eq 'source') {
4955            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4956            pop @{$self->{open_elements}};
4957    
4958                !!!next-token;          !!!ack ('t398.5');
4959                redo B;          !!!next-token;
4960              } elsif ({          redo B;
4961                        caption => 1, table => 1, tbody => 1,        } else {
4962                        tfoot => 1, thead => 1, tr => 1, td => 1, th => 1,          if ($token->{tag_name} eq 'image') {
4963                       }->{$token->{tag_name}}) {            !!!cp ('t384');
4964                !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            !!!parse-error (type => 'image', token => $token);
4965                            $token->{tag_name} = 'img';
4966                ## have an element in table scope          } else {
4967                my $i;            !!!cp ('t385');
4968                INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {          }
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq $token->{tag_name}) {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 ## Ignore the token  
                 !!!next-token;  
                 redo B;  
               }  
                 
               ## As if </select>  
               ## have an element in table scope  
               undef $i;  
               INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {  
                 my $node = $self->{open_elements}->[$_];  
                 if ($node->[1] eq 'select') {  
                   $i = $_;  
                   last INSCOPE;  
                 } elsif ({  
                           table => 1, html => 1,  
                          }->{$node->[1]}) {  
                   last INSCOPE;  
                 }  
               } # INSCOPE  
               unless (defined $i) {  
                 !!!parse-error (type => 'unmatched end tag:select');  
                 ## Ignore the </select> token  
                 !!!next-token; ## TODO: ok?  
                 redo B;  
               }  
                 
               splice @{$self->{open_elements}}, $i;  
4969    
4970                $self->_reset_insertion_mode;          ## NOTE: There is an "as if <br>" code clone.
4971            $reconstruct_active_formatting_elements->($insert_to_current);
4972            
4973            !!!insert-element-t ($token->{tag_name}, $token->{attributes}, $token);
4974    
4975                ## reprocess          if ({
4976                redo B;               applet => 1, marquee => 1, object => 1,
4977              } else {              }->{$token->{tag_name}}) {
4978                #            !!!cp ('t380');
4979              push @$active_formatting_elements, ['#marker', ''];
4980              !!!nack ('t380.1');
4981            } elsif ({
4982                      b => 1, big => 1, em => 1, font => 1, i => 1,
4983                      s => 1, small => 1, strike => 1,
4984                      strong => 1, tt => 1, u => 1,
4985                     }->{$token->{tag_name}}) {
4986              !!!cp ('t375');
4987              push @$active_formatting_elements, $self->{open_elements}->[-1];
4988              !!!nack ('t375.1');
4989            } elsif ($token->{tag_name} eq 'input') {
4990              !!!cp ('t388');
4991              ## TODO: associate with $self->{form_element} if defined
4992              pop @{$self->{open_elements}};
4993              !!!ack ('t388.2');
4994            } elsif ({
4995                      area => 1, basefont => 1, bgsound => 1, br => 1,
4996                      embed => 1, img => 1, spacer => 1, wbr => 1,
4997                      keygen => 1,
4998                     }->{$token->{tag_name}}) {
4999              !!!cp ('t388.1');
5000              pop @{$self->{open_elements}};
5001              !!!ack ('t388.3');
5002            } elsif ($token->{tag_name} eq 'select') {
5003              ## TODO: associate with $self->{form_element} if defined
5004            
5005              if ($self->{insertion_mode} & TABLE_IMS or
5006                  $self->{insertion_mode} & BODY_TABLE_IMS or
5007                  ($self->{insertion_mode} & IM_MASK) == IN_COLUMN_GROUP_IM) {
5008                !!!cp ('t400.1');
5009                $self->{insertion_mode} = IN_SELECT_IN_TABLE_IM;
5010              } else {
5011                !!!cp ('t400.2');
5012                $self->{insertion_mode} = IN_SELECT_IM;
5013              }
5014              !!!nack ('t400.3');
5015            } else {
5016              !!!nack ('t402');
5017            }
5018            
5019            !!!next-token;
5020            next B;
5021          }
5022        } elsif ($token->{type} == END_TAG_TOKEN) {
5023          if ($token->{tag_name} eq 'body' or $token->{tag_name} eq 'html') {
5024    
5025            ## 1. If not "have an element in scope":
5026            ## "has a |body| element in scope"
5027            my $i;
5028            INSCOPE: {
5029              for (reverse @{$self->{open_elements}}) {
5030                if ($_->[1] == BODY_EL) {
5031                  !!!cp ('t405');
5032                  $i = $_;
5033                  last INSCOPE;
5034                } elsif ($_->[1] & SCOPING_EL) {
5035                  !!!cp ('t405.1');
5036                  last;
5037              }              }
5038              }
5039    
5040              ## NOTE: |<marquee></body>|, |<svg><foreignobject></body>|,
5041              ## and fragment cases.
5042    
5043              !!!parse-error (type => 'unmatched end tag',
5044                              text => $token->{tag_name}, token => $token);
5045              ## Ignore the token.  (</body> or </html>)
5046              !!!next-token;
5047              next B;
5048            } # INSCOPE
5049    
5050            ## 2. If unclosed elements:
5051            for (@{$self->{open_elements}}) {
5052              unless ($_->[1] & ALL_END_TAG_OPTIONAL_EL ||
5053                      $_->[1] == OPTGROUP_EL ||
5054                      $_->[1] == OPTION_EL ||
5055                      $_->[1] == RUBY_COMPONENT_EL) {
5056                !!!cp ('t403');
5057                !!!parse-error (type => 'not closed',
5058                                text => $_->[0]->manakai_local_name,
5059                                token => $token);
5060                last;
5061            } else {            } else {
5062              #              !!!cp ('t404');
5063            }            }
5064            }
5065    
5066            !!!parse-error (type => 'in select:'.$token->{tag_name});          ## 3. Switch the insertion mode.
5067            ## Ignore the token          $self->{insertion_mode} = AFTER_BODY_IM;
5068            if ($token->{tag_name} eq 'body') {
5069            !!!next-token;            !!!next-token;
5070            redo B;          } else { # html
5071          } elsif ($self->{insertion_mode} eq 'after body') {            ## Reprocess.
5072            if ($token->{type} eq 'character') {          }
5073              if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          next B;
5074                ## As if in body        } elsif ({
5075                $reconstruct_active_formatting_elements->($insert_to_current);                  ## NOTE: End tags for non-phrasing flow content elements
                 
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
5076    
5077                unless (length $token->{data}) {                  ## NOTE: The normal ones
5078                  !!!next-token;                  address => 1, article => 1, aside => 1, blockquote => 1,
5079                  redo B;                  center => 1, datagrid => 1, details => 1, dialog => 1,
5080                }                  dir => 1, div => 1, dl => 1, fieldset => 1, figure => 1,
5081              }                  footer => 1, header => 1, hgroup => 1,
5082                                listing => 1, menu => 1, nav => 1,
5083              #                  ol => 1, pre => 1, section => 1, ul => 1,
5084              !!!parse-error (type => 'after body:#'.$token->{type});  
5085            } elsif ($token->{type} eq 'comment') {                  ## NOTE: As normal, but ... optional tags
5086              my $comment = $self->{document}->create_comment ($token->{data});                  dd => 1, dt => 1, li => 1,
5087              $self->{open_elements}->[0]->[0]->append_child ($comment);  
5088              !!!next-token;                  applet => 1, button => 1, marquee => 1, object => 1,
5089              redo B;                 }->{$token->{tag_name}}) {
5090            } elsif ($token->{type} eq 'start tag') {          ## NOTE: Code for <li> start tags includes "as if </li>" code.
5091              !!!parse-error (type => 'after body:'.$token->{tag_name});          ## Code for <dt> or <dd> start tags includes "as if </dt> or
5092              #          ## </dd>" code.
5093            } elsif ($token->{type} eq 'end tag') {  
5094              if ($token->{tag_name} eq 'html') {          ## has an element in scope
5095                if (defined $self->{inner_html_node}) {          my $i;
5096                  !!!parse-error (type => 'unmatched end tag:html');          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5097                  ## Ignore the token            my $node = $self->{open_elements}->[$_];
5098                  !!!next-token;            if ($node->[0]->manakai_local_name eq $token->{tag_name}) {
5099                  redo B;              !!!cp ('t410');
5100                } else {              $i = $_;
5101                  $phase = 'trailing end';              last INSCOPE;
5102                  !!!next-token;            } elsif ($node->[1] & SCOPING_EL) {
5103                  redo B;              !!!cp ('t411');
5104                }              last INSCOPE;
5105              } else {            }
5106                !!!parse-error (type => 'after body:/'.$token->{tag_name});          } # INSCOPE
5107              }  
5108            unless (defined $i) { # has an element in scope
5109              !!!cp ('t413');
5110              !!!parse-error (type => 'unmatched end tag',
5111                              text => $token->{tag_name}, token => $token);
5112              ## NOTE: Ignore the token.
5113            } else {
5114              ## Step 1. generate implied end tags
5115              while ({
5116                      ## END_TAG_OPTIONAL_EL
5117                      dd => ($token->{tag_name} ne 'dd'),
5118                      dt => ($token->{tag_name} ne 'dt'),
5119                      li => ($token->{tag_name} ne 'li'),
5120                      option => 1,
5121                      optgroup => 1,
5122                      p => 1,
5123                      rt => 1,
5124                      rp => 1,
5125                     }->{$self->{open_elements}->[-1]->[0]->manakai_local_name}) {
5126                !!!cp ('t409');
5127                pop @{$self->{open_elements}};
5128              }
5129    
5130              ## Step 2.
5131              if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5132                      ne $token->{tag_name}) {
5133                !!!cp ('t412');
5134                !!!parse-error (type => 'not closed',
5135                                text => $self->{open_elements}->[-1]->[0]
5136                                    ->manakai_local_name,
5137                                token => $token);
5138            } else {            } else {
5139              !!!parse-error (type => 'after body:#'.$token->{type});              !!!cp ('t414');
5140            }            }
5141    
5142            $self->{insertion_mode} = 'in body';            ## Step 3.
5143            ## reprocess            splice @{$self->{open_elements}}, $i;
           redo B;  
         } elsif ($self->{insertion_mode} eq 'in frameset') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
5144    
5145                unless (length $token->{data}) {            ## Step 4.
5146                  !!!next-token;            $clear_up_to_marker->()
5147                  redo B;                if {
5148                }                  applet => 1, button => 1, marquee => 1, object => 1,
5149              }                }->{$token->{tag_name}};
5150            }
5151            !!!next-token;
5152            next B;
5153          } elsif ($token->{tag_name} eq 'form') {
5154            ## NOTE: As normal, but interacts with the form element pointer
5155    
5156              #          undef $self->{form_element};
5157            } elsif ($token->{type} eq 'comment') {  
5158              my $comment = $self->{document}->create_comment ($token->{data});          ## has an element in scope
5159              $self->{open_elements}->[-1]->[0]->append_child ($comment);          my $i;
5160              !!!next-token;          INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5161              redo B;            my $node = $self->{open_elements}->[$_];
5162            } elsif ($token->{type} eq 'start tag') {            if ($node->[1] == FORM_EL) {
5163              if ($token->{tag_name} eq 'frameset') {              !!!cp ('t418');
5164                !!!insert-element ($token->{tag_name}, $token->{attributes});              $i = $_;
5165                !!!next-token;              last INSCOPE;
5166                redo B;            } elsif ($node->[1] & SCOPING_EL) {
5167              } elsif ($token->{tag_name} eq 'frame') {              !!!cp ('t419');
5168                !!!insert-element ($token->{tag_name}, $token->{attributes});              last INSCOPE;
5169                pop @{$self->{open_elements}};            }
5170                !!!next-token;          } # INSCOPE
5171                redo B;  
5172              } elsif ($token->{tag_name} eq 'noframes') {          unless (defined $i) { # has an element in scope
5173                $in_body->($insert_to_current);            !!!cp ('t421');
5174                redo B;            !!!parse-error (type => 'unmatched end tag',
5175              } else {                            text => $token->{tag_name}, token => $token);
5176                #            ## NOTE: Ignore the token.
5177              }          } else {
5178            } elsif ($token->{type} eq 'end tag') {            ## Step 1. generate implied end tags
5179              if ($token->{tag_name} eq 'frameset') {            while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5180                if ($self->{open_elements}->[-1]->[1] eq 'html' and              !!!cp ('t417');
5181                    @{$self->{open_elements}} == 1) {              pop @{$self->{open_elements}};
5182                  !!!parse-error (type => 'unmatched end tag:'.$token->{tag_name});            }
5183                  ## Ignore the token            
5184                  !!!next-token;            ## Step 2.
5185                } else {            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5186                  pop @{$self->{open_elements}};                    ne $token->{tag_name}) {
5187                  !!!next-token;              !!!cp ('t417.1');
5188                }              !!!parse-error (type => 'not closed',
5189                                              text => $self->{open_elements}->[-1]->[0]
5190                ## if not inner_html and                                  ->manakai_local_name,
5191                if ($self->{open_elements}->[-1]->[1] ne 'frameset') {                              token => $token);
                 $self->{insertion_mode} = 'after frameset';  
               }  
               redo B;  
             } else {  
               #  
             }  
5192            } else {            } else {
5193              #              !!!cp ('t420');
5194              }  
5195              
5196              ## Step 3.
5197              splice @{$self->{open_elements}}, $i;
5198            }
5199    
5200            !!!next-token;
5201            next B;
5202          } elsif ({
5203                    ## NOTE: As normal, except acts as a closer for any ...
5204                    h1 => 1, h2 => 1, h3 => 1, h4 => 1, h5 => 1, h6 => 1,
5205                   }->{$token->{tag_name}}) {
5206            ## has an element in scope
5207            my $i;
5208            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5209              my $node = $self->{open_elements}->[$_];
5210              if ($node->[1] == HEADING_EL) {
5211                !!!cp ('t423');
5212                $i = $_;
5213                last INSCOPE;
5214              } elsif ($node->[1] & SCOPING_EL) {
5215                !!!cp ('t424');
5216                last INSCOPE;
5217              }
5218            } # INSCOPE
5219    
5220            unless (defined $i) { # has an element in scope
5221              !!!cp ('t425.1');
5222              !!!parse-error (type => 'unmatched end tag',
5223                              text => $token->{tag_name}, token => $token);
5224              ## NOTE: Ignore the token.
5225            } else {
5226              ## Step 1. generate implied end tags
5227              while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5228                !!!cp ('t422');
5229                pop @{$self->{open_elements}};
5230            }            }
5231                        
5232            if (defined $token->{tag_name}) {            ## Step 2.
5233              !!!parse-error (type => 'in frameset:'.$token->{tag_name});            if ($self->{open_elements}->[-1]->[0]->manakai_local_name
5234                      ne $token->{tag_name}) {
5235                !!!cp ('t425');
5236                !!!parse-error (type => 'unmatched end tag',
5237                                text => $token->{tag_name}, token => $token);
5238            } else {            } else {
5239              !!!parse-error (type => 'in frameset:#'.$token->{type});              !!!cp ('t426');
5240            }            }
           ## Ignore the token  
           !!!next-token;  
           redo B;  
         } elsif ($self->{insertion_mode} eq 'after frameset') {  
           if ($token->{type} eq 'character') {  
             if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {  
               $self->{open_elements}->[-1]->[0]->manakai_append_text ($token->{data});  
5241    
5242                unless (length $token->{data}) {            ## Step 3.
5243                  !!!next-token;            splice @{$self->{open_elements}}, $i;
5244                  redo B;          }
5245                }          
5246              }          !!!next-token;
5247            next B;
5248          } elsif ($token->{tag_name} eq 'p') {
5249            ## NOTE: As normal, except </p> implies <p> and ...
5250    
5251            ## has an element in scope
5252            my $non_optional;
5253            my $i;
5254            INSCOPE: for (reverse 0..$#{$self->{open_elements}}) {
5255              my $node = $self->{open_elements}->[$_];
5256              if ($node->[1] == P_EL) {
5257                !!!cp ('t410.1');
5258                $i = $_;
5259                last INSCOPE;
5260              } elsif ($node->[1] & SCOPING_EL) {
5261                !!!cp ('t411.1');
5262                last INSCOPE;
5263              } elsif ($node->[1] & END_TAG_OPTIONAL_EL) {
5264                ## NOTE: |END_TAG_OPTIONAL_EL| includes "p"
5265                !!!cp ('t411.2');
5266              #              #
           } elsif ($token->{type} eq 'comment') {  
             my $comment = $self->{document}->create_comment ($token->{data});  
             $self->{open_elements}->[-1]->[0]->append_child ($comment);  
             !!!next-token;  
             redo B;  
           } elsif ($token->{type} eq 'start tag') {  
             if ($token->{tag_name} eq 'noframes') {  
               $in_body->($insert_to_current);  
               redo B;  
             } else {  
               #  
             }  
           } elsif ($token->{type} eq 'end tag') {  
             if ($token->{tag_name} eq 'html') {  
               $phase = 'trailing end';  
               !!!next-token;  
               redo B;  
             } else {  
               #  
             }  
5267            } else {            } else {
5268                !!!cp ('t411.3');
5269                $non_optional ||= $node;
5270              #              #
5271            }            }
5272                      } # INSCOPE
5273            if (defined $token->{tag_name}) {  
5274              !!!parse-error (type => 'after frameset:'.$token->{tag_name});          if (defined $i) {
5275              ## 1. Generate implied end tags
5276              #
5277    
5278              ## 2. If current node != "p", parse error
5279              if ($non_optional) {
5280                !!!cp ('t412.1');
5281                !!!parse-error (type => 'not closed',
5282                                text => $non_optional->[0]->manakai_local_name,
5283                                token => $token);
5284            } else {            } else {
5285              !!!parse-error (type => 'after frameset:#'.$token->{type});              !!!cp ('t414.1');
5286            }            }
           ## Ignore the token  
           !!!next-token;  
           redo B;  
5287    
5288            ## ISSUE: An issue in spec there            ## 3. Pop
5289              splice @{$self->{open_elements}}, $i;
5290          } else {          } else {
5291            die "$0: $self->{insertion_mode}: Unknown insertion mode";            !!!cp ('t413.1');
5292              !!!parse-error (type => 'unmatched end tag',
5293                              text => $token->{tag_name}, token => $token);
5294    
5295              !!!cp ('t415.1');
5296              ## As if <p>, then reprocess the current token
5297              my $el;
5298              !!!create-element ($el, $HTML_NS, 'p',, $token);
5299              $insert->($el);
5300              ## NOTE: Not inserted into |$self->{open_elements}|.
5301          }          }
5302        }  
     } elsif ($phase eq 'trailing end') {  
       ## states in the main stage is preserved yet # MUST  
         
       if ($token->{type} eq 'DOCTYPE') {  
         !!!parse-error (type => 'after html:#DOCTYPE');  
         ## Ignore the token  
5303          !!!next-token;          !!!next-token;
5304          redo B;          next B;
5305        } elsif ($token->{type} eq 'comment') {        } elsif ({
5306          my $comment = $self->{document}->create_comment ($token->{data});                  a => 1,
5307          $self->{document}->append_child ($comment);                  b => 1, big => 1, em => 1, font => 1, i => 1,
5308                    nobr => 1, s => 1, small => 1, strike => 1,
5309                    strong => 1, tt => 1, u => 1,
5310                   }->{$token->{tag_name}}) {
5311            !!!cp ('t427');
5312            $formatting_end_tag->($token);
5313            next B;
5314          } elsif ($token->{tag_name} eq 'br') {
5315            !!!cp ('t428');
5316            !!!parse-error (type => 'unmatched end tag',
5317                            text => 'br', token => $token);
5318    
5319            ## As if <br>
5320            $reconstruct_active_formatting_elements->($insert_to_current);
5321            
5322            my $el;
5323            !!!create-element ($el, $HTML_NS, 'br',, $token);
5324            $insert->($el);
5325            
5326            ## Ignore the token.
5327          !!!next-token;          !!!next-token;
5328          redo B;          next B;
5329        } elsif ($token->{type} eq 'character') {        } else {
5330          if ($token->{data} =~ s/^([\x09\x0A\x0B\x0C\x20]+)//) {          if ($token->{tag_name} eq 'sarcasm') {
5331            my $data = $1;            sleep 0.001; # take a deep breath
5332            ## As if in the main phase.          }
5333            ## NOTE: The insertion mode in the main phase  
5334            ## just before the phase has been changed to the trailing          ## Step 1
5335            ## end phase is either "after body" or "after frameset".          my $node_i = -1;
5336            $reconstruct_active_formatting_elements->($insert_to_current)          my $node = $self->{open_elements}->[$node_i];
5337              if $phase eq 'main';  
5338            ## Step 2
5339            S2: {
5340              my $node_tag_name = $node->[0]->manakai_local_name;
5341              $node_tag_name =~ tr/A-Z/a-z/; # for SVG camelCase tag names
5342              if ($node_tag_name eq $token->{tag_name}) {
5343                ## Step 1
5344                ## generate implied end tags
5345                while ($self->{open_elements}->[-1]->[1] & END_TAG_OPTIONAL_EL) {
5346                  !!!cp ('t430');
5347                  ## NOTE: |<ruby><rt></ruby>|.
5348                  ## ISSUE: <ruby><rt></rt> will also take this code path,
5349                  ## which seems wrong.
5350                  pop @{$self->{open_elements}};
5351                  $node_i++;
5352                }
5353            
5354                ## Step 2
5355                my $current_tag_name
5356                    = $self->{open_elements}->[-1]->[0]->manakai_local_name;
5357                $current_tag_name =~ tr/A-Z/a-z/;
5358                if ($current_tag_name ne $token->{tag_name}) {
5359                  !!!cp ('t431');
5360                  ## NOTE: <x><y></x>
5361                  !!!parse-error (type => 'not closed',
5362                                  text => $self->{open_elements}->[-1]->[0]
5363                                      ->manakai_local_name,
5364                                  token => $token);
5365                } else {
5366                  !!!cp ('t432');
5367                }
5368                
5369                ## Step 3
5370                splice @{$self->{open_elements}}, $node_i if $node_i < 0;
5371    
5372                !!!next-token;
5373                last S2;
5374              } else {
5375                ## Step 3
5376                if (not ($node->[1] & FORMATTING_EL) and
5377                    #not $phrasing_category->{$node->[1]} and
5378                    ($node->[1] & SPECIAL_EL or
5379                     $node->[1] & SCOPING_EL)) {
5380                  !!!cp ('t433');
5381                  !!!parse-error (type => 'unmatched end tag',
5382                                  text => $token->{tag_name}, token => $token);
5383                  ## Ignore the token
5384                  !!!next-token;
5385                  last S2;
5386    
5387                  ## NOTE: |<span><dd></span>a|: In Safari 3.1.2 and Opera
5388                  ## 9.27, "a" is a child of <dd> (conforming).  In
5389                  ## Firefox 3.0.2, "a" is a child of <body>.  In WinIE 7,
5390                  ## "a" is a child of both <body> and <dd>.
5391                }
5392                
5393                !!!cp ('t434');
5394              }
5395                        
5396            $self->{open_elements}->[-1]->[0]->manakai_append_text ($data);            ## Step 4
5397              $node_i--;
5398              $node = $self->{open_elements}->[$node_i];
5399                        
5400            unless (length $token->{data}) {            ## Step 5;
5401              !!!next-token;            redo S2;
5402              redo B;          } # S2
5403            next B;
5404          }
5405        }
5406        next B;
5407      } continue { # B
5408        if ($self->{insertion_mode} & IN_FOREIGN_CONTENT_IM) {
5409          ## NOTE: The code below is executed in cases where it does not have
5410          ## to be, but it it is harmless even in those cases.
5411          ## has an element in scope
5412          INSCOPE: {
5413            for (reverse 0..$#{$self->{open_elements}}) {
5414              my $node = $self->{open_elements}->[$_];
5415              if ($node->[1] & FOREIGN_EL) {
5416                last INSCOPE;
5417              } elsif ($node->[1] & SCOPING_EL) {
5418                last;
5419            }            }
5420          }          }
5421            
5422          !!!parse-error (type => 'after html:#character');          ## NOTE: No foreign element in scope.
5423          $phase = 'main';          $self->{insertion_mode} &= ~ IN_FOREIGN_CONTENT_IM;
5424          ## reprocess        } # INSCOPE
         redo B;  
       } elsif ($token->{type} eq 'start tag' or  
                $token->{type} eq 'end tag') {  
         !!!parse-error (type => 'after html:'.$token->{tag_name});  
         $phase = 'main';  
         ## reprocess  
         redo B;  
       } elsif ($token->{type} eq 'end-of-file') {  
         ## Stop parsing  
         last B;  
       } else {  
         die "$0: $token->{type}: Unknown token";  
       }  
5425      }      }
5426    } # B    } # B
5427    
# Line 4907  sub _tree_construction_main ($) { Line 5430  sub _tree_construction_main ($) {
5430    ## TODO: script stuffs    ## TODO: script stuffs
5431  } # _tree_construct_main  } # _tree_construct_main
5432    
5433  sub set_inner_html ($$$) {  ## XXX: How this method is organized is somewhat out of date, although
5434    ## it still does what the current spec documents.
5435    sub set_inner_html ($$$$;$) {
5436    my $class = shift;    my $class = shift;
5437    my $node = shift;    my $node = shift; # /context/
5438    my $s = \$_[0];    #my $s = \$_[0];
5439    my $onerror = $_[1];    my $onerror = $_[1];
5440      my $get_wrapper = $_[2] || sub ($) { return $_[0] };
5441    
5442    my $nt = $node->node_type;    my $nt = $node->node_type;
5443    if ($nt == 9) {    if ($nt == 9) { # Document (invoke the algorithm with no /context/ element)
5444      # MUST      # MUST
5445            
5446      ## Step 1 # MUST      ## Step 1 # MUST
# Line 4928  sub set_inner_html ($$$) { Line 5454  sub set_inner_html ($$$) {
5454      }      }
5455    
5456      ## Step 3, 4, 5 # MUST      ## Step 3, 4, 5 # MUST
5457      $class->parse_string ($$s => $node, $onerror);      $class->parse_char_string ($_[0] => $node, $onerror, $get_wrapper);
5458    } elsif ($nt == 1) {    } elsif ($nt == 1) { # Element (invoke the algorithm with /context/ element)
5459      ## TODO: If non-html element      ## TODO: If non-html element
5460    
5461      ## NOTE: Most of this code is copied from |parse_string|      ## NOTE: Most of this code is copied from |parse_string|
5462    
5463      ## Step 1 # MUST  ## TODO: Support for $get_wrapper
5464      my $doc = $node->owner_document->implementation->create_document;  
5465      ## TODO: Mark as HTML document      ## F1. Create an HTML document.
5466        my $this_doc = $node->owner_document;
5467        my $doc = $this_doc->implementation->create_document;
5468        $doc->manakai_is_html (1);
5469    
5470        ## F2. Propagate quirkness flag
5471        my $node_doc = $node->owner_document;
5472        $doc->manakai_compat_mode ($node_doc->manakai_compat_mode);
5473    
5474        ## F3. Create an HTML parser
5475      my $p = $class->new;      my $p = $class->new;
5476      $p->{document} = $doc;      $p->{document} = $doc;
5477    
5478      ## Step 9 # MUST      ## Step 8 # MUST
5479      my $i = 0;      my $i = 0;
5480      my $line = 1;      $p->{line_prev} = $p->{line} = 1;
5481      my $column = 0;      $p->{column_prev} = $p->{column} = 0;
5482      $p->{set_next_input_character} = sub {      require Whatpm::Charset::DecodeHandle;
5483        my $input = Whatpm::Charset::DecodeHandle::CharString->new (\($_[0]));
5484        $input = $get_wrapper->($input);
5485        $p->{set_nc} = sub {
5486        my $self = shift;        my $self = shift;
5487        $self->{next_input_character} = -1 and return if $i >= length $$s;  
5488        $self->{next_input_character} = ord substr $$s, $i++, 1;        my $char = '';
5489        $column++;        if (defined $self->{next_nc}) {
5490            $char = $self->{next_nc};
5491        if ($self->{next_input_character} == 0x000A) { # LF          delete $self->{next_nc};
5492          $line++;          $self->{nc} = ord $char;
5493          $column = 0;        } else {
5494        } elsif ($self->{next_input_character} == 0x000D) { # CR          $self->{char_buffer} = '';
5495          if ($i >= length $$s) {          $self->{char_buffer_pos} = 0;
5496            #          
5497            my $count = $input->manakai_read_until
5498                ($self->{char_buffer}, qr/[^\x00\x0A\x0D]/,
5499                 $self->{char_buffer_pos});
5500            if ($count) {
5501              $self->{line_prev} = $self->{line};
5502              $self->{column_prev} = $self->{column};
5503              $self->{column}++;
5504              $self->{nc}
5505                  = ord substr ($self->{char_buffer},
5506                                $self->{char_buffer_pos}++, 1);
5507              return;
5508            }
5509            
5510            if ($input->read ($char, 1)) {
5511              $self->{nc} = ord $char;
5512          } else {          } else {
5513            my $next_char = ord substr $$s, $i++, 1;            $self->{nc} = -1;
5514            if ($next_char == 0x000A) { # LF            return;
             #  
           } else {  
             push @{$self->{char}}, $next_char;  
           }  
5515          }          }
5516          $self->{next_input_character} = 0x000A; # LF # MUST        }
5517          $line++;  
5518          $column = 0;        ($p->{line_prev}, $p->{column_prev}) = ($p->{line}, $p->{column});
5519        } elsif ($self->{next_input_character} > 0x10FFFF) {        $p->{column}++;
5520          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST  
5521        } elsif ($self->{next_input_character} == 0x0000) { # NULL        if ($self->{nc} == 0x000A) { # LF
5522          $self->{next_input_character} = 0xFFFD; # REPLACEMENT CHARACTER # MUST          $p->{line}++;
5523            $p->{column} = 0;
5524            !!!cp ('i1');
5525          } elsif ($self->{nc} == 0x000D) { # CR
5526    ## TODO: support for abort/streaming
5527            my $next = '';
5528            if ($input->read ($next, 1) and $next ne "\x0A") {
5529              $self->{next_nc} = $next;
5530            }
5531            $self->{nc} = 0x000A; # LF # MUST
5532            $p->{line}++;
5533            $p->{column} = 0;
5534            !!!cp ('i2');
5535          } elsif ($self->{nc} == 0x0000) { # NULL
5536            !!!cp ('i4');
5537            !!!parse-error (type => 'NULL');
5538            $self->{nc} = 0xFFFD; # REPLACEMENT CHARACTER # MUST
5539        }        }
5540      };      };
5541        
5542        $p->{read_until} = sub {
5543          #my ($scalar, $specials_range, $offset) = @_;
5544          return 0 if defined $p->{next_nc};
5545    
5546          my $pattern = qr/[^$_[1]\x00\x0A\x0D]/;
5547          my $offset = $_[2] || 0;
5548          
5549          if ($p->{char_buffer_pos} < length $p->{char_buffer}) {
5550            pos ($p->{char_buffer}) = $p->{char_buffer_pos};
5551            if ($p->{char_buffer} =~ /\G(?>$pattern)+/) {
5552              substr ($_[0], $offset)
5553                  = substr ($p->{char_buffer}, $-[0], $+[0] - $-[0]);
5554              my $count = $+[0] - $-[0];
5555              if ($count) {
5556                $p->{column} += $count;
5557                $p->{char_buffer_pos} += $count;
5558                $p->{line_prev} = $p->{line};
5559                $p->{column_prev} = $p->{column} - 1;
5560                $p->{nc} = -1;
5561              }
5562              return $count;
5563            } else {
5564              return 0;
5565            }
5566          } else {
5567            my $count = $input->manakai_read_until ($_[0], $pattern, $_[2]);
5568            if ($count) {
5569              $p->{column} += $count;
5570              $p->{column_prev} += $count;
5571              $p->{nc} = -1;
5572            }
5573            return $count;
5574          }
5575        }; # $p->{read_until}
5576    
5577      my $ponerror = $onerror || sub {      my $ponerror = $onerror || sub {
5578        my (%opt) = @_;        my (%opt) = @_;
5579        warn "Parse error ($opt{type}) at line $opt{line} column $opt{column}\n";        my $line = $opt{line};
5580          my $column = $opt{column};
5581          if (defined $opt{token} and defined $opt{token}->{line}) {
5582            $line = $opt{token}->{line};
5583            $column = $opt{token}->{column};
5584          }
5585          warn "Parse error ($opt{type}) at line $line column $column\n";
5586      };      };
5587      $p->{parse_error} = sub {      $p->{parse_error} = sub {
5588        $ponerror->(@_, line => $line, column => $column);        $ponerror->(line => $p->{line}, column => $p->{column}, @_);
5589      };      };
5590            
5591        my $char_onerror = sub {
5592          my (undef, $type, %opt) = @_;
5593          $ponerror->(layer => 'encode',
5594                      line => $p->{line}, column => $p->{column} + 1,
5595                      %opt, type => $type);
5596        }; # $char_onerror
5597        $input->onerror ($char_onerror);
5598    
5599      $p->_initialize_tokenizer;      $p->_initialize_tokenizer;
5600      $p->_initialize_tree_constructor;      $p->_initialize_tree_constructor;
5601    
5602      ## Step 2      ## F4. If /context/ is not undef...
     my $node_ln = $node->local_name;  
     $p->{content_model_flag} = {  
       title => 'RCDATA',  
       textarea => 'RCDATA',  
       style => 'CDATA',  
       script => 'CDATA',  
       xmp => 'CDATA',  
       iframe => 'CDATA',  
       noembed => 'CDATA',  
       noframes => 'CDATA',  
       noscript => 'CDATA',  
       plaintext => 'PLAINTEXT',  
     }->{$node_ln} || 'PCDATA';  
        ## ISSUE: What is "the name of the element"? local name?  
5603    
5604      $p->{inner_html_node} = [$node, $node_ln];      ## F4.1. content model flag
5605        my $node_ln = $node->manakai_local_name;
5606        $p->{content_model} = {
5607          title => RCDATA_CONTENT_MODEL,
5608          textarea => RCDATA_CONTENT_MODEL,
5609          style => CDATA_CONTENT_MODEL,
5610          script => CDATA_CONTENT_MODEL,
5611          xmp => CDATA_CONTENT_MODEL,
5612          iframe => CDATA_CONTENT_MODEL,
5613          noembed => CDATA_CONTENT_MODEL,
5614          noframes => CDATA_CONTENT_MODEL,
5615          noscript => CDATA_CONTENT_MODEL,
5616          plaintext => PLAINTEXT_CONTENT_MODEL,
5617        }->{$node_ln};
5618        $p->{content_model} = PCDATA_CONTENT_MODEL
5619            unless defined $p->{content_model};
5620    
5621      ## Step 4      $p->{inner_html_node} = [$node, $el_category->{$node_ln}];
5622          ## TODO: Foreign element OK?
5623    
5624        ## F4.2. Root |html| element
5625      my $root = $doc->create_element_ns      my $root = $doc->create_element_ns
5626        ('http://www.w3.org/1999/xhtml', [undef, 'html']);        ('http://www.w3.org/1999/xhtml', [undef, 'html']);
5627    
5628      ## Step 5 # MUST      ## F4.3.
5629      $doc->append_child ($root);      $doc->append_child ($root);
5630    
5631      ## Step 6 # MUST      ## F4.4.
5632      push @{$p->{open_elements}}, [$root, 'html'];      push @{$p->{open_elements}}, [$root, $el_category->{html}];
5633    
5634      undef $p->{head_element};      undef $p->{head_element};
5635        undef $p->{head_element_inserted};
5636    
5637      ## Step 7 # MUST      ## F4.5.
5638      $p->_reset_insertion_mode;      $p->_reset_insertion_mode;
5639    
5640      ## Step 8 # MUST      ## F4.6.
5641      my $anode = $node;      my $anode = $node;
5642      AN: while (defined $anode) {      AN: while (defined $anode) {
5643        if ($anode->node_type == 1) {        if ($anode->node_type == 1) {
5644          my $nsuri = $anode->namespace_uri;          my $nsuri = $anode->namespace_uri;
5645          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {          if (defined $nsuri and $nsuri eq 'http://www.w3.org/1999/xhtml') {
5646            if ($anode->local_name eq 'form') { ## TODO: case?            if ($anode->manakai_local_name eq 'form') {
5647                !!!cp ('i5');
5648              $p->{form_element} = $anode;              $p->{form_element} = $anode;
5649              last AN;              last AN;
5650            }            }
# Line 5032  sub set_inner_html ($$$) { Line 5652  sub set_inner_html ($$$) {
5652        }        }
5653        $anode = $anode->parent_node;        $anode = $anode->parent_node;
5654      } # AN      } # AN
5655        
5656      ## Step 3 # MUST      ## F.5. Set the input stream.
5657      ## Step 10 # MUST      $p->{confident} = 1; ## Confident: irrelevant.
5658    
5659        ## F.6. Start the parser.
5660      {      {
5661        my $self = $p;        my $self = $p;
5662        !!!next-token;        !!!next-token;
5663      }      }
5664      $p->_tree_construction_main;      $p->_tree_construction_main;
5665    
5666      ## Step 11 # MUST      ## F.7.
5667      my @cn = @{$node->child_nodes};      my @cn = @{$node->child_nodes};
5668      for (@cn) {      for (@cn) {
5669        $node->remove_child ($_);        $node->remove_child ($_);
5670      }      }
5671      ## ISSUE: mutation events? read-only?      ## ISSUE: mutation events? read-only?
5672    
5673      ## Step 12 # MUST      ## Step 11 # MUST
5674      @cn = @{$root->child_nodes};      @cn = @{$root->child_nodes};
5675      for (@cn) {      for (@cn) {
5676          $this_doc->adopt_node ($_);
5677        $node->append_child ($_);        $node->append_child ($_);
5678      }      }
5679      ## ISSUE: adopt_node? mutation events?      ## ISSUE: mutation events?
5680    
5681      $p->_terminate_tree_constructor;      $p->_terminate_tree_constructor;
5682    
5683        delete $p->{parse_error}; # delete loop
5684    } else {    } else {
5685      die "$0: |set_inner_html| is not defined for node of type $nt";      die "$0: |set_inner_html| is not defined for node of type $nt";
5686    }    }
# Line 5063  sub set_inner_html ($$$) { Line 5688  sub set_inner_html ($$$) {
5688    
5689  } # tree construction stage  } # tree construction stage
5690    
5691  sub get_inner_html ($$$) {  package Whatpm::HTML::RestartParser;
5692    my (undef, $node, $on_error) = @_;  push our @ISA, 'Error';
   
   ## Step 1  
   my $s = '';  
   
   my $in_cdata;  
   my $parent = $node;  
   while (defined $parent) {  
     if ($parent->node_type == 1 and  
         $parent->namespace_uri eq 'http://www.w3.org/1999/xhtml' and  
         {  
           style => 1, script => 1, xmp => 1, iframe => 1,  
           noembed => 1, noframes => 1, noscript => 1,  
         }->{$parent->local_name}) { ## TODO: case thingy  
       $in_cdata = 1;  
     }  
     $parent = $parent->parent_node;  
   }  
   
   ## Step 2  
   my @node = @{$node->child_nodes};  
   C: while (@node) {  
     my $child = shift @node;  
     unless (ref $child) {  
       if ($child eq 'cdata-out') {  
         $in_cdata = 0;  
       } else {  
         $s .= $child; # end tag  
       }  
       next C;  
     }  
       
     my $nt = $child->node_type;  
     if ($nt == 1) { # Element  
       my $tag_name = lc $child->tag_name; ## ISSUE: Definition of "lowercase"  
       $s .= '<' . $tag_name;  
   
       ## ISSUE: Non-html elements  
   
       my @attrs = @{$child->attributes}; # sort order MUST be stable  
       for my $attr (@attrs) { # order is implementation dependent  
         my $attr_name = lc $attr->name; ## ISSUE: Definition of "lowercase"  
         $s .= ' ' . $attr_name . '="';  
         my $attr_value = $attr->value;  
         ## escape  
         $attr_value =~ s/&/&amp;/g;  
         $attr_value =~ s/</&lt;/g;  
         $attr_value =~ s/>/&gt;/g;  
         $attr_value =~ s/"/&quot;/g;  
         $s .= $attr_value . '"';  
       }  
       $s .= '>';  
         
       next C if {  
         area => 1, base => 1, basefont => 1, bgsound => 1,  
         br => 1, col => 1, embed => 1, frame => 1, hr => 1,  
         img => 1, input => 1, link => 1, meta => 1, param => 1,  
         spacer => 1, wbr => 1,  
       }->{$tag_name};  
   
       if (not $in_cdata and {  
         style => 1, script => 1, xmp => 1, iframe => 1,  
         noembed => 1, noframes => 1, noscript => 1,  
       }->{$tag_name}) {  
         unshift @node, 'cdata-out';  
         $in_cdata = 1;  
       }  
   
       unshift @node, @{$child->child_nodes}, '</' . $tag_name . '>';  
     } elsif ($nt == 3 or $nt == 4) {  
       if ($in_cdata) {  
         $s .= $child->data;  
       } else {  
         my $value = $child->data;  
         $value =~ s/&/&amp;/g;  
         $value =~ s/</&lt;/g;  
         $value =~ s/>/&gt;/g;  
         $value =~ s/"/&quot;/g;  
         $s .= $value;  
       }  
     } elsif ($nt == 8) {  
       $s .= '<!--' . $child->data . '-->';  
     } elsif ($nt == 10) {  
       $s .= '<!DOCTYPE ' . $child->name . '>';  
     } elsif ($nt == 5) { # entrefs  
       push @node, @{$child->child_nodes};  
     } else {  
       $on_error->($child) if defined $on_error;  
     }  
     ## ISSUE: This code does not support PIs.  
   } # C  
     
   ## Step 3  
   return \$s;  
 } # get_inner_html  
5693    
5694  1;  1;
5695  # $Date$  # $Date$

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.242

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24