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

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.226

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24